/** * Unlock. * * @throws lockException the lock exception */ public void unlock() throws lockException { ch.unlock(ID); }
/** * 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); }
/** * Lock. * * @throws lockException the lock exception */ public void lock() throws lockException { ch.lock(ID); }
/** * Mode. * * @param value the value * @throws lockException the lock exception */ public void mode(int value) throws lockException { ch.mode(ID, value); }
/** * In. * * @return the int * @throws lockException the lock exception * @throws Exception the exception */ public int in() throws lockException, Exception { return ch.in(ID); }