Package com.scriptel.proscript.firmware
Class FWFirmwareDevice
- java.lang.Object
-
- com.scriptel.proscript.firmware.FWFirmwareDevice
-
public class FWFirmwareDevice extends java.lang.ObjectThis class represents a device that the firmware is allowed to be placed on.
-
-
Constructor Summary
Constructors Constructor Description FWFirmwareDevice()FWFirmwareDevice(java.lang.String vendorId, java.lang.String productId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetProductId()java.lang.StringgetVendorId()voidsetProductId(java.lang.String productId)voidsetVendorId(java.lang.String vendorId)java.lang.StringtoString()
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getVendorId
public java.lang.String getVendorId()
- Returns:
- the vendorId
-
setVendorId
public void setVendorId(java.lang.String vendorId)
- Parameters:
vendorId- the vendorId to set
-
getProductId
public java.lang.String getProductId()
- Returns:
- the productId
-
setProductId
public void setProductId(java.lang.String productId)
- Parameters:
productId- the productId to set
-
-