///////////////////////////////////////////////////////////////////////////////
// File : DOUBLE_UNIQUEValues.java
// Creation : 2002.04.29 (generated by ejen 1.0.0)
package org.ejb.test;
/**
* Values object that maps a row in the DOUBLE_UNIQUE 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_UNIQUE
* @see org.ejb.test.EJB_DOUBLE_UNIQUEHome
* @see org.ejb.test.EJB_DOUBLE_UNIQUEBean
* @see org.ejb.test.EJB_DOUBLE_UNIQUE_PK
*/
public class DOUBLE_UNIQUEValues implements java.io.Serializable {
/** Field I. */
protected int _i;
/** Field J. */
protected int _j;
/**
* Constructor (empty).
*/
public DOUBLE_UNIQUEValues() {}
/**
* Constructor (with everything, except primary key fields).
* @param i value of the I field.
* @param j value of the J field.
*/
public DOUBLE_UNIQUEValues(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_UNIQUEValues.html
(HTML view generated by ejen v.1.0.0).