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 $)

Variable Index

 o deviceId
The manufacturer's name for the device
 o deviceRev
The firmware revision of the device
 o driverRev
Version information about the PortDriver itself
 o manufacturer
The manufacturer of the device
 o parallelCount
The number of parallel ports provided by this PortDriver
 o serialCount
The number of serial ports provided by this PortDriver

Constructor Index

 o PortDriverInfo()

Method Index

 o clone()
Clones this PortDriverInfo object
 o toString()
Converts the information to a string

Variables

 o serialCount
  public int serialCount
The number of serial ports provided by this PortDriver
 o parallelCount
  public int parallelCount
The number of parallel ports provided by this PortDriver
 o manufacturer
  public String manufacturer
The manufacturer of the device
 o deviceId
  public String deviceId
The manufacturer's name for the device
 o deviceRev
  public String deviceRev
The firmware revision of the device
 o driverRev
  public String driverRev
Version information about the PortDriver itself

Constructors

 o PortDriverInfo
  public PortDriverInfo()

Methods

 o toString
  public String toString()
Converts the information to a string
Overrides:
toString in class Object
 o clone
  public Object clone()
Clones this PortDriverInfo object
Overrides:
clone in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index