Package WindowTester

Examples of WindowTester.Y


        // Explicitly call the superclass constructor to prevent the implicit call
        super();
        this.initialize();

        this.setAX(new X());
        this.set_Y(new Y());

    }
View Full Code Here


        }
        return bindingManager;
    }

    public void set_Y(Y _Y) {
        Y oldValue = this._Y;
        this._Y = _Y;
        this.qq_Listeners.firePropertyChange("_Y", oldValue, this._Y);
    }
View Full Code Here

                // ----------------------
                if (qq_currentEvent.isEvent(PushButton_Click_getqq_Map_YZBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        this.set_Y(new Y("_Y.Z mapped!"));
                        UIutils.processGUIActions();

                        // ================ End Forte Event Handler Translation ================
                    }
                    finally {
                        CursorMgr.endEvent();
                    }
                }

                // ----------------------
                // self.<MapXYZBtn>.click
                // ----------------------
                else if (qq_currentEvent.isEvent(PushButton_Click_getqq_MapXYZBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        this.getAX().getAY().setZ("X.Y.Z mapped");
                        UIutils.processGUIActions();

                        // ================ End Forte Event Handler Translation ================
                    }
                    finally {
                        CursorMgr.endEvent();
                    }
                }

                // ---------------------
                // self.<MapXYBtn>.click
                // ---------------------
                else if (qq_currentEvent.isEvent(PushButton_Click_getqq_MapXYBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        this.getAX().setAY(new Y("X.Y mapped"));
                        UIutils.processGUIActions();

                        // ================ End Forte Event Handler Translation ================
                    }
                    finally {
                        CursorMgr.endEvent();
                    }
                }

                // --------------------
                // self.<MapXBtn>.click
                // --------------------
                else if (qq_currentEvent.isEvent(PushButton_Click_getqq_MapXBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        this.setAX(new X(new Y("X mapped")));

                        // ================ End Forte Event Handler Translation ================
                    }
                    finally {
                        CursorMgr.endEvent();
View Full Code Here

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

    }
View Full Code Here

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

TOP

Related Classes of WindowTester.Y

Copyright © 2018 www.massapicom. 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.