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()DrawCommand(byte mode)DrawCommand(byte mode, int x, int y, int rgb)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidreadFrom(java.io.DataInput 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.DataOutput out)Write the entire state of the current object (including superclasses) to outstream.
-
-
-
Field Detail
-
DRAW
static final byte DRAW
- See Also:
- Constant Field Values
-
CLEAR
static final byte CLEAR
- See Also:
- Constant Field Values
-
mode
byte mode
-
x
int x
-
y
int y
-
rgb
int rgb
-
-
Method Detail
-
writeTo
public void writeTo(java.io.DataOutput 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.DataInput in) throws java.io.IOExceptionDescription 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.IOException
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-