Methods Summary |
---|
public void | ejbCreate(int id)
this.id = id;
|
public void | ejbPostCreate(int id)
// do nothing. Required
|
public int | getBedCount()
return bedCount;
|
public int | getDeckLevel()
return deckLevel;
|
public java.lang.String | getName()
return name;
|
public int | getShipID()
return shipID;
|
public void | setBedCount(int bc)
bedCount = bc;
|
public void | setDeckLevel(int level)
deckLevel = level;
|
public void | setName(java.lang.String str)
name = str;
|
public void | setShipID(int ship)
shipID = ship;
|