org.omg.CORBA
Interface CustomMarshal

All Known Subinterfaces:
CustomValue, CustomValue

public interface CustomMarshal

This interface indicates that the object can provide its own methods for reading and writing its content. This interface is typically used by the CORBA implementation only. The user application should use the CustomValue that is a descendant of this interface.

See Also:
DataInputStream, DataOutputStream

Method Summary
 void marshal(DataOutputStream into_stream)
          Read (unmarshal) the content of this object from the given input stream.
 void unmarshal(DataInputStream from_stream)
          Write (marshal) the content of this object to the given input stream.
 

Method Detail

marshal

void marshal(DataOutputStream into_stream)
Read (unmarshal) the content of this object from the given input stream.

Parameters:
into_stream - a stream to read from.

unmarshal

void unmarshal(DataInputStream from_stream)
Write (marshal) the content of this object to the given input stream.

Parameters:
from_stream - a stream to write into.