KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > titan > cabin > CabinLocal


1 package com.titan.cabin;
2
3 import javax.ejb.EJBException;
4 import com.titan.ship.ShipLocal;
5
6 public interface CabinLocal extends javax.ejb.EJBLocalObject {
7
8     public String getName() throws EJBException;
9     public void setName(String str) throws EJBException;
10     public int getDeckLevel() throws EJBException;
11     public void setDeckLevel(int level) throws EJBException;
12     public ShipLocal getShip();
13     public void setShip(ShipLocal ship);
14     public int getBedCount() throws EJBException;
15     public void setBedCount(int bc) throws EJBException;
16
17 }
18
Popular Tags