Public Member Functions | |
JvnIntegerWrapper () throws jvn.JvnException | |
Package Functions | |
. | JvnRead () public int read() throws jvn.JvnException |
. | JvnWrite () public void write(int param0) throws jvn.JvnException |
Definition at line 6 of file JvnIntegerWrapper.java.
counter.JvnIntegerWrapper.JvnIntegerWrapper | ( | ) | throws jvn.JvnException |
. counter.JvnIntegerWrapper.JvnRead | ( | ) | throws jvn.JvnException [package] |
Definition at line 25 of file JvnIntegerWrapper.java.
References jvn.JvnObjectImpl.__containedObject.
00030 { 00031 if (__containedObject != null) { 00032 int returnVal; 00033 this.jvnLockRead(); 00034 returnVal = ((IntegerWrapper)__containedObject).read(); 00035 this.jvnUnLock(); 00036 return returnVal; 00037 } 00038 else { 00039 throw new jvn.JvnException("JvnIntegerWrapper instance " + this + " not initialized !"); 00040 } 00041 }
. counter.JvnIntegerWrapper.JvnWrite | ( | ) | throws jvn.JvnException [package] |
Definition at line 44 of file JvnIntegerWrapper.java.
References jvn.JvnObjectImpl.__containedObject.
00049 { 00050 if (__containedObject != null) { 00051 this.jvnLockWrite(); 00052 ((IntegerWrapper)__containedObject).write(param0); 00053 this.jvnUnLock(); 00054 } 00055 else { 00056 throw new jvn.JvnException("JvnIntegerWrapper instance " + this + " not initialized !"); 00057 } 00058 }