All Packages Class Hierarchy This Package Previous Next Index
Class com.arcsinc.hardwarehost.HdwCmd
java.lang.Object
|
+----com.arcsinc.hardwarehost.HdwCmd
- public class HdwCmd
- extends Object
The HdwCmd
is the base class for all commands which
are sent to the hardware for processing. All commands have a
char
type code (used as a 16-bit, unsigned number).
-
HdwCmd()
- Default constructor - command is set to 0
-
HdwCmd(char)
- Standard constructor whichhar)
- Standard constructor which assigns the command value.
-
getCmd()
- Get the value of cmd.
-
setCmd(char)
- Set the value of cmd.
HdwCmd
public HdwCmd()
- Default constructor - command is set to 0
HdwCmd
public HdwCmd(char cmd)
- Standard constructor which assigns the command value.
- Parameters:
- cmd - the command code value.
getCmd
public char getCmd()
- Get the value of cmd.
- Returns:
- Value of cmd.
setCmd
public void setCmd(char v)
- Set the value of cmd.
- Parameters:
- v - Value to assign to cmd.
All Packages Class Hierarchy This Package Previous Previous Next Index