Package org.jgroups.demos
Class DrawCommand
- java.lang.Object
-
- org.jgroups.demos.DrawCommand
-
- All Implemented Interfaces:
Streamable
public class DrawCommand extends java.lang.Object implements Streamable
Encapsulates information about a draw command. Used by theDrawand other demos.
-
-
Constructor Summary
Constructors Constructor Description DrawCommand()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidreadFrom(java.io.DataInputStream in)Read the state of the current object (including superclasses) from instream Note that the input stream must not be closedjava.lang.StringtoString()voidwriteTo(java.io.DataOutputStream out)Write the entire state of the current object (including superclasses) to outstream.
-
-
-
Method Detail
-
writeTo
public void writeTo(java.io.DataOutputStream out) throws java.io.IOExceptionDescription copied from interface:StreamableWrite the entire state of the current object (including superclasses) to outstream. Note that the output stream must not be closed- Specified by:
writeToin interfaceStreamable- Throws:
java.io.IOException
-
readFrom
public void readFrom(java.io.DataInputStream in) throws java.io.IOException, java.lang.IllegalAccessException, java.lang.InstantiationExceptionDescription copied from interface:StreamableRead the state of the current object (including superclasses) from instream Note that the input stream must not be closed- Specified by:
readFromin interfaceStreamable- Throws:
java.io.IOExceptionjava.lang.IllegalAccessExceptionjava.lang.InstantiationException
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-