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