Class semper.certificate.IntObject
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class semper.certificate.IntObject

java.lang.Object
   |
   +----semper.certificate.IntObject

public class IntObject
extends Object
implements Streamable

Variable Index

 o _a

Constructor Index

 o IntObject()
 o IntObject(int)
Create a Integer object, whic is an Integer that can be transferred via streams.

Method Index

 o myStreamSize()
Calculate size of this object when writeing it to TargetStream.
 o readObject(StreamInputInterface)
Reads the object from an io stream (TargetStream).
 o value()
Retrieve actual value of the Integer Object
 o writeObject(StreamOutputInterface)
Writes the object to an io stream (TargetStream).

Variables

 o _a
  public int _a

Constructors

 o IntObject
  public IntObject(int b)
Create a Integer object, whic is an Integer that can be transferred via streams.
Parameters:
Integer - value, that is to be transferred.
 o IntObject
  public IntObject()

Methods

 o value
  public int value()
Retrieve actual value of the Integer Object
 o readObject
  public void readObject(StreamInputInterface s) throws StreamIOException
Reads the object from an io stream (TargetStream).
Parameters:
s - is the stream the object is read from
Returns:
void
Throws: StreamIOException
if read failed.
See Also:
writeObject
 o writeObject
  public void writeObject(StreamOutputInterface s) throws StreamIOException
Writes the object to an io stream (TargetStream).
Parameters:
s - is the stream the object is written to
Returns:
void
Throws: StreamIOException
if write fails.
See Also:
readObject
 o myStreamSize
  public int myStreamSize() throws StreamIOException
Calculate size of this object when writeing it to TargetStream.
Throws: StreamIOException
if TargetStream threw an error.

All Packages  Class Hierarchy  This Package  Previous  Next  Index