mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
11 lines
191 B
Java
11 lines
191 B
Java
public class Animal {
|
|
private String sound;
|
|
|
|
public void setSound(String sound) {
|
|
this.sound = sound;
|
|
}
|
|
|
|
public String getSound() {
|
|
return this.sound;
|
|
}
|
|
}
|