Petpublic class Pet extends Object implements Serializable
Fields Summary |
---|
private int | id | private String | name | private double | weight |
Methods Summary |
---|
public int | getId()
return id;
| public java.lang.String | getName()
return name;
| public double | getWeight()
return weight;
| public void | setId(int id)
this.id = id;
| public void | setName(java.lang.String name)
this.name = name;
| public void | setWeight(double weight)
this.weight = weight;
|
|