Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Cargo {
- private int cargoWeight;
- private String cargoType;
- public Cargo(int cargoWeight, String cargoType){
- this.cargoWeight = cargoWeight;
- this.cargoType = cargoType;
- }
- public String getCargoType() {
- return cargoType;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement