Package ScratchPadTester

Source Code of ScratchPadTester.Container

package ScratchPadTester;

import DisplayProject.binding.beans.ExtendedPropertyChangeSupport;
import DisplayProject.binding.beans.Observable;
import Framework.DecimalNullable;
import Framework.RuntimeProperties;
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;
import java.io.Serializable;
import java.lang.String;

/**
* Container<p>
* <p>
* @author Generated from Forte
* @since  19-Nov-2008
*/
@RuntimeProperties(isDistributed=false, isAnchored=false, isShared=false, isTransactional=false)
@SuppressWarnings("serial")
public class Container
        implements Serializable, Observable
{

    // ----------
    // Attributes
    // ----------
    public PropertyChangeSupport qq_Listeners = new ExtendedPropertyChangeSupport(this, true);
    private DecimalNullable field1;

    // ------------
    // Constructors
    // ------------
    public Container() {
        // Explicitly call the superclass constructor to prevent the implicit call
        super();

        this.setField1(new DecimalNullable());

    }

    // ----------------------
    // Accessors and Mutators
    // ----------------------
    public void setField1(DecimalNullable field1) {
        DecimalNullable oldValue = this.field1;
        this.field1 = field1;
        this.qq_Listeners.firePropertyChange("field1", oldValue, this.field1);
    }

    public DecimalNullable getField1() {
        return this.field1;
    }

    // -------
    // 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 Container
// c Pass 2 Conversion Time: 31 milliseconds
TOP

Related Classes of ScratchPadTester.Container

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.