programmazione-java/src/Toll/Truck.java

19 lines
286 B
Java
Raw Normal View History

2016-10-18 15:10:13 +00:00
public class Truck{
public Truck(int axles, int weight){
this.axles=axles;
this.weight=weight;
}
public int getAxles(){
return axles;
}
public int getWeight(){
return weight;
}
private int axles;
private int weight;
}