FileDocCategorySizeDatePackage
ShipBusiness.javaAPI DocExample447Sun Mar 07 09:47:16 GMT 1999com.titan.ship

ShipBusiness.java

package com.titan.ship;
import java.rmi.RemoteException;

public interface ShipBusiness {
    public String getName()throws RemoteException;
    public void setName(String name) throws RemoteException;
    public void setCapacity(int cap) throws RemoteException;
    public int getCapacity()throws RemoteException;
    public double getTonnage() throws RemoteException;
    public void setTonnage(double tons) throws RemoteException;
}