Example #1
0
 /**
  * Unlock.
  *
  * @throws lockException the lock exception
  */
 public void unlock() throws lockException {
   ch.unlock(ID);
 }
Example #2
0
 /**
  * Out.
  *
  * @param value the value
  * @throws lockException the lock exception
  * @throws Exception the exception
  */
 public void out(int value) throws lockException, Exception {
   ch.out(ID, value);
 }
Example #3
0
 /**
  * Lock.
  *
  * @throws lockException the lock exception
  */
 public void lock() throws lockException {
   ch.lock(ID);
 }
Example #4
0
 /**
  * Mode.
  *
  * @param value the value
  * @throws lockException the lock exception
  */
 public void mode(int value) throws lockException {
   ch.mode(ID, value);
 }
Example #5
0
 /**
  * In.
  *
  * @return the int
  * @throws lockException the lock exception
  * @throws Exception the exception
  */
 public int in() throws lockException, Exception {
   return ch.in(ID);
 }