Package entities

Source Code of entities.Thongs

package entities;

import DisplayProject.binding.beans.Observable;
import Framework.RuntimeProperties;
import entities.BusinessClass;
import entities.Things;
import java.io.Serializable;

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

    // ----------
    // Attributes
    // ----------
    private Things t;

    // ------------
    // Constructors
    // ------------
    public Thongs() {
        // Explicitly call the superclass constructor to prevent the implicit call
        super();
        this.setT(new Things());

    }

    // ----------------------
    // Accessors and Mutators
    // ----------------------
    public void setT(Things t) {
        Things oldValue = this.t;
        this.t = t;
        this.qq_Listeners.firePropertyChange("t", oldValue, this.t);
    }

    public Things getT() {
        return this.t;
    }
// end class thongs
// c Pass 2 Conversion Time: 16 milliseconds
TOP

Related Classes of entities.Thongs

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.