counter.JvnIntegerWrapper Class Reference

Inheritance diagram for counter.JvnIntegerWrapper:

Inheritance graph
[legend]
Collaboration diagram for counter.JvnIntegerWrapper:

Collaboration graph
[legend]

List of all members.

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


Detailed Description

Definition at line 6 of file JvnIntegerWrapper.java.


Constructor & Destructor Documentation

counter.JvnIntegerWrapper.JvnIntegerWrapper (  )  throws jvn.JvnException

Definition at line 18 of file JvnIntegerWrapper.java.

00020     {
00021         super((java.io.Serializable)(new IntegerWrapper()));
00022     }


Member Function Documentation

. 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     }


The documentation for this class was generated from the following file:
Generated on Wed Jan 2 10:15:57 2008 for Javanaise by  doxygen 1.5.4