org.omg.CORBA

Interface CustomMarshal

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 {@link CustomValue} that is a descendant of this interface.

See Also: DataInputStream

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

Method Detail

marshal

public 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

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