/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package inport; /** * * @author topazh_ag */ public class Bunker extends MovingObject { public Bunker(int id, String name) { super(id, name); } public Bunker() { super( ); } @Override public String toString() { return getId() + ";" + getName(); } public Bunker(String s) { super(s); } }