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