public class PrintParameterList
extends java.lang.Object
implements java.io.Serializable
PrintObject, 
Serialized Form| Constructor and Description | 
|---|
PrintParameterList()
Constructs a PrintParameterList object. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.Float | 
getFloatParameter(int attributeID)
Returns a float parameter. 
 | 
java.lang.Integer | 
getIntegerParameter(int attributeID)
Returns an integer parameter. 
 | 
java.lang.String | 
getStringParameter(int attributeID)
Returns a string parameter. 
 | 
void | 
setParameter(int attributeID,
            float value)
Sets a float parameter. 
 | 
void | 
setParameter(int attributeID,
            int value)
Sets an integer parameter. 
 | 
void | 
setParameter(int attributeID,
            java.lang.String value)
Sets a string parameter. 
 | 
public PrintParameterList()
public java.lang.Float getFloatParameter(int attributeID)
attributeID - Identifies which attribute to retrieve.
 See the documentation of the specific network print classes for the attribute IDs
 that are valid for each particular class.public java.lang.Integer getIntegerParameter(int attributeID)
attributeID - Identifies which attribute to retrieve.
 See the documentation of network print classes for what attribute IDs
 are valid for each particular class.public java.lang.String getStringParameter(int attributeID)
attributeID - Identifies which attribute to retrieve.
 See the documentation of network print classes for what attribute IDs
 are valid for each particular class.public void setParameter(int attributeID,
                java.lang.String value)
attributeID - Identifies which attribute to set.
 See the documentation of network print classes for what attribute IDs
 are valid for each particular class.value - The new value for the attribute.public void setParameter(int attributeID,
                int value)
attributeID - Identifies which attribute to set.
 See the documentation of network print classes for what attribute IDs
 are valid for each particular class.value - The new value for the attribute.public void setParameter(int attributeID,
                float value)
attributeID - Identifies which attribute to set.
 See the documentation of network print classes for what attribute IDs
 are valid for each particular class.value - The new value for the attribute.