package ArrayExample;
import DisplayProject.binding.beans.ExtendedPropertyChangeSupport;
import DisplayProject.binding.beans.Observable;
import Framework.DateTimeData;
import Framework.DecimalData;
import Framework.DecimalNullable;
import Framework.RuntimeProperties;
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;
import java.io.Serializable;
import java.lang.String;
/**
* TabAvgCompCloneObject<p>
* <p>
* @author Generated from Forte
* @since 19-Nov-2008
*/
@RuntimeProperties(isDistributed=false, isAnchored=false, isShared=false, isTransactional=false)
@SuppressWarnings("serial")
public class TabAvgCompCloneObject
implements Serializable, Observable
{
// ----------
// Attributes
// ----------
public PropertyChangeSupport qq_Listeners = new ExtendedPropertyChangeSupport(this, true);
private DateTimeData aff_rpt_mnth_yr_dt;
private DecimalNullable augmented_sal;
private DecimalData factored_sal;
private String org_Cli_cd;
private boolean sal_ovrrd_in;
private DecimalData wag_amt;
// ------------
// Constructors
// ------------
public TabAvgCompCloneObject() {
// Explicitly call the superclass constructor to prevent the implicit call
super();
this.setAff_rpt_mnth_yr_dt(new DateTimeData());
this.getAff_rpt_mnth_yr_dt().setCurrent();
this.setAugmented_sal(new DecimalNullable());
this.getAugmented_sal().setValue(1000.1);
this.setFactored_sal(new DecimalData());
this.getFactored_sal().setValue(1000.1);
this.setOrg_Cli_cd("21");
this.setSal_ovrrd_in(false);
this.setWag_amt(new DecimalData());
this.getWag_amt().setValue(1000.1);
}
public TabAvgCompCloneObject(String porg_Cli_cd) {
this();
this.setOrg_Cli_cd( porg_Cli_cd );
}
// ----------------------
// Accessors and Mutators
// ----------------------
public void setAff_rpt_mnth_yr_dt(DateTimeData aff_rpt_mnth_yr_dt) {
DateTimeData oldValue = this.aff_rpt_mnth_yr_dt;
this.aff_rpt_mnth_yr_dt = aff_rpt_mnth_yr_dt;
this.qq_Listeners.firePropertyChange("aff_rpt_mnth_yr_dt", oldValue, this.aff_rpt_mnth_yr_dt);
}
public DateTimeData getAff_rpt_mnth_yr_dt() {
return this.aff_rpt_mnth_yr_dt;
}
public void setAugmented_sal(DecimalNullable augmented_sal) {
DecimalNullable oldValue = this.augmented_sal;
this.augmented_sal = augmented_sal;
this.qq_Listeners.firePropertyChange("augmented_sal", oldValue, this.augmented_sal);
}
public DecimalNullable getAugmented_sal() {
return this.augmented_sal;
}
public void setFactored_sal(DecimalData factored_sal) {
DecimalData oldValue = this.factored_sal;
this.factored_sal = factored_sal;
this.qq_Listeners.firePropertyChange("factored_sal", oldValue, this.factored_sal);
}
public DecimalData getFactored_sal() {
return this.factored_sal;
}
public void setOrg_Cli_cd(String org_Cli_cd) {
String oldValue = this.org_Cli_cd;
this.org_Cli_cd = org_Cli_cd;
this.qq_Listeners.firePropertyChange("org_Cli_cd", oldValue, this.org_Cli_cd);
}
public String getOrg_Cli_cd() {
return this.org_Cli_cd;
}
public void setSal_ovrrd_in(boolean sal_ovrrd_in) {
boolean oldValue = this.sal_ovrrd_in;
this.sal_ovrrd_in = sal_ovrrd_in;
this.qq_Listeners.firePropertyChange("sal_ovrrd_in", oldValue, this.sal_ovrrd_in);
}
public boolean getSal_ovrrd_in() {
return this.sal_ovrrd_in;
}
public void setWag_amt(DecimalData wag_amt) {
DecimalData oldValue = this.wag_amt;
this.wag_amt = wag_amt;
this.qq_Listeners.firePropertyChange("wag_amt", oldValue, this.wag_amt);
}
public DecimalData getWag_amt() {
return this.wag_amt;
}
// -------
// Methods
// -------
public void addPropertyChangeListener(String property, PropertyChangeListener listener) {
qq_Listeners.addPropertyChangeListener(property, listener);
}
public void addPropertyChangeListener(PropertyChangeListener listener) {
qq_Listeners.addPropertyChangeListener(listener);
}
public void removePropertyChangeListener(String property, PropertyChangeListener listener) {
qq_Listeners.removePropertyChangeListener(property, listener);
}
public void removePropertyChangeListener(PropertyChangeListener listener) {
qq_Listeners.removePropertyChangeListener(listener);
}
} // end class TabAvgCompCloneObject
// c Pass 2 Conversion Time: 78 milliseconds