Package WindowTester

Source Code of WindowTester.X

package WindowTester;

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

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

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

    // ------------
    // Constructors
    // ------------
    public X() {
        // Explicitly call the superclass constructor to prevent the implicit call
        super();
        this.setAY(new Y());

    }

    public X(Y paY) {
        this();
        this.setAY( paY );
    }

    // ----------------------
    // Accessors and Mutators
    // ----------------------
    public void setAY(Y aY) {
        Y oldValue = this.aY;
        this.aY = aY;
        this.qq_Listeners.firePropertyChange("AY", oldValue, this.aY);
    }

    public Y getAY() {
        return this.aY;
    }

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

Related Classes of WindowTester.X

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.