///////////////////////////////////////////////////////////////////////////////
// File     : DOUBLE_PKValues.java
// Creation : 2002.04.29 (generated by ejen 1.0.0)

package org.ejb.test;

/**
 * Values object that maps a row in the DOUBLE_PK table
 * (without primary key fields).
 * <br><i>Ejen EJB 1.1 (BMP) demonstration</i>
 * @version 1.0
 * @author (unknown)
 * @see org.ejb.test.EJB_DOUBLE_PK
 * @see org.ejb.test.EJB_DOUBLE_PKHome
 * @see org.ejb.test.EJB_DOUBLE_PKBean
 * @see org.ejb.test.EJB_DOUBLE_PK_PK
 */
 public class DOUBLE_PKValues implements java.io.Serializable {
 
    /** Field I. */
    protected int _i;
    /** Field J. */
    protected int _j;

    /**
     * Constructor (empty).
     */
    public DOUBLE_PKValues() {}

    /**
     * Constructor (with everything, except primary key fields).
     * @param i value of the I field.
     * @param j value of the J field.
     */
    public DOUBLE_PKValues(int i, int j) {
        _i = i;
        _j = j;
    }

    /**
     * Returns the value of the I field.
     * @return value of the I field.
     */
    public int getI() {
        return _i;
    }

    /**
     * Sets a new value for the I field.
     * @param i new value for the I field.
     */
    public void setI(int i) {
        _i = i;
    }

    /**
     * Returns the value of the J field.
     * @return value of the J field.
     */
    public int getJ() {
        return _j;
    }

    /**
     * Sets a new value for the J field.
     * @param j new value for the J field.
     */
    public void setJ(int j) {
        _j = j;
    }
}

DOUBLE_PKValues.html (HTML view generated by ejen v.1.0.0).