/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package inport; /** * * @author topazh_ag */ public class Bunker extends TransportShip { public Bunker(int id, String name, double cargoMax) { super(id, name, cargoMax); } public Bunker() { super( ); } public Bunker(String s) { super(s); } }