mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-28 23:37:57 +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;
|
|
}
|
|
}
|