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

Class semper.certificate.ShortObject

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

public class ShortObject
extends Object
implements Streamable

Variable Index

 o _a

Constructor Index

 o ShortObject()
 o ShortObject(short)
Create a Short object, which is a short that can be transferred via streams.

Method Index

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

Variables

 o _a
  public short _a

Constructors

 o ShortObject
  public ShortObject(short b)
Create a Short object, which is a short that can be transferred via streams.
Parameters:
Short - value, that is to be transferred.
 o ShortObject
  public ShortObject()

Methods

 o value
  public short value()
Retrieve actual value of the Short 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 failed.
See Also:
readObject
 o myStreamSize
  public int myStreamSize()
Calculate size of object when written to TargetStream.

All Packages  Class Hierarchy  This Package  Previous  Next  Index