rex897

public class Box

Nov 4th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. public class Box extends Bag {
  2.     public Box(String name, double weight, String properties, double capacity) {
  3.         super(name, weight, properties, capacity);
  4.         getProperties().add("плоский");
  5.     }
  6. }
Add Comment
Please, Sign In to add comment