Uses of Class
soc.game.SOCGame.SeatLockState

Packages that use SOCGame.SeatLockState
soc.client   
soc.game   
soc.message   
 

Uses of SOCGame.SeatLockState in soc.client
 

Methods in soc.client with parameters of type SOCGame.SeatLockState
private  void SOCHandPanel.clickRobotSeatLockButton(SOCGame.SeatLockState current)
          During game play, handle a click on a sitting robot's Lock/Unlock/Mark button, ask the server to advance to the next seat lock state.
 void SOCPlayerClient.GameManager.setSeatLock(SOCGame ga, int pn, SOCGame.SeatLockState sl)
          The user is locking or unlocking a seat.
 void SOCDisplaylessPlayerClient.setSeatLock(SOCGame ga, int pn, SOCGame.SeatLockState sl)
          The user is locking or unlocking a seat.
 

Uses of SOCGame.SeatLockState in soc.game
 

Fields in soc.game declared as SOCGame.SeatLockState
private  SOCGame.SeatLockState[] SOCGame.seatLocks
          the states of the locks for the player's seats
 

Methods in soc.game that return SOCGame.SeatLockState
 SOCGame.SeatLockState SOCGame.getSeatLock(int pn)
          Get a seat's lock state.
static SOCGame.SeatLockState SOCGame.SeatLockState.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SOCGame.SeatLockState[] SOCGame.SeatLockState.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in soc.game with parameters of type SOCGame.SeatLockState
 void SOCGame.setSeatLock(int pn, SOCGame.SeatLockState sl)
          Lock or unlock a seat, or mark a bot's seat to be cleared on reset.
 

Uses of SOCGame.SeatLockState in soc.message
 

Fields in soc.message declared as SOCGame.SeatLockState
private  SOCGame.SeatLockState SOCSetSeatLock.state
          The state of the lock.
 

Methods in soc.message that return SOCGame.SeatLockState
 SOCGame.SeatLockState SOCSetSeatLock.getLockState()
           
 

Methods in soc.message with parameters of type SOCGame.SeatLockState
static java.lang.String SOCSetSeatLock.toCmd(java.lang.String ga, int pn, SOCGame.SeatLockState st)
          SETSEATLOCK sep game sep2 playerNumber sep2 state
 

Constructors in soc.message with parameters of type SOCGame.SeatLockState
SOCSetSeatLock(java.lang.String ga, int pn, SOCGame.SeatLockState st)
          Create a SetSeatLock message.