Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Animal {
- private String name;
- private double height;
- private int weight;
- private String favFood;
- private double speed;
- private String sound;
- public void setName(String newName){ name = newName; }
- public String getName(){ return name; }
- public void setHeight(double newHeight){ height = newHeight; }
- public double getHeight(){ return height; }
- public void setWeight(int newWeight){
- if (newWeight > 0){
- weight = newWeight;
- } else {
- System.out.println("Weight must be bigger than 0");
- }
- }
- public double getWeight(){ return weight; }
- public void setFavFood(String newFavFood){ favFood = newFavFood; }
- public String getFavFood(){ return favFood; }
- public void setSpeed(double newSpeed){ speed = newSpeed; }
- public double getSpeed(){ return speed; }
- public void setSound(String newSound){ sound = newSound; }
- public String getSound(){ return sound; }
- }
Advertisement
Add Comment
Please, Sign In to add comment