All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.com.ibm.as400.access.PrintParameterList Maven / Gradle / Ivy

There is a newer version: 20.0.7
Show newest version
///////////////////////////////////////////////////////////////////////////////
//                                                                             
// JTOpen (IBM Toolbox for Java - OSS version)                              
//                                                                             
// Filename: PrintParameterList.java
//                                                                             
// The source code contained herein is licensed under the IBM Public License   
// Version 1.0, which has been approved by the Open Source Initiative.         
// Copyright (C) 1997-2000 International Business Machines Corporation and     
// others. All rights reserved.                                                
//                                                                             
///////////////////////////////////////////////////////////////////////////////

package com.ibm.as400.access;

import java.io.IOException;

/**
 * The  PrintParameterList class is used to group a set of attributes or
 * parameters for use on other network print class methods.
 * If a parameter has not been previously set, it is appended to the list;
 * otherwise, the parameter is overridden.
 *
 *
 *@see PrintObject
 **/

// public class that we'll use to "wrap" the NPCPAttribute class in
// exposing what is needed to set a list of parameters
public class PrintParameterList
implements java.io.Serializable
{
    private static final String copyright = "Copyright (C) 1997-2000 International Business Machines Corporation and others.";

    static final long serialVersionUID = 4L;

    private NPCPAttribute attrCP_;


   /**
     * Constructs a PrintParameterList object.
     *
     **/
    public PrintParameterList()
    {
        attrCP_ = new NPCPAttribute();
    }

    //
    // get access to attribute code point
    //  used internally when we are ready to send this code point
    //
    NPCPAttribute getAttrCodePoint()
    {
        return attrCP_;
    }

    
   /**
     * Returns a float parameter.
     *
     * @param 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.
     *
     * @return The value of the attribute.  Returns null if the attribute has not been set.
     **/
    public Float getFloatParameter(int attributeID)
    {
	return attrCP_.getFloatValue(attributeID);

    }

   /**
     * Returns an integer parameter.
     *
     * @param attributeID Identifies which attribute to retrieve.
     * See the documentation of network print classes for what attribute IDs
     * are valid for each particular class.
     *
     * @return The value of the attribute.  Returns null if the attribute has not been set.
     **/
    public Integer getIntegerParameter(int attributeID)
    {
	return attrCP_.getIntValue(attributeID);
    }

    /**
     * Returns a string parameter.
     *
     * @param attributeID Identifies which attribute to retrieve.
     * See the documentation of network print classes for what attribute IDs
     * are valid for each particular class.
     *
     * @return The value of the attribute.  Returns null if the attribute has not been set.
     **/
    public String getStringParameter(int attributeID)
    {
	return attrCP_.getStringValue(attributeID);
    }

    /* Allows object to be deserialized */
    private void readObject(java.io.ObjectInputStream in)
        throws IOException, ClassNotFoundException
    {
        in.defaultReadObject();
    }

    /**
     * Sets a string parameter.
     *
     * @param attributeID Identifies which attribute to set.
     * See the documentation of network print classes for what attribute IDs
     * are valid for each particular class.
     * @param value The new value for the attribute.
     *
     **/
    public void setParameter(int attributeID, String value)
    {
        attrCP_.setAttrValue(attributeID, value);
    }

   /**
     * Sets an integer parameter.
     *
     * @param attributeID Identifies which attribute to set.
     * See the documentation of network print classes for what attribute IDs
     * are valid for each particular class.
     * @param value The new value for the attribute.
     *
     **/
    public void setParameter(int attributeID, int value)
    {
        attrCP_.setAttrValue(attributeID, value);
    }

   /**
     * Sets a float parameter.
     *
     * @param attributeID Identifies which attribute to set.
     * See the documentation of network print classes for what attribute IDs
     * are valid for each particular class.
     * @param value The new value for the attribute.
     *
     **/
    public void setParameter(int attributeID, float value)
    {
        attrCP_.setAttrValue(attributeID, value);
    }

} // Print Parameter List class





© 2015 - 2024 Weber Informatics LLC | Privacy Policy