Package ArrayFieldNameError

Source Code of ArrayFieldNameError.Node

package ArrayFieldNameError;

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

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

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

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

        this.setSn(new SubNode());

    }

    // ----------------------
    // Accessors and Mutators
    // ----------------------
    public void setSn(SubNode sn) {
        SubNode oldValue = this.sn;
        this.sn = sn;
        this.qq_Listeners.firePropertyChange("sn", oldValue, this.sn);
    }

    public SubNode getSn() {
        return this.sn;
    }

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

Related Classes of ArrayFieldNameError.Node

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.