Class portio.PortDriverInfo
All Packages Class Hierarchy This Package Previous Next Index
Class portio.PortDriverInfo
java.lang.Object
|
+----portio.PortDriverInfo
- public class PortDriverInfo
- extends Object
- implements Cloneable
This data-only class provides read-only information about the PortDriver,
and the actual hardware device it is connected to. The normal way to get
this information is using a PortDriverInfo info = driver.getDriverInfo();
statement after constructing the actual driver.
- Version:
- $Revision: 2.1 $ ($Date: 1997/02/19 18:00:00 $)
-
deviceId
- The manufacturer's name for the device
-
deviceRev
- The firmware revision of the device
-
driverRev
- Version information about the PortDriver itself
-
manufacturer
- The manufacturer of the device
-
parallelCount
- The number of parallel ports provided by this PortDriver
-
serialCount
- The number of serial ports provided by this PortDriver
-
PortDriverInfo()
-
-
clone()
- Clones this PortDriverInfo object
-
toString()
- Converts the information to a string
serialCount
public int serialCount
- The number of serial ports provided by this PortDriver
parallelCount
public int parallelCount
- The number of parallel ports provided by this PortDriver
manufacturer
public String manufacturer
- The manufacturer of the device
deviceId
public String deviceId
- The manufacturer's name for the device
deviceRev
public String deviceRev
- The firmware revision of the device
driverRev
public String driverRev
- Version information about the PortDriver itself
PortDriverInfo
public PortDriverInfo()
toString
public String toString()
- Converts the information to a string
- Overrides:
- toString in class Object
clone
public Object clone()
- Clones this PortDriverInfo object
- Overrides:
- clone in class Object
All Packages Class Hierarchy This Package Previous Next Index