Package WindowTester

Source Code of WindowTester.ControlsTest

package WindowTester;

import DisplayProject.CloseHideAdaptor;
import DisplayProject.Constants;
import DisplayProject.CursorMgr;
import DisplayProject.DropListModel;
import DisplayProject.GridField;
import DisplayProject.RadioList;
import DisplayProject.ScrollListModel;
import DisplayProject.UDSWindow;
import DisplayProject.UIutils;
import DisplayProject.WindowManager;
import DisplayProject.WindowUsageMap;
import DisplayProject.actions.ElementList;
import DisplayProject.actions.HeightPolicy;
import DisplayProject.actions.TextValue;
import DisplayProject.actions.UserWindow;
import DisplayProject.actions.WidthPolicy;
import DisplayProject.binding.BindingManager;
import DisplayProject.binding.beans.ExtendedPropertyChangeSupport;
import DisplayProject.binding.beans.Observable;
import DisplayProject.controls.DropList;
import DisplayProject.controls.FillInField;
import DisplayProject.controls.ScrollList;
import DisplayProject.controls.TextGraphic;
import DisplayProject.events.ClientEventManager;
import DisplayProject.factory.CompoundFieldFactory;
import DisplayProject.factory.DropFillinFactory;
import DisplayProject.factory.GraphicFactory;
import DisplayProject.factory.ListFieldFactory;
import DisplayProject.factory.PushButtonFactory;
import DisplayProject.factory.ScrollBarFactory;
import DisplayProject.factory.ToggleFieldFactory;
import DisplayProject.plaf.Win32LookAndFeel;
import Framework.Array_Of_ListElement;
import Framework.BooleanData;
import Framework.BooleanNullable;
import Framework.ErrorMgr;
import Framework.EventHandle;
import Framework.EventManager;
import Framework.EventRegistration;
import Framework.File;
import Framework.ForteKeyboardFocusManager;
import Framework.IntegerData;
import Framework.IntegerNullable;
import Framework.ListElement;
import Framework.RuntimeProperties;
import Framework.TextData;
import Framework.UsageException;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.Insets;
import java.awt.KeyboardFocusManager;
import java.awt.Window;
import java.awt.event.ComponentListener;
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;
import java.io.Serializable;
import java.lang.String;
import java.net.MalformedURLException;
import java.net.URL;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollBar;
import javax.swing.JScrollPane;
import javax.swing.SwingConstants;
import javax.swing.ToolTipManager;
import javax.swing.UIManager;
import org.apache.log4j.Logger;

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

    // ----------
    // Attributes
    // ----------
    protected File DefaultHelpFile;
    protected BindingManager bindingManager = null;
    public PropertyChangeSupport qq_Listeners = new ExtendedPropertyChangeSupport(this, true);
    private String staticDropListString;
    private int staticDropListInteger;
    private String dynamicDropListString;
    private int dynamicDropListInteger;
    private String staticFillinFieldString;
    private String dynamicFillinFieldString;
    private int radioListInteger;
    private IntegerNullable radioListIntegerNullable;
    private String radioListString;
    private int radioListTextData;
    private int radioListDynamicInteger;
    private String radioListDynamicString;
    private boolean toggle1;
    private BooleanData toggle2;
    private BooleanNullable toggle3;
    private BooleanData toggle4;
    private BooleanNullable toggle5;
    private boolean toggle6;
    private BooleanData toggle7;
    private BooleanData toggle8;
    private BooleanNullable toggle9;
    private BooleanNullable toggle10;
    private int staticScrollListSingleSelectInteger;
    private String staticScrollListSingleSelectString;
    private IntegerData staticScrollListSingleSelectIntegerData;
    private TextData staticScrollListSingleSelectTextData;
    private int staticScrollListMultiSelectInteger;
    private int dynamicScrollListSingleSelectInteger;
    private String dynamicScrollListSingleSelectString;
    private IntegerData dynamicScrollListSingleSelectIntegerData;
    private TextData dynamicScrollListSingleSelectTextData;
    private int dynamicScrollListMultiSelectInteger;
    private int testScrollBar;

    // ------------
    // Constructors
    // ------------
    public ControlsTest() {
        // Explicitly call the superclass constructor to prevent the implicit call
        super();
        this.initialize();

        this.setRadioListIntegerNullable(new IntegerNullable(3));

        this.setToggle7(new BooleanData());
        this.setToggle8(new BooleanData());
        this.setToggle9(new BooleanNullable());
        this.setToggle10(new BooleanNullable());

        this.setStaticScrollListSingleSelectIntegerData(new IntegerData());
        this.setStaticScrollListSingleSelectTextData(new TextData());

    }

    // ----------------------
    // Accessors and Mutators
    // ----------------------
    public File getDefaultHelpFile() {
        return DefaultHelpFile;
    }

    public void setDefaultHelpFile(File defaultHelpFile) {
        DefaultHelpFile = defaultHelpFile;
        UserWindow.createHelp(this, defaultHelpFile);
    }

    public void setHelpURL(String urlString) {
        try {
            URL url = new URL(urlString);
            UserWindow.createHelp(this, url);
        } catch (MalformedURLException e) {
            UsageException err = new UsageException("Cannot create help URL", e);
            ErrorMgr.addError(err);
            throw err;
        }
    }

    protected BindingManager getBindingManager() {
        if (this.bindingManager == null) {
            this.bindingManager = new BindingManager(this);
        }
        return bindingManager;
    }

    public void setStaticDropListString(String staticDropListString) {
        String oldValue = this.staticDropListString;
        this.staticDropListString = staticDropListString;
        this.qq_Listeners.firePropertyChange("staticDropListString", oldValue, this.staticDropListString);
    }

    public String getStaticDropListString() {
        return this.staticDropListString;
    }

    public void setStaticDropListInteger(int staticDropListInteger) {
        int oldValue = this.staticDropListInteger;
        this.staticDropListInteger = staticDropListInteger;
        this.qq_Listeners.firePropertyChange("staticDropListInteger", oldValue, this.staticDropListInteger);
    }

    public int getStaticDropListInteger() {
        return this.staticDropListInteger;
    }

    public void setDynamicDropListString(String dynamicDropListString) {
        String oldValue = this.dynamicDropListString;
        this.dynamicDropListString = dynamicDropListString;
        this.qq_Listeners.firePropertyChange("dynamicDropListString", oldValue, this.dynamicDropListString);
    }

    public String getDynamicDropListString() {
        return this.dynamicDropListString;
    }

    public void setDynamicDropListInteger(int dynamicDropListInteger) {
        int oldValue = this.dynamicDropListInteger;
        this.dynamicDropListInteger = dynamicDropListInteger;
        this.qq_Listeners.firePropertyChange("dynamicDropListInteger", oldValue, this.dynamicDropListInteger);
    }

    public int getDynamicDropListInteger() {
        return this.dynamicDropListInteger;
    }

    public void setStaticFillinFieldString(String staticFillinFieldString) {
        String oldValue = this.staticFillinFieldString;
        this.staticFillinFieldString = staticFillinFieldString;
        this.qq_Listeners.firePropertyChange("staticFillinFieldString", oldValue, this.staticFillinFieldString);
    }

    public String getStaticFillinFieldString() {
        return this.staticFillinFieldString;
    }

    public void setDynamicFillinFieldString(String dynamicFillinFieldString) {
        String oldValue = this.dynamicFillinFieldString;
        this.dynamicFillinFieldString = dynamicFillinFieldString;
        this.qq_Listeners.firePropertyChange("dynamicFillinFieldString", oldValue, this.dynamicFillinFieldString);
    }

    public String getDynamicFillinFieldString() {
        return this.dynamicFillinFieldString;
    }

    public void setRadioListInteger(int radioListInteger) {
        int oldValue = this.radioListInteger;
        this.radioListInteger = radioListInteger;
        this.qq_Listeners.firePropertyChange("radioListInteger", oldValue, this.radioListInteger);
    }

    public int getRadioListInteger() {
        return this.radioListInteger;
    }

    public void setRadioListIntegerNullable(IntegerNullable radioListIntegerNullable) {
        IntegerNullable oldValue = this.radioListIntegerNullable;
        this.radioListIntegerNullable = radioListIntegerNullable;
        this.qq_Listeners.firePropertyChange("radioListIntegerNullable", oldValue, this.radioListIntegerNullable);
    }

    public IntegerNullable getRadioListIntegerNullable() {
        return this.radioListIntegerNullable;
    }

    public void setRadioListString(String radioListString) {
        String oldValue = this.radioListString;
        this.radioListString = radioListString;
        this.qq_Listeners.firePropertyChange("radioListString", oldValue, this.radioListString);
    }

    public String getRadioListString() {
        return this.radioListString;
    }

    public void setRadioListTextData(int radioListTextData) {
        int oldValue = this.radioListTextData;
        this.radioListTextData = radioListTextData;
        this.qq_Listeners.firePropertyChange("radioListTextData", oldValue, this.radioListTextData);
    }

    public int getRadioListTextData() {
        return this.radioListTextData;
    }

    public void setRadioListDynamicInteger(int radioListDynamicInteger) {
        int oldValue = this.radioListDynamicInteger;
        this.radioListDynamicInteger = radioListDynamicInteger;
        this.qq_Listeners.firePropertyChange("radioListDynamicInteger", oldValue, this.radioListDynamicInteger);
    }

    public int getRadioListDynamicInteger() {
        return this.radioListDynamicInteger;
    }

    public void setRadioListDynamicString(String radioListDynamicString) {
        String oldValue = this.radioListDynamicString;
        this.radioListDynamicString = radioListDynamicString;
        this.qq_Listeners.firePropertyChange("radioListDynamicString", oldValue, this.radioListDynamicString);
    }

    public String getRadioListDynamicString() {
        return this.radioListDynamicString;
    }

    public void setToggle1(boolean toggle1) {
        boolean oldValue = this.toggle1;
        this.toggle1 = toggle1;
        this.qq_Listeners.firePropertyChange("toggle1", oldValue, this.toggle1);
    }

    public boolean getToggle1() {
        return this.toggle1;
    }

    public void setToggle2(BooleanData toggle2) {
        BooleanData oldValue = this.toggle2;
        this.toggle2 = toggle2;
        this.qq_Listeners.firePropertyChange("toggle2", oldValue, this.toggle2);
    }

    public BooleanData getToggle2() {
        return this.toggle2;
    }

    public void setToggle3(BooleanNullable toggle3) {
        BooleanNullable oldValue = this.toggle3;
        this.toggle3 = toggle3;
        this.qq_Listeners.firePropertyChange("toggle3", oldValue, this.toggle3);
    }

    public BooleanNullable getToggle3() {
        return this.toggle3;
    }

    public void setToggle4(BooleanData toggle4) {
        BooleanData oldValue = this.toggle4;
        this.toggle4 = toggle4;
        this.qq_Listeners.firePropertyChange("toggle4", oldValue, this.toggle4);
    }

    public BooleanData getToggle4() {
        return this.toggle4;
    }

    public void setToggle5(BooleanNullable toggle5) {
        BooleanNullable oldValue = this.toggle5;
        this.toggle5 = toggle5;
        this.qq_Listeners.firePropertyChange("toggle5", oldValue, this.toggle5);
    }

    public BooleanNullable getToggle5() {
        return this.toggle5;
    }

    public void setToggle6(boolean toggle6) {
        boolean oldValue = this.toggle6;
        this.toggle6 = toggle6;
        this.qq_Listeners.firePropertyChange("toggle6", oldValue, this.toggle6);
    }

    public boolean getToggle6() {
        return this.toggle6;
    }

    public void setToggle7(BooleanData toggle7) {
        BooleanData oldValue = this.toggle7;
        this.toggle7 = toggle7;
        this.qq_Listeners.firePropertyChange("toggle7", oldValue, this.toggle7);
    }

    public BooleanData getToggle7() {
        return this.toggle7;
    }

    public void setToggle8(BooleanData toggle8) {
        BooleanData oldValue = this.toggle8;
        this.toggle8 = toggle8;
        this.qq_Listeners.firePropertyChange("toggle8", oldValue, this.toggle8);
    }

    public BooleanData getToggle8() {
        return this.toggle8;
    }

    public void setToggle9(BooleanNullable toggle9) {
        BooleanNullable oldValue = this.toggle9;
        this.toggle9 = toggle9;
        this.qq_Listeners.firePropertyChange("toggle9", oldValue, this.toggle9);
    }

    public BooleanNullable getToggle9() {
        return this.toggle9;
    }

    public void setToggle10(BooleanNullable toggle10) {
        BooleanNullable oldValue = this.toggle10;
        this.toggle10 = toggle10;
        this.qq_Listeners.firePropertyChange("toggle10", oldValue, this.toggle10);
    }

    public BooleanNullable getToggle10() {
        return this.toggle10;
    }

    public void setStaticScrollListSingleSelectInteger(int staticScrollListSingleSelectInteger) {
        int oldValue = this.staticScrollListSingleSelectInteger;
        this.staticScrollListSingleSelectInteger = staticScrollListSingleSelectInteger;
        this.qq_Listeners.firePropertyChange("staticScrollListSingleSelectInteger", oldValue, this.staticScrollListSingleSelectInteger);
    }

    public int getStaticScrollListSingleSelectInteger() {
        return this.staticScrollListSingleSelectInteger;
    }

    public void setStaticScrollListSingleSelectString(String staticScrollListSingleSelectString) {
        String oldValue = this.staticScrollListSingleSelectString;
        this.staticScrollListSingleSelectString = staticScrollListSingleSelectString;
        this.qq_Listeners.firePropertyChange("staticScrollListSingleSelectString", oldValue, this.staticScrollListSingleSelectString);
    }

    public String getStaticScrollListSingleSelectString() {
        return this.staticScrollListSingleSelectString;
    }

    public void setStaticScrollListSingleSelectIntegerData(IntegerData staticScrollListSingleSelectIntegerData) {
        IntegerData oldValue = this.staticScrollListSingleSelectIntegerData;
        this.staticScrollListSingleSelectIntegerData = staticScrollListSingleSelectIntegerData;
        this.qq_Listeners.firePropertyChange("staticScrollListSingleSelectIntegerData", oldValue, this.staticScrollListSingleSelectIntegerData);
    }

    public IntegerData getStaticScrollListSingleSelectIntegerData() {
        return this.staticScrollListSingleSelectIntegerData;
    }

    public void setStaticScrollListSingleSelectTextData(TextData staticScrollListSingleSelectTextData) {
        TextData oldValue = this.staticScrollListSingleSelectTextData;
        this.staticScrollListSingleSelectTextData = staticScrollListSingleSelectTextData;
        this.qq_Listeners.firePropertyChange("staticScrollListSingleSelectTextData", oldValue, this.staticScrollListSingleSelectTextData);
    }

    public TextData getStaticScrollListSingleSelectTextData() {
        return this.staticScrollListSingleSelectTextData;
    }

    public void setStaticScrollListMultiSelectInteger(int staticScrollListMultiSelectInteger) {
        int oldValue = this.staticScrollListMultiSelectInteger;
        this.staticScrollListMultiSelectInteger = staticScrollListMultiSelectInteger;
        this.qq_Listeners.firePropertyChange("staticScrollListMultiSelectInteger", oldValue, this.staticScrollListMultiSelectInteger);
    }

    public int getStaticScrollListMultiSelectInteger() {
        return this.staticScrollListMultiSelectInteger;
    }

    public void setDynamicScrollListSingleSelectInteger(int dynamicScrollListSingleSelectInteger) {
        int oldValue = this.dynamicScrollListSingleSelectInteger;
        this.dynamicScrollListSingleSelectInteger = dynamicScrollListSingleSelectInteger;
        this.qq_Listeners.firePropertyChange("dynamicScrollListSingleSelectInteger", oldValue, this.dynamicScrollListSingleSelectInteger);
    }

    public int getDynamicScrollListSingleSelectInteger() {
        return this.dynamicScrollListSingleSelectInteger;
    }

    public void setDynamicScrollListSingleSelectString(String dynamicScrollListSingleSelectString) {
        String oldValue = this.dynamicScrollListSingleSelectString;
        this.dynamicScrollListSingleSelectString = dynamicScrollListSingleSelectString;
        this.qq_Listeners.firePropertyChange("dynamicScrollListSingleSelectString", oldValue, this.dynamicScrollListSingleSelectString);
    }

    public String getDynamicScrollListSingleSelectString() {
        return this.dynamicScrollListSingleSelectString;
    }

    public void setDynamicScrollListSingleSelectIntegerData(IntegerData dynamicScrollListSingleSelectIntegerData) {
        IntegerData oldValue = this.dynamicScrollListSingleSelectIntegerData;
        this.dynamicScrollListSingleSelectIntegerData = dynamicScrollListSingleSelectIntegerData;
        this.qq_Listeners.firePropertyChange("dynamicScrollListSingleSelectIntegerData", oldValue, this.dynamicScrollListSingleSelectIntegerData);
    }

    public IntegerData getDynamicScrollListSingleSelectIntegerData() {
        return this.dynamicScrollListSingleSelectIntegerData;
    }

    public void setDynamicScrollListSingleSelectTextData(TextData dynamicScrollListSingleSelectTextData) {
        TextData oldValue = this.dynamicScrollListSingleSelectTextData;
        this.dynamicScrollListSingleSelectTextData = dynamicScrollListSingleSelectTextData;
        this.qq_Listeners.firePropertyChange("dynamicScrollListSingleSelectTextData", oldValue, this.dynamicScrollListSingleSelectTextData);
    }

    public TextData getDynamicScrollListSingleSelectTextData() {
        return this.dynamicScrollListSingleSelectTextData;
    }

    public void setDynamicScrollListMultiSelectInteger(int dynamicScrollListMultiSelectInteger) {
        int oldValue = this.dynamicScrollListMultiSelectInteger;
        this.dynamicScrollListMultiSelectInteger = dynamicScrollListMultiSelectInteger;
        this.qq_Listeners.firePropertyChange("dynamicScrollListMultiSelectInteger", oldValue, this.dynamicScrollListMultiSelectInteger);
    }

    public int getDynamicScrollListMultiSelectInteger() {
        return this.dynamicScrollListMultiSelectInteger;
    }

    public void setTestScrollBar(int testScrollBar) {
        int oldValue = this.testScrollBar;
        this.testScrollBar = testScrollBar;
        this.qq_Listeners.firePropertyChange("testScrollBar", oldValue, this.testScrollBar);
    }

    public int getTestScrollBar() {
        return this.testScrollBar;
    }

    // -------
    // 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);
    }

    /**
     * display<p>
     * <p>
     */
    public void display() {
        Array_Of_ListElement<ListElement> aList = new Array_Of_ListElement<ListElement>();
        aList.add(new ListElement(1, new TextData("uno"), ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE));
        aList.add(new ListElement(2, new TextData("dos"), ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE));
        aList.add(new ListElement(3, new TextData("tres"), ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE));
        aList.add(new ListElement(4, new TextData("cuatro"), ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE));
        aList.add(new ListElement(5, new TextData("cinco"), ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE));
        ElementList.set(this.getqq_DynamicDropListString(), aList);
        ElementList.set(this.getqq_DynamicDropListInteger(), aList);
        ElementList.set(this.getqq_RadioListDynamicInteger(), aList);
        ElementList.set(this.getqq_DynamicScrollListMultiSelectInteger(), aList);
        ElementList.set(this.getqq_DynamicScrollListSingleSelectInteger(), aList);

        aList.clear();
        aList.add(new ListElement(6, new TextData("seis"), ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE));
        aList.add(new ListElement(7, new TextData("siete"), ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE));
        aList.add(new ListElement(8, new TextData("ocho"), ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE));
        aList.add(new ListElement(9, new TextData("nueve"), ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE));
        aList.add(new ListElement(10, new TextData("dies"), ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE));
        this.getqq_DynamicFillinFieldString().setElementList(aList);
        ElementList.set(this.getqq_RadioListDynamicString(), aList);
        ElementList.set(this.getqq_DynamicScrollListSingleSelectIntegerData(), aList);
        ElementList.set(this.getqq_DynamicScrollListSingleSelectString(), aList);
        ElementList.set(this.getqq_DynamicScrollListSingleSelectTextData(), aList);

        UserWindow.open(this);

        // ----------
        // Event Loop
        // ----------
        EventManager.startEventLoop();
        try {
            EventRegistration PushButton_Click_getqq_SLPrintBtn = ClientEventManager.register( this.getqq_SLPrintBtn(), "Click" );
            EventRegistration PushButton_Click_getqq_SLSetBtn = ClientEventManager.register( this.getqq_SLSetBtn(), "Click" );
            EventRegistration PushButton_Click_getqq_PrintComboBoxesBtn = ClientEventManager.register( this.getqq_PrintComboBoxesBtn(), "Click" );
            EventRegistration PushButton_Click_getqq_SetComboBoxesBtn = ClientEventManager.register( this.getqq_SetComboBoxesBtn(), "Click" );
            EventRegistration PushButton_Click_getqq_RLPrintBtn = ClientEventManager.register( this.getqq_RLPrintBtn(), "Click" );
            EventRegistration PushButton_Click_getqq_RLSetBtn = ClientEventManager.register( this.getqq_RLSetBtn(), "Click" );
            EventRegistration PushButton_Click_getqq_ToggleSetBtn = ClientEventManager.register( this.getqq_ToggleSetBtn(), "Click" );
            EventRegistration PushButton_Click_getqq_TogglePrintBtn = ClientEventManager.register( this.getqq_TogglePrintBtn(), "Click" );
            EventRegistration ScrollBar_AfterValueChange_getqq_TestScrollBar = ClientEventManager.register( this.getqq_TestScrollBar(), "AfterValueChange" );
            EventRegistration PushButton_Click_getqq_SBSetBtn = ClientEventManager.register( this.getqq_SBSetBtn(), "Click" );
            EventRegistration TaskHandle_Shutdown_langThreadcurrentThread = ClientEventManager.register( Thread.currentThread(), "Shutdown" );

            while (true) {

                UIutils.processGUIActions();
                EventHandle qq_currentEvent = EventManager.waitForEvent();
                if (qq_currentEvent == null)
                    break;

                // -----------------------
                // self.<SLPrintBtn>.Click
                // -----------------------
                if (qq_currentEvent.isEvent(PushButton_Click_getqq_SLPrintBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        TextData aMsg = new TextData();
                        aMsg.concat("StaticScrollListSingleSelectInteger = ").concat(this.getStaticScrollListSingleSelectInteger()).concat("\n");
                        aMsg.concat("StaticScrollListSingleSelectString = ").concat(this.getStaticScrollListSingleSelectString()).concat("\n");
                        aMsg.concat("StaticScrollListSingleSelectIntegerData = ").concat(this.getStaticScrollListSingleSelectIntegerData()).concat("\n");
                        aMsg.concat("StaticScrollListSingleSelectTextData = ").concat(this.getStaticScrollListSingleSelectTextData()).concat("\n");
                        aMsg.concat("StaticScrollListMultiSelectInteger = ").concat(this.getStaticScrollListMultiSelectInteger()).concat("\n");
                        aMsg.concat("DynamicScrollListSingleSelectInteger = ").concat(this.getDynamicScrollListSingleSelectInteger()).concat("\n");
                        aMsg.concat("DynamicScrollListSingleSelectString = ").concat(this.getDynamicScrollListSingleSelectString()).concat("\n");
                        aMsg.concat("DynamicScrollListSingleSelectIntegerData = ").concat(this.getDynamicScrollListSingleSelectIntegerData()).concat("\n");
                        aMsg.concat("DynamicScrollListSingleSelectTextData = ").concat(this.getDynamicScrollListSingleSelectTextData()).concat("\n");
                        aMsg.concat("DynamicScrollListMultiSelectInteger = ").concat(this.getDynamicScrollListMultiSelectInteger()).concat("\n");
                        Logger.getLogger("task.part.logmgr").info(aMsg);


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

                // ---------------------
                // self.<SLSetBtn>.Click
                // ---------------------
                else if (qq_currentEvent.isEvent(PushButton_Click_getqq_SLSetBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        this.setStaticScrollListSingleSelectInteger(2);
                        this.setStaticScrollListSingleSelectString("Three");
                        this.getStaticScrollListSingleSelectIntegerData().setValue(4);
                        this.setStaticScrollListSingleSelectTextData(new TextData("One"));
                        this.setStaticScrollListMultiSelectInteger(3);
                        this.setDynamicScrollListSingleSelectInteger(5);
                        this.setDynamicScrollListSingleSelectString("nueve");
                        this.setDynamicScrollListSingleSelectIntegerData(new IntegerData(9));
                        this.setDynamicScrollListSingleSelectTextData(new TextData("ocho"));
                        this.setDynamicScrollListMultiSelectInteger(8);


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

                // -------------------------------
                // self.<PrintComboBoxesBtn>.Click
                // -------------------------------
                else if (qq_currentEvent.isEvent(PushButton_Click_getqq_PrintComboBoxesBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        TextData aMsg = new TextData();
                        aMsg.concat("StaticDropListString = ").concat(this.getStaticDropListString()).concat("\n");
                        aMsg.concat("StaticDropListInteger = ").concat(this.getStaticDropListInteger()).concat("\n");
                        aMsg.concat("DynamicDropListString = ").concat(this.getDynamicDropListString()).concat("\n");
                        aMsg.concat("DynamicDropListInteger = ").concat(this.getDynamicDropListInteger()).concat("\n");
                        aMsg.concat("StaticFillinFieldString = ").concat(this.getStaticFillinFieldString()).concat("\n");
                        aMsg.concat("DynamicFillinFieldString = ").concat(this.getDynamicFillinFieldString()).concat("\n");
                        Logger.getLogger("task.part.logmgr").info(aMsg);


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

                // -----------------------------
                // self.<SetComboBoxesBtn>.Click
                // -----------------------------
                else if (qq_currentEvent.isEvent(PushButton_Click_getqq_SetComboBoxesBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        this.setStaticDropListString("One");
                        this.setStaticDropListInteger(2);
                        this.setDynamicDropListString("tres");
                        this.setDynamicDropListInteger(4);
                        this.setStaticFillinFieldString("Five");
                        this.setDynamicFillinFieldString("siete");

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

                // -----------------------
                // self.<RLPrintBtn>.Click
                // -----------------------
                else if (qq_currentEvent.isEvent(PushButton_Click_getqq_RLPrintBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        TextData aMsg = new TextData();
                        aMsg.concat("RadioListInteger = ").concat(this.getRadioListInteger()).concat("\n");
                        aMsg.concat("RadioListIntegerNullable = ").concat(this.getRadioListIntegerNullable()).concat("\n");
                        aMsg.concat("RadioListString = ").concat(this.getRadioListString()).concat("\n");
                        aMsg.concat("RadioListTextData = ").concat(this.getRadioListTextData()).concat("\n");
                        aMsg.concat("RadioListDynamicInteger = ").concat(this.getRadioListDynamicInteger()).concat("\n");
                        aMsg.concat("RadioListDynamicString = ").concat(this.getRadioListDynamicString()).concat("\n");
                        Logger.getLogger("task.part.logmgr").info(aMsg);

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

                // ---------------------
                // self.<RLSetBtn>.Click
                // ---------------------
                else if (qq_currentEvent.isEvent(PushButton_Click_getqq_RLSetBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        this.setRadioListInteger(2);
                        this.setRadioListIntegerNullable(null);
                        this.setRadioListString("Four");
                        this.setRadioListTextData(3);
                        this.setRadioListDynamicInteger(4);
                        this.setRadioListDynamicString("siete");

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

                // -------------------------
                // self.<ToggleSetBtn>.Click
                // -------------------------
                else if (qq_currentEvent.isEvent(PushButton_Click_getqq_ToggleSetBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        this.setToggle1(true);
                        this.setToggle6(false);
                        this.setToggle2(new BooleanData(true, BooleanData.qq_Resolver.cVALUE));
                        this.setToggle3(new BooleanNullable(true, BooleanNullable.qq_Resolver.cISNULL));
                        this.setToggle4(new BooleanData(false, BooleanData.qq_Resolver.cVALUE));
                        this.setToggle5(new BooleanNullable(true, BooleanNullable.qq_Resolver.cVALUE));
                        this.getToggle7().setValue(true);
                        this.getToggle8().setValue(false);
                        this.getToggle9().setValue(true);
                        this.getToggle10().setValue(false);

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

                // ---------------------------
                // self.<TogglePrintBtn>.Click
                // ---------------------------
                else if (qq_currentEvent.isEvent(PushButton_Click_getqq_TogglePrintBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        TextData aMsg = new TextData();
                        aMsg.concat("Toggle1 = ").concat(this.getToggle1()).concat("\n");
                        aMsg.concat("Toggle2 = ").concat(this.getToggle2().getValue()).concat("\n");
                        aMsg.concat("Toggle3 = ").concat(this.getToggle3().getValue()).concat("\n");
                        aMsg.concat("Toggle4 = ").concat(this.getToggle4().getValue()).concat("\n");
                        aMsg.concat("Toggle5 = ").concat(this.getToggle5().getValue()).concat("\n");
                        aMsg.concat("Toggle6 = ").concat(this.getToggle6()).concat("\n");
                        aMsg.concat("Toggle7 = ").concat(this.getToggle7().getValue()).concat("\n");
                        aMsg.concat("Toggle8 = ").concat(this.getToggle8().getValue()).concat("\n");
                        aMsg.concat("Toggle9 = ").concat(this.getToggle9().getValue()).concat("\n");
                        aMsg.concat("Toggle10 = ").concat(this.getToggle10().getValue()).concat("\n");
                        Logger.getLogger("task.part.logmgr").info(aMsg);

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

                // -------------------------------------
                // self.<TestScrollBar>.AfterValueChange
                // -------------------------------------
                else if (qq_currentEvent.isEvent(ScrollBar_AfterValueChange_getqq_TestScrollBar)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        TextValue.set(this.getqq_SBValue(), (TextData)new TextData("Value: ").concat(this.getTestScrollBar()));

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

                // ---------------------
                // self.<SBSetBtn>.Click
                // ---------------------
                else if (qq_currentEvent.isEvent(PushButton_Click_getqq_SBSetBtn)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        this.setTestScrollBar(50);
                        TextValue.set(this.getqq_SBValue(), (TextData)new TextData("Value: ").concat(this.getTestScrollBar()));

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

                // -------------
                // task.Shutdown
                // -------------
                else if (qq_currentEvent.isEvent(TaskHandle_Shutdown_langThreadcurrentThread)) {
                    try {
                        CursorMgr.startEvent();
                        // ================ Begin Forte Event Handler Translation ================
                        break;
                        // ================ End Forte Event Handler Translation ================
                    }
                    finally {
                        CursorMgr.endEvent();
                    }
                }
            }
            EventManager.deregister( PushButton_Click_getqq_SLPrintBtn );
            EventManager.deregister( PushButton_Click_getqq_SLSetBtn );
            EventManager.deregister( PushButton_Click_getqq_PrintComboBoxesBtn );
            EventManager.deregister( PushButton_Click_getqq_SetComboBoxesBtn );
            EventManager.deregister( PushButton_Click_getqq_RLPrintBtn );
            EventManager.deregister( PushButton_Click_getqq_RLSetBtn );
            EventManager.deregister( PushButton_Click_getqq_ToggleSetBtn );
            EventManager.deregister( PushButton_Click_getqq_TogglePrintBtn );
            EventManager.deregister( ScrollBar_AfterValueChange_getqq_TestScrollBar );
            EventManager.deregister( PushButton_Click_getqq_SBSetBtn );
            EventManager.deregister( TaskHandle_Shutdown_langThreadcurrentThread );
        }
        //catch (Exception qq_error) {
            //Logger.getLogger("task.part.Event").error("Event loop terminated by unhandled exception: " + qq_error.getMessage(), qq_error );
            //throw qq_error;
        //}
        finally {
            EventManager.endEventLoop();
            UserWindow.close(this);
        }
    }

    // ------------------
    // Window Definitions
    // ------------------
    // <editor-fold defaultstate="collapsed" desc="Window Definitions">
    private int qq_defaultSet = 1;
    private int qq_msgNumber = 0;
    private int qq_msgSet = 0;
    protected Window primaryWindow = null;
    protected int initialX;
    protected int initialY;
    protected int qq_SystemClosePolicy = Constants.SC_ENABLEDSHUTDOWN;
    protected int qq_initialPositionPolicy = Constants.PP_SYSTEMDEFAULT;
    public DropList qq_DynamicDropListInteger;
    public DropList qq_DynamicDropListString;
    public DropList qq_StaticDropListInteger;
    public DropList qq_StaticDropListString;
    public FillInField qq_DynamicFillinFieldString;
    public FillInField qq_StaticFillinFieldString;
    public GridField qq_GridField12;
    public GridField qq_GridField13;
    public GridField qq_GridField22;
    public GridField qq_GridField31;
    public GridField qq_GridField44;
    public GridField qq_GridField57;
    public JButton qq_PrintComboBoxesBtn;
    public JButton qq_RLPrintBtn;
    public JButton qq_RLSetBtn;
    public JButton qq_SBSetBtn;
    public JButton qq_SLPrintBtn;
    public JButton qq_SLSetBtn;
    public JButton qq_SetComboBoxesBtn;
    public JButton qq_TogglePrintBtn;
    public JButton qq_ToggleSetBtn;
    public JCheckBox qq_Toggle10;
    public JCheckBox qq_Toggle1;
    public JCheckBox qq_Toggle2;
    public JCheckBox qq_Toggle3;
    public JCheckBox qq_Toggle4;
    public JCheckBox qq_Toggle5;
    public JCheckBox qq_Toggle6;
    public JCheckBox qq_Toggle7;
    public JCheckBox qq_Toggle8;
    public JCheckBox qq_Toggle9;
    public JPanel Form;
    public JScrollBar qq_TestScrollBar;
    public JScrollPane qq_DynamicScrollListMultiSelectInteger_sp;
    public JScrollPane qq_DynamicScrollListSingleSelectIntegerData_sp;
    public JScrollPane qq_DynamicScrollListSingleSelectInteger_sp;
    public JScrollPane qq_DynamicScrollListSingleSelectString_sp;
    public JScrollPane qq_DynamicScrollListSingleSelectTextData_sp;
    public JScrollPane qq_StaticScrollListMultiSelectInteger_sp;
    public JScrollPane qq_StaticScrollListSingleSelectIntegerData_sp;
    public JScrollPane qq_StaticScrollListSingleSelectInteger_sp;
    public JScrollPane qq_StaticScrollListSingleSelectString_sp;
    public JScrollPane qq_StaticScrollListSingleSelectTextData_sp;
    public RadioList qq_RadioListDynamicInteger;
    public RadioList qq_RadioListDynamicString;
    public RadioList qq_RadioListInteger;
    public RadioList qq_RadioListIntegerNullable;
    public RadioList qq_RadioListString;
    public RadioList qq_RadioListTextData;
    public ScrollList qq_DynamicScrollListMultiSelectInteger;
    public ScrollList qq_DynamicScrollListSingleSelectInteger;
    public ScrollList qq_DynamicScrollListSingleSelectIntegerData;
    public ScrollList qq_DynamicScrollListSingleSelectString;
    public ScrollList qq_DynamicScrollListSingleSelectTextData;
    public ScrollList qq_StaticScrollListMultiSelectInteger;
    public ScrollList qq_StaticScrollListSingleSelectInteger;
    public ScrollList qq_StaticScrollListSingleSelectIntegerData;
    public ScrollList qq_StaticScrollListSingleSelectString;
    public ScrollList qq_StaticScrollListSingleSelectTextData;
    public TextGraphic qq_SBValue;

    /**
     * qq_StaticDropListString: transformed from: qqds_DropList
     * TagId=14
     * isInherited=FALSE
     */
    public DropList getqq_StaticDropListString() {
        if (qq_StaticDropListString == null) {
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            elements.add( new ListElement( 1, "One", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 2, "Two", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 3, "Three", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 4, "Four", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );

            qq_StaticDropListString = DropFillinFactory.newDropList();
            qq_StaticDropListString.setName("StaticDropListString");
            getBindingManager().bindComponent(qq_StaticDropListString, "staticDropListString", elements);
            qq_StaticDropListString.addActionListener( (DropListModel)qq_StaticDropListString.getModel() );
            // OPTIONAL UIutils.reloadLabelText(qq_StaticDropListString, mcat);
            qq_StaticDropListString.setMaximumRowCount(4);
            WidthPolicy.set(qq_StaticDropListString, Constants.SP_NATURAL);
            HeightPolicy.set(qq_StaticDropListString, Constants.SP_NATURAL);
            qq_StaticDropListString.setMinimumSize(new Dimension(62, 19));
        }
        return qq_StaticDropListString;
    }

    public void setqq_StaticDropListString(DropList value) {
        DropList oldValue = qq_StaticDropListString;
        qq_StaticDropListString = value;
        this.qq_Listeners.firePropertyChange("qq_StaticDropListString", oldValue, value);
    }

    /**
     * qq_StaticDropListInteger: transformed from: qqds_DropList
     * TagId=15
     * isInherited=FALSE
     */
    public DropList getqq_StaticDropListInteger() {
        if (qq_StaticDropListInteger == null) {
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            elements.add( new ListElement( 1, "One", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 2, "Two", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 3, "Three", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 4, "Four", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );

            qq_StaticDropListInteger = DropFillinFactory.newDropList();
            qq_StaticDropListInteger.setName("StaticDropListInteger");
            getBindingManager().bindComponent(qq_StaticDropListInteger, "staticDropListInteger", elements);
            qq_StaticDropListInteger.addActionListener( (DropListModel)qq_StaticDropListInteger.getModel() );
            // OPTIONAL UIutils.reloadLabelText(qq_StaticDropListInteger, mcat);
            qq_StaticDropListInteger.setMaximumRowCount(4);
            WidthPolicy.set(qq_StaticDropListInteger, Constants.SP_NATURAL);
            HeightPolicy.set(qq_StaticDropListInteger, Constants.SP_NATURAL);
            qq_StaticDropListInteger.setMinimumSize(new Dimension(62, 19));
        }
        return qq_StaticDropListInteger;
    }

    public void setqq_StaticDropListInteger(DropList value) {
        DropList oldValue = qq_StaticDropListInteger;
        qq_StaticDropListInteger = value;
        this.qq_Listeners.firePropertyChange("qq_StaticDropListInteger", oldValue, value);
    }

    /**
     * qq_DynamicDropListString: transformed from: qqds_DropList
     * TagId=16
     * isInherited=FALSE
     */
    public DropList getqq_DynamicDropListString() {
        if (qq_DynamicDropListString == null) {
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();

            qq_DynamicDropListString = DropFillinFactory.newDropList();
            qq_DynamicDropListString.setName("DynamicDropListString");
            getBindingManager().bindComponent(qq_DynamicDropListString, "dynamicDropListString", elements);
            qq_DynamicDropListString.addActionListener( (DropListModel)qq_DynamicDropListString.getModel() );
            // OPTIONAL UIutils.reloadLabelText(qq_DynamicDropListString, mcat);
            qq_DynamicDropListString.setMaximumRowCount(4);
            WidthPolicy.set(qq_DynamicDropListString, Constants.SP_NATURAL);
            HeightPolicy.set(qq_DynamicDropListString, Constants.SP_NATURAL);
            qq_DynamicDropListString.setMinimumSize(new Dimension(82, 19));
        }
        return qq_DynamicDropListString;
    }

    public void setqq_DynamicDropListString(DropList value) {
        DropList oldValue = qq_DynamicDropListString;
        qq_DynamicDropListString = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicDropListString", oldValue, value);
    }

    /**
     * qq_DynamicDropListInteger: transformed from: qqds_DropList
     * TagId=17
     * isInherited=FALSE
     */
    public DropList getqq_DynamicDropListInteger() {
        if (qq_DynamicDropListInteger == null) {
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();

            qq_DynamicDropListInteger = DropFillinFactory.newDropList();
            qq_DynamicDropListInteger.setName("DynamicDropListInteger");
            getBindingManager().bindComponent(qq_DynamicDropListInteger, "dynamicDropListInteger", elements);
            qq_DynamicDropListInteger.addActionListener( (DropListModel)qq_DynamicDropListInteger.getModel() );
            // OPTIONAL UIutils.reloadLabelText(qq_DynamicDropListInteger, mcat);
            qq_DynamicDropListInteger.setMaximumRowCount(4);
            WidthPolicy.set(qq_DynamicDropListInteger, Constants.SP_NATURAL);
            HeightPolicy.set(qq_DynamicDropListInteger, Constants.SP_NATURAL);
            qq_DynamicDropListInteger.setMinimumSize(new Dimension(82, 19));
        }
        return qq_DynamicDropListInteger;
    }

    public void setqq_DynamicDropListInteger(DropList value) {
        DropList oldValue = qq_DynamicDropListInteger;
        qq_DynamicDropListInteger = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicDropListInteger", oldValue, value);
    }

    /**
     * qq_StaticFillinFieldString: transformed from: qqds_FillInField
     * TagId=18
     * isInherited=FALSE
     */
    public FillInField getqq_StaticFillinFieldString() {
        if (qq_StaticFillinFieldString == null) {
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            elements.add( new ListElement( 1, "Five", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 2, "Six", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 3, "Seven", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 4, "Eight", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            qq_StaticFillinFieldString = DropFillinFactory.newFillinField();
            qq_StaticFillinFieldString.setName("StaticFillinFieldString");
            getBindingManager().bindComponent(qq_StaticFillinFieldString, "staticFillinFieldString", elements);
            qq_StaticFillinFieldString.addActionListener( (DropListModel)qq_StaticFillinFieldString.getModel() );
            // OPTIONAL UIutils.reloadLabelText(qq_StaticFillinFieldString, mcat);
            qq_StaticFillinFieldString.setMaximumRowCount(4);
            qq_StaticFillinFieldString.setVisibleColumns(3);
            WidthPolicy.set(qq_StaticFillinFieldString, Constants.SP_EXPLICIT);
            HeightPolicy.set(qq_StaticFillinFieldString, Constants.SP_NATURAL);
            qq_StaticFillinFieldString.setMinimumSize(new Dimension(55, 19));
            qq_StaticFillinFieldString.setSize(new Dimension(55, 19));
        }
        return qq_StaticFillinFieldString;
    }

    public void setqq_StaticFillinFieldString(FillInField value) {
        FillInField oldValue = qq_StaticFillinFieldString;
        qq_StaticFillinFieldString = value;
        this.qq_Listeners.firePropertyChange("qq_StaticFillinFieldString", oldValue, value);
    }

    /**
     * qq_DynamicFillinFieldString: transformed from: qqds_FillInField
     * TagId=19
     * isInherited=FALSE
     */
    public FillInField getqq_DynamicFillinFieldString() {
        if (qq_DynamicFillinFieldString == null) {
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            qq_DynamicFillinFieldString = DropFillinFactory.newFillinField();
            qq_DynamicFillinFieldString.setName("DynamicFillinFieldString");
            getBindingManager().bindComponent(qq_DynamicFillinFieldString, "dynamicFillinFieldString", elements);
            qq_DynamicFillinFieldString.addActionListener( (DropListModel)qq_DynamicFillinFieldString.getModel() );
            // OPTIONAL UIutils.reloadLabelText(qq_DynamicFillinFieldString, mcat);
            qq_DynamicFillinFieldString.setMaximumRowCount(4);
            qq_DynamicFillinFieldString.setVisibleColumns(3);
            WidthPolicy.set(qq_DynamicFillinFieldString, Constants.SP_EXPLICIT);
            HeightPolicy.set(qq_DynamicFillinFieldString, Constants.SP_NATURAL);
            qq_DynamicFillinFieldString.setMinimumSize(new Dimension(55, 19));
            qq_DynamicFillinFieldString.setSize(new Dimension(55, 19));
        }
        return qq_DynamicFillinFieldString;
    }

    public void setqq_DynamicFillinFieldString(FillInField value) {
        FillInField oldValue = qq_DynamicFillinFieldString;
        qq_DynamicFillinFieldString = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicFillinFieldString", oldValue, value);
    }

    /**
     * qq_PrintComboBoxesBtn: transformed from: qqds_PushButton
     * TagId=20
     * isInherited=FALSE
     */
    public JButton getqq_PrintComboBoxesBtn() {
        if (qq_PrintComboBoxesBtn == null) {
            qq_PrintComboBoxesBtn = PushButtonFactory.newInstance("PrintComboBoxesBtn", "Print");
            qq_PrintComboBoxesBtn.setVerifyInputWhenFocusTarget(true);
            WidthPolicy.set(qq_PrintComboBoxesBtn, Constants.SP_NATURAL);
            HeightPolicy.set(qq_PrintComboBoxesBtn, Constants.SP_NATURAL);
            qq_PrintComboBoxesBtn.setMinimumSize(new Dimension(36, 23));
        }
        return qq_PrintComboBoxesBtn;
    }

    public void setqq_PrintComboBoxesBtn(JButton value) {
        JButton oldValue = qq_PrintComboBoxesBtn;
        qq_PrintComboBoxesBtn = value;
        this.qq_Listeners.firePropertyChange("qq_PrintComboBoxesBtn", oldValue, value);
    }

    /**
     * qq_SetComboBoxesBtn: transformed from: qqds_PushButton
     * TagId=21
     * isInherited=FALSE
     */
    public JButton getqq_SetComboBoxesBtn() {
        if (qq_SetComboBoxesBtn == null) {
            qq_SetComboBoxesBtn = PushButtonFactory.newInstance("SetComboBoxesBtn", "Set");
            qq_SetComboBoxesBtn.setVerifyInputWhenFocusTarget(true);
            WidthPolicy.set(qq_SetComboBoxesBtn, Constants.SP_NATURAL);
            HeightPolicy.set(qq_SetComboBoxesBtn, Constants.SP_NATURAL);
            qq_SetComboBoxesBtn.setMinimumSize(new Dimension(30, 23));
        }
        return qq_SetComboBoxesBtn;
    }

    public void setqq_SetComboBoxesBtn(JButton value) {
        JButton oldValue = qq_SetComboBoxesBtn;
        qq_SetComboBoxesBtn = value;
        this.qq_Listeners.firePropertyChange("qq_SetComboBoxesBtn", oldValue, value);
    }

    /**
     * qq_GridField13: transformed from: qqds_GridField
     * TagId=13
     * isInherited=FALSE
     * In forte this was a 5x2 grid field.
     * The cell margins are all 50 mils
     * The width policy is set to Natural, and the height policy is set to Natural.
     */
    protected void setqq_GridField13Properties() {
        qq_GridField13.setCellTopMargin(25);
        qq_GridField13.setCellBottomMargin(25);
        qq_GridField13.setCellLeftMargin(25);
        qq_GridField13.setCellRightMargin(25);
        qq_GridField13.setCollapsed(true);
        qq_GridField13.setHeightPolicy(Constants.SP_NATURAL);
        qq_GridField13.setWidthPolicy(Constants.SP_NATURAL);
        qq_GridField13.setBackground(null);
    }

    public GridField getqq_GridField13() {
        if (qq_GridField13 == null) {
            qq_GridField13 = CompoundFieldFactory.newGridField("qq_GridField13", true);
            setqq_GridField13Properties();
            qq_GridField13.setMinimumSize(new Dimension(361, 69));
            GridBagConstraints qq_gbc = new GridBagConstraints();
            qq_gbc.gridx = 0; // Column 1
            qq_gbc.gridy = 0; // Row 1
            qq_gbc.weightx = 0;
            qq_gbc.weighty = 0;
            qq_gbc.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField13.add( getqq_StaticDropListString(), qq_gbc );

            GridBagConstraints qq_gbc1 = new GridBagConstraints();
            qq_gbc1.gridx = 1; // Column 2
            qq_gbc1.gridy = 0; // Row 1
            qq_gbc1.weightx = 0;
            qq_gbc1.weighty = 0;
            qq_gbc1.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc1.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc1.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField13.add( getqq_StaticDropListInteger(), qq_gbc1 );

            GridBagConstraints qq_gbc2 = new GridBagConstraints();
            qq_gbc2.gridx = 2; // Column 3
            qq_gbc2.gridy = 0; // Row 1
            qq_gbc2.weightx = 0;
            qq_gbc2.weighty = 0;
            qq_gbc2.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc2.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc2.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField13.add( getqq_DynamicDropListString(), qq_gbc2 );

            GridBagConstraints qq_gbc3 = new GridBagConstraints();
            qq_gbc3.gridx = 3; // Column 4
            qq_gbc3.gridy = 0; // Row 1
            qq_gbc3.weightx = 0;
            qq_gbc3.weighty = 0;
            qq_gbc3.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc3.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc3.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField13.add( getqq_DynamicDropListInteger(), qq_gbc3 );

            GridBagConstraints qq_gbc4 = new GridBagConstraints();
            qq_gbc4.gridx = 4; // Column 5
            qq_gbc4.gridy = 0; // Row 1
            qq_gbc4.weightx = 0;
            qq_gbc4.weighty = 0;
            qq_gbc4.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc4.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc4.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField13.add( getqq_PrintComboBoxesBtn(), qq_gbc4 );

            GridBagConstraints qq_gbc5 = new GridBagConstraints();
            qq_gbc5.gridx = 0; // Column 1
            qq_gbc5.gridy = 1; // Row 2
            qq_gbc5.weightx = 0;
            qq_gbc5.weighty = 0;
            qq_gbc5.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc5.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc5.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField13.add( getqq_StaticFillinFieldString(), qq_gbc5 );

            GridBagConstraints qq_gbc6 = new GridBagConstraints();
            qq_gbc6.gridx = 2; // Column 3
            qq_gbc6.gridy = 1; // Row 2
            qq_gbc6.weightx = 0;
            qq_gbc6.weighty = 0;
            qq_gbc6.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc6.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc6.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField13.add( getqq_DynamicFillinFieldString(), qq_gbc6 );

            GridBagConstraints qq_gbc7 = new GridBagConstraints();
            qq_gbc7.gridx = 4; // Column 5
            qq_gbc7.gridy = 1; // Row 2
            qq_gbc7.weightx = 0;
            qq_gbc7.weighty = 0;
            qq_gbc7.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc7.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc7.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField13.add( getqq_SetComboBoxesBtn(), qq_gbc7 );

        }
        return qq_GridField13;
    }

    public void setqq_GridField13(GridField value) {
        GridField oldValue = qq_GridField13;
        qq_GridField13 = value;
        this.qq_Listeners.firePropertyChange("qq_GridField13", oldValue, value);
    }

    /**
     * qq_RadioListInteger: transformed from: qqds_RadioList
     * TagId=23
     * isInherited=FALSE
     */
    public RadioList getqq_RadioListInteger() {
        if (qq_RadioListInteger == null) {
            String[] names = {"One", "Two"};
            qq_RadioListInteger = ListFieldFactory.newRadioList(Constants.FO_VERTICAL, "", names, 1, Constants.LP_CONSTANT);
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            elements.add( new ListElement( 1, names[0], ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 2, names[1], ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            qq_RadioListInteger.setName("RadioListInteger");
            getBindingManager().bindComponent(qq_RadioListInteger, "radioListInteger", elements);
            if (qq_RadioListInteger.getSelectedIndex() == -1)
                qq_RadioListInteger.setSelectedIndex(0);
            // OPTIONAL UIutils.reloadLabelText(qq_RadioListInteger, mcat);
        }
        return qq_RadioListInteger;
    }

    public void setqq_RadioListInteger(RadioList value) {
        RadioList oldValue = qq_RadioListInteger;
        qq_RadioListInteger = value;
        this.qq_Listeners.firePropertyChange("qq_RadioListInteger", oldValue, value);
    }

    /**
     * qq_RadioListIntegerNullable: transformed from: qqds_RadioList
     * TagId=24
     * isInherited=FALSE
     */
    public RadioList getqq_RadioListIntegerNullable() {
        if (qq_RadioListIntegerNullable == null) {
            String[] names = {"Three", "Four"};
            qq_RadioListIntegerNullable = ListFieldFactory.newRadioList(Constants.FO_VERTICAL, "", names, 1, Constants.LP_CONSTANT);
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            elements.add( new ListElement( 3, names[0], ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 4, names[1], ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            qq_RadioListIntegerNullable.setName("RadioListIntegerNullable");
            qq_RadioListIntegerNullable.setAllowDeselect(true);
            getBindingManager().bindComponent(qq_RadioListIntegerNullable, "radioListIntegerNullable", elements);
            if (qq_RadioListIntegerNullable.getSelectedIndex() == -1)
                qq_RadioListIntegerNullable.setSelectedIndex(0);
            // OPTIONAL UIutils.reloadLabelText(qq_RadioListIntegerNullable, mcat);
        }
        return qq_RadioListIntegerNullable;
    }

    public void setqq_RadioListIntegerNullable(RadioList value) {
        RadioList oldValue = qq_RadioListIntegerNullable;
        qq_RadioListIntegerNullable = value;
        this.qq_Listeners.firePropertyChange("qq_RadioListIntegerNullable", oldValue, value);
    }

    /**
     * qq_RadioListString: transformed from: qqds_RadioList
     * TagId=25
     * isInherited=FALSE
     */
    public RadioList getqq_RadioListString() {
        if (qq_RadioListString == null) {
            String[] names = {"One", "Four"};
            qq_RadioListString = ListFieldFactory.newRadioList(Constants.FO_VERTICAL, "", names, 1, Constants.LP_CONSTANT);
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            elements.add( new ListElement( 1, names[0], ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 4, names[1], ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            qq_RadioListString.setName("RadioListString");
            getBindingManager().bindComponent(qq_RadioListString, "radioListString", elements);
            if (qq_RadioListString.getSelectedIndex() == -1)
                qq_RadioListString.setSelectedIndex(0);
            // OPTIONAL UIutils.reloadLabelText(qq_RadioListString, mcat);
        }
        return qq_RadioListString;
    }

    public void setqq_RadioListString(RadioList value) {
        RadioList oldValue = qq_RadioListString;
        qq_RadioListString = value;
        this.qq_Listeners.firePropertyChange("qq_RadioListString", oldValue, value);
    }

    /**
     * qq_RadioListTextData: transformed from: qqds_RadioList
     * TagId=26
     * isInherited=FALSE
     */
    public RadioList getqq_RadioListTextData() {
        if (qq_RadioListTextData == null) {
            String[] names = {"Two", "Three"};
            qq_RadioListTextData = ListFieldFactory.newRadioList(Constants.FO_HORIZONTAL, "", names, 1, Constants.LP_CONSTANT);
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            elements.add( new ListElement( 2, names[0], ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 3, names[1], ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            qq_RadioListTextData.setName("RadioListTextData");
            getBindingManager().bindComponent(qq_RadioListTextData, "radioListTextData", elements);
            if (qq_RadioListTextData.getSelectedIndex() == -1)
                qq_RadioListTextData.setSelectedIndex(0);
            // OPTIONAL UIutils.reloadLabelText(qq_RadioListTextData, mcat);
        }
        return qq_RadioListTextData;
    }

    public void setqq_RadioListTextData(RadioList value) {
        RadioList oldValue = qq_RadioListTextData;
        qq_RadioListTextData = value;
        this.qq_Listeners.firePropertyChange("qq_RadioListTextData", oldValue, value);
    }

    /**
     * qq_RLPrintBtn: transformed from: qqds_PushButton
     * TagId=27
     * isInherited=FALSE
     */
    public JButton getqq_RLPrintBtn() {
        if (qq_RLPrintBtn == null) {
            qq_RLPrintBtn = PushButtonFactory.newInstance("RLPrintBtn", "Print");
            qq_RLPrintBtn.setVerifyInputWhenFocusTarget(true);
            WidthPolicy.set(qq_RLPrintBtn, Constants.SP_NATURAL);
            HeightPolicy.set(qq_RLPrintBtn, Constants.SP_NATURAL);
            qq_RLPrintBtn.setMinimumSize(new Dimension(36, 23));
        }
        return qq_RLPrintBtn;
    }

    public void setqq_RLPrintBtn(JButton value) {
        JButton oldValue = qq_RLPrintBtn;
        qq_RLPrintBtn = value;
        this.qq_Listeners.firePropertyChange("qq_RLPrintBtn", oldValue, value);
    }

    /**
     * qq_RLSetBtn: transformed from: qqds_PushButton
     * TagId=28
     * isInherited=FALSE
     */
    public JButton getqq_RLSetBtn() {
        if (qq_RLSetBtn == null) {
            qq_RLSetBtn = PushButtonFactory.newInstance("RLSetBtn", "Set");
            qq_RLSetBtn.setVerifyInputWhenFocusTarget(true);
            WidthPolicy.set(qq_RLSetBtn, Constants.SP_NATURAL);
            HeightPolicy.set(qq_RLSetBtn, Constants.SP_NATURAL);
            qq_RLSetBtn.setMinimumSize(new Dimension(30, 23));
        }
        return qq_RLSetBtn;
    }

    public void setqq_RLSetBtn(JButton value) {
        JButton oldValue = qq_RLSetBtn;
        qq_RLSetBtn = value;
        this.qq_Listeners.firePropertyChange("qq_RLSetBtn", oldValue, value);
    }

    /**
     * qq_RadioListDynamicInteger: transformed from: qqds_RadioList
     * TagId=29
     * isInherited=FALSE
     */
    public RadioList getqq_RadioListDynamicInteger() {
        if (qq_RadioListDynamicInteger == null) {
            String[] names = {};
            qq_RadioListDynamicInteger = ListFieldFactory.newRadioList(Constants.FO_VERTICAL, "", names, 1, Constants.LP_CONSTANT);
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            qq_RadioListDynamicInteger.setName("RadioListDynamicInteger");
            getBindingManager().bindComponent(qq_RadioListDynamicInteger, "radioListDynamicInteger", elements);
            // OPTIONAL UIutils.reloadLabelText(qq_RadioListDynamicInteger, mcat);
        }
        return qq_RadioListDynamicInteger;
    }

    public void setqq_RadioListDynamicInteger(RadioList value) {
        RadioList oldValue = qq_RadioListDynamicInteger;
        qq_RadioListDynamicInteger = value;
        this.qq_Listeners.firePropertyChange("qq_RadioListDynamicInteger", oldValue, value);
    }

    /**
     * qq_RadioListDynamicString: transformed from: qqds_RadioList
     * TagId=30
     * isInherited=FALSE
     */
    public RadioList getqq_RadioListDynamicString() {
        if (qq_RadioListDynamicString == null) {
            String[] names = {};
            qq_RadioListDynamicString = ListFieldFactory.newRadioList(Constants.FO_VERTICAL, "", names, 1, Constants.LP_CONSTANT);
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            qq_RadioListDynamicString.setName("RadioListDynamicString");
            getBindingManager().bindComponent(qq_RadioListDynamicString, "radioListDynamicString", elements);
            // OPTIONAL UIutils.reloadLabelText(qq_RadioListDynamicString, mcat);
        }
        return qq_RadioListDynamicString;
    }

    public void setqq_RadioListDynamicString(RadioList value) {
        RadioList oldValue = qq_RadioListDynamicString;
        qq_RadioListDynamicString = value;
        this.qq_Listeners.firePropertyChange("qq_RadioListDynamicString", oldValue, value);
    }

    /**
     * qq_GridField22: transformed from: qqds_GridField
     * TagId=22
     * isInherited=FALSE
     * In forte this was a 5x2 grid field.
     * There are no cell margins set
     * The width policy is set to Natural, and the height policy is set to Natural.
     */
    protected void setqq_GridField22Properties() {
        qq_GridField22.setCollapsed(true);
        qq_GridField22.setHeightPolicy(Constants.SP_NATURAL);
        qq_GridField22.setWidthPolicy(Constants.SP_NATURAL);
        qq_GridField22.setBackground(null);
    }

    public GridField getqq_GridField22() {
        if (qq_GridField22 == null) {
            qq_GridField22 = CompoundFieldFactory.newGridField("qq_GridField22", true);
            setqq_GridField22Properties();
            qq_GridField22.setMinimumSize(new Dimension(313, 94));
            GridBagConstraints qq_gbc = new GridBagConstraints();
            qq_gbc.gridx = 0; // Column 1
            qq_gbc.gridy = 0; // Row 1
            qq_gbc.weightx = 0;
            qq_gbc.weighty = 0;
            qq_gbc.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField22.add( getqq_RadioListInteger(), qq_gbc );

            GridBagConstraints qq_gbc1 = new GridBagConstraints();
            qq_gbc1.gridx = 1; // Column 2
            qq_gbc1.gridy = 0; // Row 1
            qq_gbc1.weightx = 0;
            qq_gbc1.weighty = 0;
            qq_gbc1.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc1.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc1.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField22.add( getqq_RadioListIntegerNullable(), qq_gbc1 );

            GridBagConstraints qq_gbc2 = new GridBagConstraints();
            qq_gbc2.gridx = 2; // Column 3
            qq_gbc2.gridy = 0; // Row 1
            qq_gbc2.weightx = 0;
            qq_gbc2.weighty = 0;
            qq_gbc2.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc2.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc2.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField22.add( getqq_RadioListString(), qq_gbc2 );

            GridBagConstraints qq_gbc3 = new GridBagConstraints();
            qq_gbc3.gridx = 3; // Column 4
            qq_gbc3.gridy = 0; // Row 1
            qq_gbc3.weightx = 0;
            qq_gbc3.weighty = 0;
            qq_gbc3.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc3.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc3.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField22.add( getqq_RadioListTextData(), qq_gbc3 );

            GridBagConstraints qq_gbc4 = new GridBagConstraints();
            qq_gbc4.gridx = 4; // Column 5
            qq_gbc4.gridy = 0; // Row 1
            qq_gbc4.weightx = 0;
            qq_gbc4.weighty = 0;
            qq_gbc4.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc4.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc4.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField22.add( getqq_RLPrintBtn(), qq_gbc4 );

            GridBagConstraints qq_gbc5 = new GridBagConstraints();
            qq_gbc5.gridx = 0; // Column 1
            qq_gbc5.gridy = 1; // Row 2
            qq_gbc5.weightx = 0;
            qq_gbc5.weighty = 0;
            qq_gbc5.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc5.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc5.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField22.add( getqq_RadioListDynamicInteger(), qq_gbc5 );

            GridBagConstraints qq_gbc6 = new GridBagConstraints();
            qq_gbc6.gridx = 2; // Column 3
            qq_gbc6.gridy = 1; // Row 2
            qq_gbc6.weightx = 0;
            qq_gbc6.weighty = 0;
            qq_gbc6.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc6.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc6.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField22.add( getqq_RadioListDynamicString(), qq_gbc6 );

            GridBagConstraints qq_gbc7 = new GridBagConstraints();
            qq_gbc7.gridx = 4; // Column 5
            qq_gbc7.gridy = 1; // Row 2
            qq_gbc7.weightx = 0;
            qq_gbc7.weighty = 0;
            qq_gbc7.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc7.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc7.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField22.add( getqq_RLSetBtn(), qq_gbc7 );

        }
        return qq_GridField22;
    }

    public void setqq_GridField22(GridField value) {
        GridField oldValue = qq_GridField22;
        qq_GridField22 = value;
        this.qq_Listeners.firePropertyChange("qq_GridField22", oldValue, value);
    }

    /**
     * qq_Toggle1: transformed from: qqds_ToggleField
     * TagId=32
     * isInherited=FALSE
     */
    public JCheckBox getqq_Toggle1() {
        if (qq_Toggle1 == null) {
            qq_Toggle1 = ToggleFieldFactory.newToggleField("T1", "Toggle1");
            getBindingManager().bindComponent(qq_Toggle1, "toggle1");
            // OPTIONAL UIutils.reloadLabelText(qq_Toggle1, mcat);
        }
        return qq_Toggle1;
    }

    public void setqq_Toggle1(JCheckBox value) {
        JCheckBox oldValue = qq_Toggle1;
        qq_Toggle1 = value;
        this.qq_Listeners.firePropertyChange("qq_Toggle1", oldValue, value);
    }

    /**
     * qq_Toggle2: transformed from: qqds_ToggleField
     * TagId=33
     * isInherited=FALSE
     */
    public JCheckBox getqq_Toggle2() {
        if (qq_Toggle2 == null) {
            qq_Toggle2 = ToggleFieldFactory.newToggleField("T2", "Toggle2");
            getBindingManager().bindComponent(qq_Toggle2, "toggle2");
            // OPTIONAL UIutils.reloadLabelText(qq_Toggle2, mcat);
        }
        return qq_Toggle2;
    }

    public void setqq_Toggle2(JCheckBox value) {
        JCheckBox oldValue = qq_Toggle2;
        qq_Toggle2 = value;
        this.qq_Listeners.firePropertyChange("qq_Toggle2", oldValue, value);
    }

    /**
     * qq_Toggle3: transformed from: qqds_ToggleField
     * TagId=34
     * isInherited=FALSE
     */
    public JCheckBox getqq_Toggle3() {
        if (qq_Toggle3 == null) {
            qq_Toggle3 = ToggleFieldFactory.newToggleField("T3", "Toggle3");
            getBindingManager().bindComponent(qq_Toggle3, "toggle3");
            // OPTIONAL UIutils.reloadLabelText(qq_Toggle3, mcat);
        }
        return qq_Toggle3;
    }

    public void setqq_Toggle3(JCheckBox value) {
        JCheckBox oldValue = qq_Toggle3;
        qq_Toggle3 = value;
        this.qq_Listeners.firePropertyChange("qq_Toggle3", oldValue, value);
    }

    /**
     * qq_Toggle4: transformed from: qqds_ToggleField
     * TagId=35
     * isInherited=FALSE
     */
    public JCheckBox getqq_Toggle4() {
        if (qq_Toggle4 == null) {
            qq_Toggle4 = ToggleFieldFactory.newToggleField("T4", "Toggle4");
            getBindingManager().bindComponent(qq_Toggle4, "toggle4");
            // OPTIONAL UIutils.reloadLabelText(qq_Toggle4, mcat);
        }
        return qq_Toggle4;
    }

    public void setqq_Toggle4(JCheckBox value) {
        JCheckBox oldValue = qq_Toggle4;
        qq_Toggle4 = value;
        this.qq_Listeners.firePropertyChange("qq_Toggle4", oldValue, value);
    }

    /**
     * qq_Toggle5: transformed from: qqds_ToggleField
     * TagId=36
     * isInherited=FALSE
     */
    public JCheckBox getqq_Toggle5() {
        if (qq_Toggle5 == null) {
            qq_Toggle5 = ToggleFieldFactory.newToggleField("T5", "Toggle5");
            getBindingManager().bindComponent(qq_Toggle5, "toggle5");
            // OPTIONAL UIutils.reloadLabelText(qq_Toggle5, mcat);
        }
        return qq_Toggle5;
    }

    public void setqq_Toggle5(JCheckBox value) {
        JCheckBox oldValue = qq_Toggle5;
        qq_Toggle5 = value;
        this.qq_Listeners.firePropertyChange("qq_Toggle5", oldValue, value);
    }

    /**
     * qq_TogglePrintBtn: transformed from: qqds_PushButton
     * TagId=37
     * isInherited=FALSE
     */
    public JButton getqq_TogglePrintBtn() {
        if (qq_TogglePrintBtn == null) {
            qq_TogglePrintBtn = PushButtonFactory.newInstance("TogglePrintBtn", "Print");
            qq_TogglePrintBtn.setVerifyInputWhenFocusTarget(true);
            WidthPolicy.set(qq_TogglePrintBtn, Constants.SP_NATURAL);
            HeightPolicy.set(qq_TogglePrintBtn, Constants.SP_NATURAL);
            qq_TogglePrintBtn.setMinimumSize(new Dimension(36, 23));
        }
        return qq_TogglePrintBtn;
    }

    public void setqq_TogglePrintBtn(JButton value) {
        JButton oldValue = qq_TogglePrintBtn;
        qq_TogglePrintBtn = value;
        this.qq_Listeners.firePropertyChange("qq_TogglePrintBtn", oldValue, value);
    }

    /**
     * qq_ToggleSetBtn: transformed from: qqds_PushButton
     * TagId=38
     * isInherited=FALSE
     */
    public JButton getqq_ToggleSetBtn() {
        if (qq_ToggleSetBtn == null) {
            qq_ToggleSetBtn = PushButtonFactory.newInstance("ToggleSetBtn", "Set");
            qq_ToggleSetBtn.setVerifyInputWhenFocusTarget(true);
            WidthPolicy.set(qq_ToggleSetBtn, Constants.SP_NATURAL);
            HeightPolicy.set(qq_ToggleSetBtn, Constants.SP_NATURAL);
            qq_ToggleSetBtn.setMinimumSize(new Dimension(30, 23));
        }
        return qq_ToggleSetBtn;
    }

    public void setqq_ToggleSetBtn(JButton value) {
        JButton oldValue = qq_ToggleSetBtn;
        qq_ToggleSetBtn = value;
        this.qq_Listeners.firePropertyChange("qq_ToggleSetBtn", oldValue, value);
    }

    /**
     * qq_Toggle6: transformed from: qqds_ToggleField
     * TagId=39
     * isInherited=FALSE
     */
    public JCheckBox getqq_Toggle6() {
        if (qq_Toggle6 == null) {
            qq_Toggle6 = ToggleFieldFactory.newToggleField("T6", "Toggle6");
            getBindingManager().bindComponent(qq_Toggle6, "toggle6");
            // OPTIONAL UIutils.reloadLabelText(qq_Toggle6, mcat);
        }
        return qq_Toggle6;
    }

    public void setqq_Toggle6(JCheckBox value) {
        JCheckBox oldValue = qq_Toggle6;
        qq_Toggle6 = value;
        this.qq_Listeners.firePropertyChange("qq_Toggle6", oldValue, value);
    }

    /**
     * qq_Toggle7: transformed from: qqds_ToggleField
     * TagId=40
     * isInherited=FALSE
     */
    public JCheckBox getqq_Toggle7() {
        if (qq_Toggle7 == null) {
            qq_Toggle7 = ToggleFieldFactory.newToggleField("T7", "Toggle7");
            getBindingManager().bindComponent(qq_Toggle7, "toggle7");
            // OPTIONAL UIutils.reloadLabelText(qq_Toggle7, mcat);
        }
        return qq_Toggle7;
    }

    public void setqq_Toggle7(JCheckBox value) {
        JCheckBox oldValue = qq_Toggle7;
        qq_Toggle7 = value;
        this.qq_Listeners.firePropertyChange("qq_Toggle7", oldValue, value);
    }

    /**
     * qq_Toggle8: transformed from: qqds_ToggleField
     * TagId=41
     * isInherited=FALSE
     */
    public JCheckBox getqq_Toggle8() {
        if (qq_Toggle8 == null) {
            qq_Toggle8 = ToggleFieldFactory.newToggleField("T8", "Toggle8");
            getBindingManager().bindComponent(qq_Toggle8, "toggle8");
            // OPTIONAL UIutils.reloadLabelText(qq_Toggle8, mcat);
        }
        return qq_Toggle8;
    }

    public void setqq_Toggle8(JCheckBox value) {
        JCheckBox oldValue = qq_Toggle8;
        qq_Toggle8 = value;
        this.qq_Listeners.firePropertyChange("qq_Toggle8", oldValue, value);
    }

    /**
     * qq_Toggle9: transformed from: qqds_ToggleField
     * TagId=42
     * isInherited=FALSE
     */
    public JCheckBox getqq_Toggle9() {
        if (qq_Toggle9 == null) {
            qq_Toggle9 = ToggleFieldFactory.newToggleField("T9", "Toggle9");
            getBindingManager().bindComponent(qq_Toggle9, "toggle9");
            // OPTIONAL UIutils.reloadLabelText(qq_Toggle9, mcat);
        }
        return qq_Toggle9;
    }

    public void setqq_Toggle9(JCheckBox value) {
        JCheckBox oldValue = qq_Toggle9;
        qq_Toggle9 = value;
        this.qq_Listeners.firePropertyChange("qq_Toggle9", oldValue, value);
    }

    /**
     * qq_Toggle10: transformed from: qqds_ToggleField
     * TagId=43
     * isInherited=FALSE
     */
    public JCheckBox getqq_Toggle10() {
        if (qq_Toggle10 == null) {
            qq_Toggle10 = ToggleFieldFactory.newToggleField("T10", "Toggle10");
            getBindingManager().bindComponent(qq_Toggle10, "toggle10");
            // OPTIONAL UIutils.reloadLabelText(qq_Toggle10, mcat);
        }
        return qq_Toggle10;
    }

    public void setqq_Toggle10(JCheckBox value) {
        JCheckBox oldValue = qq_Toggle10;
        qq_Toggle10 = value;
        this.qq_Listeners.firePropertyChange("qq_Toggle10", oldValue, value);
    }

    /**
     * qq_GridField31: transformed from: qqds_GridField
     * TagId=31
     * isInherited=FALSE
     * In forte this was a 6x2 grid field.
     * There are no cell margins set
     * The width policy is set to Natural, and the height policy is set to Natural.
     */
    protected void setqq_GridField31Properties() {
        qq_GridField31.setCollapsed(true);
        qq_GridField31.setHeightPolicy(Constants.SP_NATURAL);
        qq_GridField31.setWidthPolicy(Constants.SP_NATURAL);
        qq_GridField31.setBackground(null);
    }

    public GridField getqq_GridField31() {
        if (qq_GridField31 == null) {
            qq_GridField31 = CompoundFieldFactory.newGridField("qq_GridField31", true);
            setqq_GridField31Properties();
            qq_GridField31.setMinimumSize(new Dimension(214, 50));
            GridBagConstraints qq_gbc = new GridBagConstraints();
            qq_gbc.gridx = 0; // Column 1
            qq_gbc.gridy = 0; // Row 1
            qq_gbc.weightx = 0;
            qq_gbc.weighty = 0;
            qq_gbc.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField31.add( getqq_Toggle1(), qq_gbc );

            GridBagConstraints qq_gbc1 = new GridBagConstraints();
            qq_gbc1.gridx = 1; // Column 2
            qq_gbc1.gridy = 0; // Row 1
            qq_gbc1.weightx = 0;
            qq_gbc1.weighty = 0;
            qq_gbc1.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc1.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc1.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField31.add( getqq_Toggle2(), qq_gbc1 );

            GridBagConstraints qq_gbc2 = new GridBagConstraints();
            qq_gbc2.gridx = 2; // Column 3
            qq_gbc2.gridy = 0; // Row 1
            qq_gbc2.weightx = 0;
            qq_gbc2.weighty = 0;
            qq_gbc2.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc2.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc2.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField31.add( getqq_Toggle3(), qq_gbc2 );

            GridBagConstraints qq_gbc3 = new GridBagConstraints();
            qq_gbc3.gridx = 3; // Column 4
            qq_gbc3.gridy = 0; // Row 1
            qq_gbc3.weightx = 0;
            qq_gbc3.weighty = 0;
            qq_gbc3.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc3.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc3.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField31.add( getqq_Toggle7(), qq_gbc3 );

            GridBagConstraints qq_gbc4 = new GridBagConstraints();
            qq_gbc4.gridx = 4; // Column 5
            qq_gbc4.gridy = 0; // Row 1
            qq_gbc4.weightx = 0;
            qq_gbc4.weighty = 0;
            qq_gbc4.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc4.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc4.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField31.add( getqq_Toggle9(), qq_gbc4 );

            GridBagConstraints qq_gbc5 = new GridBagConstraints();
            qq_gbc5.gridx = 5; // Column 6
            qq_gbc5.gridy = 0; // Row 1
            qq_gbc5.weightx = 0;
            qq_gbc5.weighty = 0;
            qq_gbc5.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc5.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc5.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField31.add( getqq_TogglePrintBtn(), qq_gbc5 );

            GridBagConstraints qq_gbc6 = new GridBagConstraints();
            qq_gbc6.gridx = 0; // Column 1
            qq_gbc6.gridy = 1; // Row 2
            qq_gbc6.weightx = 0;
            qq_gbc6.weighty = 0;
            qq_gbc6.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc6.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc6.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField31.add( getqq_Toggle6(), qq_gbc6 );

            GridBagConstraints qq_gbc7 = new GridBagConstraints();
            qq_gbc7.gridx = 1; // Column 2
            qq_gbc7.gridy = 1; // Row 2
            qq_gbc7.weightx = 0;
            qq_gbc7.weighty = 0;
            qq_gbc7.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc7.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc7.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField31.add( getqq_Toggle4(), qq_gbc7 );

            GridBagConstraints qq_gbc8 = new GridBagConstraints();
            qq_gbc8.gridx = 2; // Column 3
            qq_gbc8.gridy = 1; // Row 2
            qq_gbc8.weightx = 0;
            qq_gbc8.weighty = 0;
            qq_gbc8.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc8.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc8.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField31.add( getqq_Toggle5(), qq_gbc8 );

            GridBagConstraints qq_gbc9 = new GridBagConstraints();
            qq_gbc9.gridx = 3; // Column 4
            qq_gbc9.gridy = 1; // Row 2
            qq_gbc9.weightx = 0;
            qq_gbc9.weighty = 0;
            qq_gbc9.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc9.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc9.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField31.add( getqq_Toggle8(), qq_gbc9 );

            GridBagConstraints qq_gbc10 = new GridBagConstraints();
            qq_gbc10.gridx = 4; // Column 5
            qq_gbc10.gridy = 1; // Row 2
            qq_gbc10.weightx = 0;
            qq_gbc10.weighty = 0;
            qq_gbc10.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc10.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc10.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField31.add( getqq_Toggle10(), qq_gbc10 );

            GridBagConstraints qq_gbc11 = new GridBagConstraints();
            qq_gbc11.gridx = 5; // Column 6
            qq_gbc11.gridy = 1; // Row 2
            qq_gbc11.weightx = 0;
            qq_gbc11.weighty = 0;
            qq_gbc11.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc11.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc11.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
            qq_GridField31.add( getqq_ToggleSetBtn(), qq_gbc11 );

        }
        return qq_GridField31;
    }

    public void setqq_GridField31(GridField value) {
        GridField oldValue = qq_GridField31;
        qq_GridField31 = value;
        this.qq_Listeners.firePropertyChange("qq_GridField31", oldValue, value);
    }

    /**
     * qq_StaticScrollListSingleSelectInteger_sp: transformed from: qqds_ScrollList
     * TagId=45
     * isInherited=FALSE
     */
    public JScrollPane getqq_StaticScrollListSingleSelectInteger_sp() {
        if (qq_StaticScrollListSingleSelectInteger_sp == null) {
            qq_StaticScrollListSingleSelectInteger_sp = CompoundFieldFactory.newScrollPane();
            qq_StaticScrollListSingleSelectInteger_sp.setName("StaticScrollListSingleSelectInteger");
            qq_StaticScrollListSingleSelectInteger_sp.setViewportView(getqq_StaticScrollListSingleSelectInteger());
            qq_StaticScrollListSingleSelectInteger_sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            qq_StaticScrollListSingleSelectInteger_sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
            WidthPolicy.set(qq_StaticScrollListSingleSelectInteger_sp, Constants.SP_NATURAL);
            HeightPolicy.set(qq_StaticScrollListSingleSelectInteger_sp, Constants.SP_NATURAL);
            // OPTIONAL qq_StaticScrollListSingleSelectInteger_sp.setSize(new Dimension(65, 57));
            qq_StaticScrollListSingleSelectInteger_sp.setMinimumSize(new Dimension(65, 57));
            qq_StaticScrollListSingleSelectInteger_sp.setPreferredSize(new Dimension(65, 57));
        }
        return qq_StaticScrollListSingleSelectInteger_sp;
    }

    public void setqq_StaticScrollListSingleSelectInteger_sp(JScrollPane value) {
        JScrollPane oldValue = qq_StaticScrollListSingleSelectInteger_sp;
        qq_StaticScrollListSingleSelectInteger_sp = value;
        this.qq_Listeners.firePropertyChange("qq_StaticScrollListSingleSelectInteger_sp", oldValue, value);
    }

    /**
     * qq_StaticScrollListSingleSelectInteger: transformed from: qqds_ScrollList
     * TagId=45
     * isInherited=FALSE
     */
    public ScrollList getqq_StaticScrollListSingleSelectInteger() {
        if (qq_StaticScrollListSingleSelectInteger == null) {
            qq_StaticScrollListSingleSelectInteger = ListFieldFactory.newScrollList();
            qq_StaticScrollListSingleSelectInteger.setName("StaticScrollListSingleSelectInteger");
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            elements.add( new ListElement( 1, "One", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 2, "Two", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 3, "Three", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 4, "Four", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            getBindingManager().bindComponent(qq_StaticScrollListSingleSelectInteger, "staticScrollListSingleSelectInteger", elements, true);
            qq_StaticScrollListSingleSelectInteger.addListSelectionListener((ScrollListModel)qq_StaticScrollListSingleSelectInteger.getModel());
        }
        return qq_StaticScrollListSingleSelectInteger;
    }

    public void setqq_StaticScrollListSingleSelectInteger(ScrollList value) {
        ScrollList oldValue = qq_StaticScrollListSingleSelectInteger;
        qq_StaticScrollListSingleSelectInteger = value;
        this.qq_Listeners.firePropertyChange("qq_StaticScrollListSingleSelectInteger", oldValue, value);
    }

    /**
     * qq_StaticScrollListSingleSelectString_sp: transformed from: qqds_ScrollList
     * TagId=46
     * isInherited=FALSE
     */
    public JScrollPane getqq_StaticScrollListSingleSelectString_sp() {
        if (qq_StaticScrollListSingleSelectString_sp == null) {
            qq_StaticScrollListSingleSelectString_sp = CompoundFieldFactory.newScrollPane();
            qq_StaticScrollListSingleSelectString_sp.setName("StaticScrollListSingleSelectString");
            qq_StaticScrollListSingleSelectString_sp.setViewportView(getqq_StaticScrollListSingleSelectString());
            qq_StaticScrollListSingleSelectString_sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            qq_StaticScrollListSingleSelectString_sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
            WidthPolicy.set(qq_StaticScrollListSingleSelectString_sp, Constants.SP_NATURAL);
            HeightPolicy.set(qq_StaticScrollListSingleSelectString_sp, Constants.SP_NATURAL);
            // OPTIONAL qq_StaticScrollListSingleSelectString_sp.setSize(new Dimension(65, 57));
            qq_StaticScrollListSingleSelectString_sp.setMinimumSize(new Dimension(65, 57));
            qq_StaticScrollListSingleSelectString_sp.setPreferredSize(new Dimension(65, 57));
        }
        return qq_StaticScrollListSingleSelectString_sp;
    }

    public void setqq_StaticScrollListSingleSelectString_sp(JScrollPane value) {
        JScrollPane oldValue = qq_StaticScrollListSingleSelectString_sp;
        qq_StaticScrollListSingleSelectString_sp = value;
        this.qq_Listeners.firePropertyChange("qq_StaticScrollListSingleSelectString_sp", oldValue, value);
    }

    /**
     * qq_StaticScrollListSingleSelectString: transformed from: qqds_ScrollList
     * TagId=46
     * isInherited=FALSE
     */
    public ScrollList getqq_StaticScrollListSingleSelectString() {
        if (qq_StaticScrollListSingleSelectString == null) {
            qq_StaticScrollListSingleSelectString = ListFieldFactory.newScrollList();
            qq_StaticScrollListSingleSelectString.setName("StaticScrollListSingleSelectString");
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            elements.add( new ListElement( 1, "One", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 2, "Two", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 3, "Three", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 4, "Four", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            getBindingManager().bindComponent(qq_StaticScrollListSingleSelectString, "staticScrollListSingleSelectString", elements, true);
            qq_StaticScrollListSingleSelectString.addListSelectionListener((ScrollListModel)qq_StaticScrollListSingleSelectString.getModel());
        }
        return qq_StaticScrollListSingleSelectString;
    }

    public void setqq_StaticScrollListSingleSelectString(ScrollList value) {
        ScrollList oldValue = qq_StaticScrollListSingleSelectString;
        qq_StaticScrollListSingleSelectString = value;
        this.qq_Listeners.firePropertyChange("qq_StaticScrollListSingleSelectString", oldValue, value);
    }

    /**
     * qq_StaticScrollListSingleSelectIntegerData_sp: transformed from: qqds_ScrollList
     * TagId=47
     * isInherited=FALSE
     */
    public JScrollPane getqq_StaticScrollListSingleSelectIntegerData_sp() {
        if (qq_StaticScrollListSingleSelectIntegerData_sp == null) {
            qq_StaticScrollListSingleSelectIntegerData_sp = CompoundFieldFactory.newScrollPane();
            qq_StaticScrollListSingleSelectIntegerData_sp.setName("StaticScrollListSingleSelectIntegerData");
            qq_StaticScrollListSingleSelectIntegerData_sp.setViewportView(getqq_StaticScrollListSingleSelectIntegerData());
            qq_StaticScrollListSingleSelectIntegerData_sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            qq_StaticScrollListSingleSelectIntegerData_sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
            WidthPolicy.set(qq_StaticScrollListSingleSelectIntegerData_sp, Constants.SP_NATURAL);
            HeightPolicy.set(qq_StaticScrollListSingleSelectIntegerData_sp, Constants.SP_NATURAL);
            // OPTIONAL qq_StaticScrollListSingleSelectIntegerData_sp.setSize(new Dimension(65, 57));
            qq_StaticScrollListSingleSelectIntegerData_sp.setMinimumSize(new Dimension(65, 57));
            qq_StaticScrollListSingleSelectIntegerData_sp.setPreferredSize(new Dimension(65, 57));
        }
        return qq_StaticScrollListSingleSelectIntegerData_sp;
    }

    public void setqq_StaticScrollListSingleSelectIntegerData_sp(JScrollPane value) {
        JScrollPane oldValue = qq_StaticScrollListSingleSelectIntegerData_sp;
        qq_StaticScrollListSingleSelectIntegerData_sp = value;
        this.qq_Listeners.firePropertyChange("qq_StaticScrollListSingleSelectIntegerData_sp", oldValue, value);
    }

    /**
     * qq_StaticScrollListSingleSelectIntegerData: transformed from: qqds_ScrollList
     * TagId=47
     * isInherited=FALSE
     */
    public ScrollList getqq_StaticScrollListSingleSelectIntegerData() {
        if (qq_StaticScrollListSingleSelectIntegerData == null) {
            qq_StaticScrollListSingleSelectIntegerData = ListFieldFactory.newScrollList();
            qq_StaticScrollListSingleSelectIntegerData.setName("StaticScrollListSingleSelectIntegerData");
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            elements.add( new ListElement( 1, "One", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 2, "Two", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 3, "Three", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 4, "Four", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            getBindingManager().bindComponent(qq_StaticScrollListSingleSelectIntegerData, "staticScrollListSingleSelectIntegerData", elements, true);
            qq_StaticScrollListSingleSelectIntegerData.addListSelectionListener((ScrollListModel)qq_StaticScrollListSingleSelectIntegerData.getModel());
        }
        return qq_StaticScrollListSingleSelectIntegerData;
    }

    public void setqq_StaticScrollListSingleSelectIntegerData(ScrollList value) {
        ScrollList oldValue = qq_StaticScrollListSingleSelectIntegerData;
        qq_StaticScrollListSingleSelectIntegerData = value;
        this.qq_Listeners.firePropertyChange("qq_StaticScrollListSingleSelectIntegerData", oldValue, value);
    }

    /**
     * qq_StaticScrollListSingleSelectTextData_sp: transformed from: qqds_ScrollList
     * TagId=48
     * isInherited=FALSE
     */
    public JScrollPane getqq_StaticScrollListSingleSelectTextData_sp() {
        if (qq_StaticScrollListSingleSelectTextData_sp == null) {
            qq_StaticScrollListSingleSelectTextData_sp = CompoundFieldFactory.newScrollPane();
            qq_StaticScrollListSingleSelectTextData_sp.setName("StaticScrollListSingleSelectTextData");
            qq_StaticScrollListSingleSelectTextData_sp.setViewportView(getqq_StaticScrollListSingleSelectTextData());
            qq_StaticScrollListSingleSelectTextData_sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            qq_StaticScrollListSingleSelectTextData_sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
            WidthPolicy.set(qq_StaticScrollListSingleSelectTextData_sp, Constants.SP_NATURAL);
            HeightPolicy.set(qq_StaticScrollListSingleSelectTextData_sp, Constants.SP_NATURAL);
            // OPTIONAL qq_StaticScrollListSingleSelectTextData_sp.setSize(new Dimension(65, 57));
            qq_StaticScrollListSingleSelectTextData_sp.setMinimumSize(new Dimension(65, 57));
            qq_StaticScrollListSingleSelectTextData_sp.setPreferredSize(new Dimension(65, 57));
        }
        return qq_StaticScrollListSingleSelectTextData_sp;
    }

    public void setqq_StaticScrollListSingleSelectTextData_sp(JScrollPane value) {
        JScrollPane oldValue = qq_StaticScrollListSingleSelectTextData_sp;
        qq_StaticScrollListSingleSelectTextData_sp = value;
        this.qq_Listeners.firePropertyChange("qq_StaticScrollListSingleSelectTextData_sp", oldValue, value);
    }

    /**
     * qq_StaticScrollListSingleSelectTextData: transformed from: qqds_ScrollList
     * TagId=48
     * isInherited=FALSE
     */
    public ScrollList getqq_StaticScrollListSingleSelectTextData() {
        if (qq_StaticScrollListSingleSelectTextData == null) {
            qq_StaticScrollListSingleSelectTextData = ListFieldFactory.newScrollList();
            qq_StaticScrollListSingleSelectTextData.setName("StaticScrollListSingleSelectTextData");
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            elements.add( new ListElement( 1, "One", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 2, "Two", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 3, "Three", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 4, "Four", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            getBindingManager().bindComponent(qq_StaticScrollListSingleSelectTextData, "staticScrollListSingleSelectTextData", elements, true);
            qq_StaticScrollListSingleSelectTextData.addListSelectionListener((ScrollListModel)qq_StaticScrollListSingleSelectTextData.getModel());
        }
        return qq_StaticScrollListSingleSelectTextData;
    }

    public void setqq_StaticScrollListSingleSelectTextData(ScrollList value) {
        ScrollList oldValue = qq_StaticScrollListSingleSelectTextData;
        qq_StaticScrollListSingleSelectTextData = value;
        this.qq_Listeners.firePropertyChange("qq_StaticScrollListSingleSelectTextData", oldValue, value);
    }

    /**
     * qq_StaticScrollListMultiSelectInteger_sp: transformed from: qqds_ScrollList
     * TagId=49
     * isInherited=FALSE
     */
    public JScrollPane getqq_StaticScrollListMultiSelectInteger_sp() {
        if (qq_StaticScrollListMultiSelectInteger_sp == null) {
            qq_StaticScrollListMultiSelectInteger_sp = CompoundFieldFactory.newScrollPane();
            qq_StaticScrollListMultiSelectInteger_sp.setName("StaticScrollListMultiSelectInteger");
            qq_StaticScrollListMultiSelectInteger_sp.setViewportView(getqq_StaticScrollListMultiSelectInteger());
            qq_StaticScrollListMultiSelectInteger_sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            qq_StaticScrollListMultiSelectInteger_sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
            WidthPolicy.set(qq_StaticScrollListMultiSelectInteger_sp, Constants.SP_NATURAL);
            HeightPolicy.set(qq_StaticScrollListMultiSelectInteger_sp, Constants.SP_NATURAL);
            // OPTIONAL qq_StaticScrollListMultiSelectInteger_sp.setSize(new Dimension(65, 57));
            qq_StaticScrollListMultiSelectInteger_sp.setMinimumSize(new Dimension(65, 57));
            qq_StaticScrollListMultiSelectInteger_sp.setPreferredSize(new Dimension(65, 57));
        }
        return qq_StaticScrollListMultiSelectInteger_sp;
    }

    public void setqq_StaticScrollListMultiSelectInteger_sp(JScrollPane value) {
        JScrollPane oldValue = qq_StaticScrollListMultiSelectInteger_sp;
        qq_StaticScrollListMultiSelectInteger_sp = value;
        this.qq_Listeners.firePropertyChange("qq_StaticScrollListMultiSelectInteger_sp", oldValue, value);
    }

    /**
     * qq_StaticScrollListMultiSelectInteger: transformed from: qqds_ScrollList
     * TagId=49
     * isInherited=FALSE
     */
    public ScrollList getqq_StaticScrollListMultiSelectInteger() {
        if (qq_StaticScrollListMultiSelectInteger == null) {
            qq_StaticScrollListMultiSelectInteger = ListFieldFactory.newScrollList();
            qq_StaticScrollListMultiSelectInteger.setName("StaticScrollListMultiSelectInteger");
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            elements.add( new ListElement( 1, "One", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 2, "Two", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 3, "Three", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            elements.add( new ListElement( 4, "Four", ListElement.qq_Resolver.cINTEGERVALUE_TEXTVALUE ) );
            getBindingManager().bindComponent(qq_StaticScrollListMultiSelectInteger, "staticScrollListMultiSelectInteger", elements, false);
            qq_StaticScrollListMultiSelectInteger.addListSelectionListener((ScrollListModel)qq_StaticScrollListMultiSelectInteger.getModel());
        }
        return qq_StaticScrollListMultiSelectInteger;
    }

    public void setqq_StaticScrollListMultiSelectInteger(ScrollList value) {
        ScrollList oldValue = qq_StaticScrollListMultiSelectInteger;
        qq_StaticScrollListMultiSelectInteger = value;
        this.qq_Listeners.firePropertyChange("qq_StaticScrollListMultiSelectInteger", oldValue, value);
    }

    /**
     * qq_DynamicScrollListSingleSelectInteger_sp: transformed from: qqds_ScrollList
     * TagId=50
     * isInherited=FALSE
     */
    public JScrollPane getqq_DynamicScrollListSingleSelectInteger_sp() {
        if (qq_DynamicScrollListSingleSelectInteger_sp == null) {
            qq_DynamicScrollListSingleSelectInteger_sp = CompoundFieldFactory.newScrollPane();
            qq_DynamicScrollListSingleSelectInteger_sp.setName("DynamicScrollListSingleSelectInteger");
            qq_DynamicScrollListSingleSelectInteger_sp.setViewportView(getqq_DynamicScrollListSingleSelectInteger());
            qq_DynamicScrollListSingleSelectInteger_sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            qq_DynamicScrollListSingleSelectInteger_sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
            WidthPolicy.set(qq_DynamicScrollListSingleSelectInteger_sp, Constants.SP_NATURAL);
            HeightPolicy.set(qq_DynamicScrollListSingleSelectInteger_sp, Constants.SP_NATURAL);
            // OPTIONAL qq_DynamicScrollListSingleSelectInteger_sp.setSize(new Dimension(85, 57));
            qq_DynamicScrollListSingleSelectInteger_sp.setMinimumSize(new Dimension(85, 57));
            qq_DynamicScrollListSingleSelectInteger_sp.setPreferredSize(new Dimension(85, 57));
        }
        return qq_DynamicScrollListSingleSelectInteger_sp;
    }

    public void setqq_DynamicScrollListSingleSelectInteger_sp(JScrollPane value) {
        JScrollPane oldValue = qq_DynamicScrollListSingleSelectInteger_sp;
        qq_DynamicScrollListSingleSelectInteger_sp = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicScrollListSingleSelectInteger_sp", oldValue, value);
    }

    /**
     * qq_DynamicScrollListSingleSelectInteger: transformed from: qqds_ScrollList
     * TagId=50
     * isInherited=FALSE
     */
    public ScrollList getqq_DynamicScrollListSingleSelectInteger() {
        if (qq_DynamicScrollListSingleSelectInteger == null) {
            qq_DynamicScrollListSingleSelectInteger = ListFieldFactory.newScrollList();
            qq_DynamicScrollListSingleSelectInteger.setName("DynamicScrollListSingleSelectInteger");
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            getBindingManager().bindComponent(qq_DynamicScrollListSingleSelectInteger, "dynamicScrollListSingleSelectInteger", elements, true);
            qq_DynamicScrollListSingleSelectInteger.addListSelectionListener((ScrollListModel)qq_DynamicScrollListSingleSelectInteger.getModel());
        }
        return qq_DynamicScrollListSingleSelectInteger;
    }

    public void setqq_DynamicScrollListSingleSelectInteger(ScrollList value) {
        ScrollList oldValue = qq_DynamicScrollListSingleSelectInteger;
        qq_DynamicScrollListSingleSelectInteger = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicScrollListSingleSelectInteger", oldValue, value);
    }

    /**
     * qq_DynamicScrollListSingleSelectString_sp: transformed from: qqds_ScrollList
     * TagId=51
     * isInherited=FALSE
     */
    public JScrollPane getqq_DynamicScrollListSingleSelectString_sp() {
        if (qq_DynamicScrollListSingleSelectString_sp == null) {
            qq_DynamicScrollListSingleSelectString_sp = CompoundFieldFactory.newScrollPane();
            qq_DynamicScrollListSingleSelectString_sp.setName("DynamicScrollListSingleSelectString");
            qq_DynamicScrollListSingleSelectString_sp.setViewportView(getqq_DynamicScrollListSingleSelectString());
            qq_DynamicScrollListSingleSelectString_sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            qq_DynamicScrollListSingleSelectString_sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
            WidthPolicy.set(qq_DynamicScrollListSingleSelectString_sp, Constants.SP_NATURAL);
            HeightPolicy.set(qq_DynamicScrollListSingleSelectString_sp, Constants.SP_NATURAL);
            // OPTIONAL qq_DynamicScrollListSingleSelectString_sp.setSize(new Dimension(85, 57));
            qq_DynamicScrollListSingleSelectString_sp.setMinimumSize(new Dimension(85, 57));
            qq_DynamicScrollListSingleSelectString_sp.setPreferredSize(new Dimension(85, 57));
        }
        return qq_DynamicScrollListSingleSelectString_sp;
    }

    public void setqq_DynamicScrollListSingleSelectString_sp(JScrollPane value) {
        JScrollPane oldValue = qq_DynamicScrollListSingleSelectString_sp;
        qq_DynamicScrollListSingleSelectString_sp = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicScrollListSingleSelectString_sp", oldValue, value);
    }

    /**
     * qq_DynamicScrollListSingleSelectString: transformed from: qqds_ScrollList
     * TagId=51
     * isInherited=FALSE
     */
    public ScrollList getqq_DynamicScrollListSingleSelectString() {
        if (qq_DynamicScrollListSingleSelectString == null) {
            qq_DynamicScrollListSingleSelectString = ListFieldFactory.newScrollList();
            qq_DynamicScrollListSingleSelectString.setName("DynamicScrollListSingleSelectString");
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            getBindingManager().bindComponent(qq_DynamicScrollListSingleSelectString, "dynamicScrollListSingleSelectString", elements, true);
            qq_DynamicScrollListSingleSelectString.addListSelectionListener((ScrollListModel)qq_DynamicScrollListSingleSelectString.getModel());
        }
        return qq_DynamicScrollListSingleSelectString;
    }

    public void setqq_DynamicScrollListSingleSelectString(ScrollList value) {
        ScrollList oldValue = qq_DynamicScrollListSingleSelectString;
        qq_DynamicScrollListSingleSelectString = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicScrollListSingleSelectString", oldValue, value);
    }

    /**
     * qq_DynamicScrollListSingleSelectIntegerData_sp: transformed from: qqds_ScrollList
     * TagId=52
     * isInherited=FALSE
     */
    public JScrollPane getqq_DynamicScrollListSingleSelectIntegerData_sp() {
        if (qq_DynamicScrollListSingleSelectIntegerData_sp == null) {
            qq_DynamicScrollListSingleSelectIntegerData_sp = CompoundFieldFactory.newScrollPane();
            qq_DynamicScrollListSingleSelectIntegerData_sp.setName("DynamicScrollListSingleSelectIntegerData");
            qq_DynamicScrollListSingleSelectIntegerData_sp.setViewportView(getqq_DynamicScrollListSingleSelectIntegerData());
            qq_DynamicScrollListSingleSelectIntegerData_sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            qq_DynamicScrollListSingleSelectIntegerData_sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
            WidthPolicy.set(qq_DynamicScrollListSingleSelectIntegerData_sp, Constants.SP_NATURAL);
            HeightPolicy.set(qq_DynamicScrollListSingleSelectIntegerData_sp, Constants.SP_NATURAL);
            // OPTIONAL qq_DynamicScrollListSingleSelectIntegerData_sp.setSize(new Dimension(85, 57));
            qq_DynamicScrollListSingleSelectIntegerData_sp.setMinimumSize(new Dimension(85, 57));
            qq_DynamicScrollListSingleSelectIntegerData_sp.setPreferredSize(new Dimension(85, 57));
        }
        return qq_DynamicScrollListSingleSelectIntegerData_sp;
    }

    public void setqq_DynamicScrollListSingleSelectIntegerData_sp(JScrollPane value) {
        JScrollPane oldValue = qq_DynamicScrollListSingleSelectIntegerData_sp;
        qq_DynamicScrollListSingleSelectIntegerData_sp = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicScrollListSingleSelectIntegerData_sp", oldValue, value);
    }

    /**
     * qq_DynamicScrollListSingleSelectIntegerData: transformed from: qqds_ScrollList
     * TagId=52
     * isInherited=FALSE
     */
    public ScrollList getqq_DynamicScrollListSingleSelectIntegerData() {
        if (qq_DynamicScrollListSingleSelectIntegerData == null) {
            qq_DynamicScrollListSingleSelectIntegerData = ListFieldFactory.newScrollList();
            qq_DynamicScrollListSingleSelectIntegerData.setName("DynamicScrollListSingleSelectIntegerData");
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            getBindingManager().bindComponent(qq_DynamicScrollListSingleSelectIntegerData, "dynamicScrollListSingleSelectIntegerData", elements, true);
            qq_DynamicScrollListSingleSelectIntegerData.addListSelectionListener((ScrollListModel)qq_DynamicScrollListSingleSelectIntegerData.getModel());
        }
        return qq_DynamicScrollListSingleSelectIntegerData;
    }

    public void setqq_DynamicScrollListSingleSelectIntegerData(ScrollList value) {
        ScrollList oldValue = qq_DynamicScrollListSingleSelectIntegerData;
        qq_DynamicScrollListSingleSelectIntegerData = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicScrollListSingleSelectIntegerData", oldValue, value);
    }

    /**
     * qq_DynamicScrollListSingleSelectTextData_sp: transformed from: qqds_ScrollList
     * TagId=53
     * isInherited=FALSE
     */
    public JScrollPane getqq_DynamicScrollListSingleSelectTextData_sp() {
        if (qq_DynamicScrollListSingleSelectTextData_sp == null) {
            qq_DynamicScrollListSingleSelectTextData_sp = CompoundFieldFactory.newScrollPane();
            qq_DynamicScrollListSingleSelectTextData_sp.setName("DynamicScrollListSingleSelectTextData");
            qq_DynamicScrollListSingleSelectTextData_sp.setViewportView(getqq_DynamicScrollListSingleSelectTextData());
            qq_DynamicScrollListSingleSelectTextData_sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            qq_DynamicScrollListSingleSelectTextData_sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
            WidthPolicy.set(qq_DynamicScrollListSingleSelectTextData_sp, Constants.SP_NATURAL);
            HeightPolicy.set(qq_DynamicScrollListSingleSelectTextData_sp, Constants.SP_NATURAL);
            // OPTIONAL qq_DynamicScrollListSingleSelectTextData_sp.setSize(new Dimension(85, 57));
            qq_DynamicScrollListSingleSelectTextData_sp.setMinimumSize(new Dimension(85, 57));
            qq_DynamicScrollListSingleSelectTextData_sp.setPreferredSize(new Dimension(85, 57));
        }
        return qq_DynamicScrollListSingleSelectTextData_sp;
    }

    public void setqq_DynamicScrollListSingleSelectTextData_sp(JScrollPane value) {
        JScrollPane oldValue = qq_DynamicScrollListSingleSelectTextData_sp;
        qq_DynamicScrollListSingleSelectTextData_sp = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicScrollListSingleSelectTextData_sp", oldValue, value);
    }

    /**
     * qq_DynamicScrollListSingleSelectTextData: transformed from: qqds_ScrollList
     * TagId=53
     * isInherited=FALSE
     */
    public ScrollList getqq_DynamicScrollListSingleSelectTextData() {
        if (qq_DynamicScrollListSingleSelectTextData == null) {
            qq_DynamicScrollListSingleSelectTextData = ListFieldFactory.newScrollList();
            qq_DynamicScrollListSingleSelectTextData.setName("DynamicScrollListSingleSelectTextData");
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            getBindingManager().bindComponent(qq_DynamicScrollListSingleSelectTextData, "dynamicScrollListSingleSelectTextData", elements, true);
            qq_DynamicScrollListSingleSelectTextData.addListSelectionListener((ScrollListModel)qq_DynamicScrollListSingleSelectTextData.getModel());
        }
        return qq_DynamicScrollListSingleSelectTextData;
    }

    public void setqq_DynamicScrollListSingleSelectTextData(ScrollList value) {
        ScrollList oldValue = qq_DynamicScrollListSingleSelectTextData;
        qq_DynamicScrollListSingleSelectTextData = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicScrollListSingleSelectTextData", oldValue, value);
    }

    /**
     * qq_DynamicScrollListMultiSelectInteger_sp: transformed from: qqds_ScrollList
     * TagId=54
     * isInherited=FALSE
     */
    public JScrollPane getqq_DynamicScrollListMultiSelectInteger_sp() {
        if (qq_DynamicScrollListMultiSelectInteger_sp == null) {
            qq_DynamicScrollListMultiSelectInteger_sp = CompoundFieldFactory.newScrollPane();
            qq_DynamicScrollListMultiSelectInteger_sp.setName("DynamicScrollListMultiSelectInteger");
            qq_DynamicScrollListMultiSelectInteger_sp.setViewportView(getqq_DynamicScrollListMultiSelectInteger());
            qq_DynamicScrollListMultiSelectInteger_sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            qq_DynamicScrollListMultiSelectInteger_sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
            WidthPolicy.set(qq_DynamicScrollListMultiSelectInteger_sp, Constants.SP_NATURAL);
            HeightPolicy.set(qq_DynamicScrollListMultiSelectInteger_sp, Constants.SP_NATURAL);
            // OPTIONAL qq_DynamicScrollListMultiSelectInteger_sp.setSize(new Dimension(85, 57));
            qq_DynamicScrollListMultiSelectInteger_sp.setMinimumSize(new Dimension(85, 57));
            qq_DynamicScrollListMultiSelectInteger_sp.setPreferredSize(new Dimension(85, 57));
        }
        return qq_DynamicScrollListMultiSelectInteger_sp;
    }

    public void setqq_DynamicScrollListMultiSelectInteger_sp(JScrollPane value) {
        JScrollPane oldValue = qq_DynamicScrollListMultiSelectInteger_sp;
        qq_DynamicScrollListMultiSelectInteger_sp = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicScrollListMultiSelectInteger_sp", oldValue, value);
    }

    /**
     * qq_DynamicScrollListMultiSelectInteger: transformed from: qqds_ScrollList
     * TagId=54
     * isInherited=FALSE
     */
    public ScrollList getqq_DynamicScrollListMultiSelectInteger() {
        if (qq_DynamicScrollListMultiSelectInteger == null) {
            qq_DynamicScrollListMultiSelectInteger = ListFieldFactory.newScrollList();
            qq_DynamicScrollListMultiSelectInteger.setName("DynamicScrollListMultiSelectInteger");
            Array_Of_ListElement<ListElement> elements = new Array_Of_ListElement<ListElement>();
            getBindingManager().bindComponent(qq_DynamicScrollListMultiSelectInteger, "dynamicScrollListMultiSelectInteger", elements, false);
            qq_DynamicScrollListMultiSelectInteger.addListSelectionListener((ScrollListModel)qq_DynamicScrollListMultiSelectInteger.getModel());
        }
        return qq_DynamicScrollListMultiSelectInteger;
    }

    public void setqq_DynamicScrollListMultiSelectInteger(ScrollList value) {
        ScrollList oldValue = qq_DynamicScrollListMultiSelectInteger;
        qq_DynamicScrollListMultiSelectInteger = value;
        this.qq_Listeners.firePropertyChange("qq_DynamicScrollListMultiSelectInteger", oldValue, value);
    }

    /**
     * qq_SLPrintBtn: transformed from: qqds_PushButton
     * TagId=55
     * isInherited=FALSE
     */
    public JButton getqq_SLPrintBtn() {
        if (qq_SLPrintBtn == null) {
            qq_SLPrintBtn = PushButtonFactory.newInstance("SLPrintBtn", "Print");
            qq_SLPrintBtn.setVerifyInputWhenFocusTarget(true);
            WidthPolicy.set(qq_SLPrintBtn, Constants.SP_NATURAL);
            HeightPolicy.set(qq_SLPrintBtn, Constants.SP_NATURAL);
            qq_SLPrintBtn.setMinimumSize(new Dimension(36, 23));
        }
        return qq_SLPrintBtn;
    }

    public void setqq_SLPrintBtn(JButton value) {
        JButton oldValue = qq_SLPrintBtn;
        qq_SLPrintBtn = value;
        this.qq_Listeners.firePropertyChange("qq_SLPrintBtn", oldValue, value);
    }

    /**
     * qq_SLSetBtn: transformed from: qqds_PushButton
     * TagId=56
     * isInherited=FALSE
     */
    public JButton getqq_SLSetBtn() {
        if (qq_SLSetBtn == null) {
            qq_SLSetBtn = PushButtonFactory.newInstance("SLSetBtn", "Set");
            qq_SLSetBtn.setVerifyInputWhenFocusTarget(true);
            WidthPolicy.set(qq_SLSetBtn, Constants.SP_NATURAL);
            HeightPolicy.set(qq_SLSetBtn, Constants.SP_NATURAL);
            qq_SLSetBtn.setMinimumSize(new Dimension(30, 23));
        }
        return qq_SLSetBtn;
    }

    public void setqq_SLSetBtn(JButton value) {
        JButton oldValue = qq_SLSetBtn;
        qq_SLSetBtn = value;
        this.qq_Listeners.firePropertyChange("qq_SLSetBtn", oldValue, value);
    }

    /**
     * qq_GridField44: transformed from: qqds_GridField
     * TagId=44
     * isInherited=FALSE
     * In forte this was a 6x2 grid field.
     * The cell margins are all 50 mils
     * The width policy is set to Natural, and the height policy is set to Natural.
     */
    protected void setqq_GridField44Properties() {
        qq_GridField44.setCellTopMargin(25);
        qq_GridField44.setCellBottomMargin(25);
        qq_GridField44.setCellLeftMargin(25);
        qq_GridField44.setCellRightMargin(25);
        qq_GridField44.setCollapsed(true);
        qq_GridField44.setHeightPolicy(Constants.SP_NATURAL);
        qq_GridField44.setWidthPolicy(Constants.SP_NATURAL);
        qq_GridField44.setBackground(null);
    }

    public GridField getqq_GridField44() {
        if (qq_GridField44 == null) {
            qq_GridField44 = CompoundFieldFactory.newGridField("qq_GridField44", true);
            setqq_GridField44Properties();
            qq_GridField44.setMinimumSize(new Dimension(481, 138));
            GridBagConstraints qq_gbc = new GridBagConstraints();
            qq_gbc.gridx = 0; // Column 1
            qq_gbc.gridy = 0; // Row 1
            qq_gbc.weightx = 0;
            qq_gbc.weighty = 0;
            qq_gbc.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField44.add( getqq_StaticScrollListSingleSelectInteger_sp(), qq_gbc );

            GridBagConstraints qq_gbc1 = new GridBagConstraints();
            qq_gbc1.gridx = 1; // Column 2
            qq_gbc1.gridy = 0; // Row 1
            qq_gbc1.weightx = 0;
            qq_gbc1.weighty = 0;
            qq_gbc1.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc1.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc1.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField44.add( getqq_StaticScrollListSingleSelectString_sp(), qq_gbc1 );

            GridBagConstraints qq_gbc2 = new GridBagConstraints();
            qq_gbc2.gridx = 2; // Column 3
            qq_gbc2.gridy = 0; // Row 1
            qq_gbc2.weightx = 0;
            qq_gbc2.weighty = 0;
            qq_gbc2.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc2.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc2.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField44.add( getqq_StaticScrollListSingleSelectIntegerData_sp(), qq_gbc2 );

            GridBagConstraints qq_gbc3 = new GridBagConstraints();
            qq_gbc3.gridx = 3; // Column 4
            qq_gbc3.gridy = 0; // Row 1
            qq_gbc3.weightx = 0;
            qq_gbc3.weighty = 0;
            qq_gbc3.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc3.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc3.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField44.add( getqq_StaticScrollListSingleSelectTextData_sp(), qq_gbc3 );

            GridBagConstraints qq_gbc4 = new GridBagConstraints();
            qq_gbc4.gridx = 4; // Column 5
            qq_gbc4.gridy = 0; // Row 1
            qq_gbc4.weightx = 0;
            qq_gbc4.weighty = 0;
            qq_gbc4.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc4.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc4.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField44.add( getqq_StaticScrollListMultiSelectInteger_sp(), qq_gbc4 );

            GridBagConstraints qq_gbc5 = new GridBagConstraints();
            qq_gbc5.gridx = 5; // Column 6
            qq_gbc5.gridy = 0; // Row 1
            qq_gbc5.weightx = 0;
            qq_gbc5.weighty = 0;
            qq_gbc5.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc5.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc5.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField44.add( getqq_SLPrintBtn(), qq_gbc5 );

            GridBagConstraints qq_gbc6 = new GridBagConstraints();
            qq_gbc6.gridx = 0; // Column 1
            qq_gbc6.gridy = 1; // Row 2
            qq_gbc6.weightx = 0;
            qq_gbc6.weighty = 0;
            qq_gbc6.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc6.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc6.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField44.add( getqq_DynamicScrollListSingleSelectInteger_sp(), qq_gbc6 );

            GridBagConstraints qq_gbc7 = new GridBagConstraints();
            qq_gbc7.gridx = 1; // Column 2
            qq_gbc7.gridy = 1; // Row 2
            qq_gbc7.weightx = 0;
            qq_gbc7.weighty = 0;
            qq_gbc7.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc7.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc7.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField44.add( getqq_DynamicScrollListSingleSelectString_sp(), qq_gbc7 );

            GridBagConstraints qq_gbc8 = new GridBagConstraints();
            qq_gbc8.gridx = 2; // Column 3
            qq_gbc8.gridy = 1; // Row 2
            qq_gbc8.weightx = 0;
            qq_gbc8.weighty = 0;
            qq_gbc8.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc8.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc8.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField44.add( getqq_DynamicScrollListSingleSelectIntegerData_sp(), qq_gbc8 );

            GridBagConstraints qq_gbc9 = new GridBagConstraints();
            qq_gbc9.gridx = 3; // Column 4
            qq_gbc9.gridy = 1; // Row 2
            qq_gbc9.weightx = 0;
            qq_gbc9.weighty = 0;
            qq_gbc9.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc9.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc9.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField44.add( getqq_DynamicScrollListSingleSelectTextData_sp(), qq_gbc9 );

            GridBagConstraints qq_gbc10 = new GridBagConstraints();
            qq_gbc10.gridx = 4; // Column 5
            qq_gbc10.gridy = 1; // Row 2
            qq_gbc10.weightx = 0;
            qq_gbc10.weighty = 0;
            qq_gbc10.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc10.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc10.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField44.add( getqq_DynamicScrollListMultiSelectInteger_sp(), qq_gbc10 );

            GridBagConstraints qq_gbc11 = new GridBagConstraints();
            qq_gbc11.gridx = 5; // Column 6
            qq_gbc11.gridy = 1; // Row 2
            qq_gbc11.weightx = 0;
            qq_gbc11.weighty = 0;
            qq_gbc11.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc11.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc11.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField44.add( getqq_SLSetBtn(), qq_gbc11 );

        }
        return qq_GridField44;
    }

    public void setqq_GridField44(GridField value) {
        GridField oldValue = qq_GridField44;
        qq_GridField44 = value;
        this.qq_Listeners.firePropertyChange("qq_GridField44", oldValue, value);
    }

    /**
     * qq_TestScrollBar: transformed from: qqds_ScrollBar
     * TagId=58
     * isInherited=FALSE
     */
    public JScrollBar getqq_TestScrollBar() {
        if (qq_TestScrollBar == null) {
            qq_TestScrollBar = ScrollBarFactory.newScrollBar(Constants.FO_HORIZONTAL, 109, 0, 1, 10);
            qq_TestScrollBar.setName("TestScrollBar");
            getBindingManager().bindComponent(qq_TestScrollBar, "testScrollBar", 0, 109, 10);
            WidthPolicy.set(qq_TestScrollBar, Constants.SP_EXPLICIT);
            HeightPolicy.set(qq_TestScrollBar, Constants.SP_NATURAL);
            qq_TestScrollBar.setSize(new Dimension(190, 16));
            qq_TestScrollBar.setMinimumSize(new Dimension(190, 16));
            qq_TestScrollBar.setPreferredSize(new Dimension(190, 16));
        }
        return qq_TestScrollBar;
    }

    public void setqq_TestScrollBar(JScrollBar value) {
        JScrollBar oldValue = qq_TestScrollBar;
        qq_TestScrollBar = value;
        this.qq_Listeners.firePropertyChange("qq_TestScrollBar", oldValue, value);
    }

    /**
     * qq_SBValue: transformed from: qqds_TextGraphic
     * TagId=59
     * isInherited=FALSE
     */
    public TextGraphic getqq_SBValue() {
        if (qq_SBValue == null) {
            qq_SBValue = GraphicFactory.newTextGraphic("Value:\n", "SBValue");
            qq_SBValue.setHorizontalAlignment( SwingConstants.LEFT );
            // OPTIONAL UIutils.reloadLabelText(qq_SBValue, mcat);
            WidthPolicy.set(qq_SBValue, Constants.SP_EXPLICIT);
            HeightPolicy.set(qq_SBValue, Constants.SP_NATURAL);
            qq_SBValue.setMinimumSize(new Dimension(76, 16));
            qq_SBValue.setSize(new Dimension(76, 16));
        }
        return qq_SBValue;
    }

    public void setqq_SBValue(TextGraphic value) {
        TextGraphic oldValue = qq_SBValue;
        qq_SBValue = value;
        this.qq_Listeners.firePropertyChange("qq_SBValue", oldValue, value);
    }

    /**
     * qq_SBSetBtn: transformed from: qqds_PushButton
     * TagId=60
     * isInherited=FALSE
     */
    public JButton getqq_SBSetBtn() {
        if (qq_SBSetBtn == null) {
            qq_SBSetBtn = PushButtonFactory.newInstance("SBSetBtn", "Set");
            qq_SBSetBtn.setVerifyInputWhenFocusTarget(true);
            WidthPolicy.set(qq_SBSetBtn, Constants.SP_NATURAL);
            HeightPolicy.set(qq_SBSetBtn, Constants.SP_NATURAL);
            qq_SBSetBtn.setMinimumSize(new Dimension(30, 23));
        }
        return qq_SBSetBtn;
    }

    public void setqq_SBSetBtn(JButton value) {
        JButton oldValue = qq_SBSetBtn;
        qq_SBSetBtn = value;
        this.qq_Listeners.firePropertyChange("qq_SBSetBtn", oldValue, value);
    }

    /**
     * qq_GridField57: transformed from: qqds_GridField
     * TagId=57
     * isInherited=FALSE
     * In forte this was a 3x1 grid field.
     * The cell margins are all 50 mils
     * The width policy is set to Natural, and the height policy is set to Natural.
     */
    protected void setqq_GridField57Properties() {
        qq_GridField57.setCellTopMargin(25);
        qq_GridField57.setCellBottomMargin(25);
        qq_GridField57.setCellLeftMargin(25);
        qq_GridField57.setCellRightMargin(25);
        qq_GridField57.setCollapsed(true);
        qq_GridField57.setHeightPolicy(Constants.SP_NATURAL);
        qq_GridField57.setWidthPolicy(Constants.SP_NATURAL);
        qq_GridField57.setBackground(null);
    }

    public GridField getqq_GridField57() {
        if (qq_GridField57 == null) {
            qq_GridField57 = CompoundFieldFactory.newGridField("qq_GridField57", true);
            setqq_GridField57Properties();
            qq_GridField57.setMinimumSize(new Dimension(330, 36));
            GridBagConstraints qq_gbc = new GridBagConstraints();
            qq_gbc.gridx = 0; // Column 1
            qq_gbc.gridy = 0; // Row 1
            qq_gbc.weightx = 0;
            qq_gbc.weighty = 0;
            qq_gbc.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField57.add( getqq_SBSetBtn(), qq_gbc );

            GridBagConstraints qq_gbc1 = new GridBagConstraints();
            qq_gbc1.gridx = 1; // Column 2
            qq_gbc1.gridy = 0; // Row 1
            qq_gbc1.weightx = 0;
            qq_gbc1.weighty = 0;
            qq_gbc1.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc1.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc1.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField57.add( getqq_TestScrollBar(), qq_gbc1 );

            GridBagConstraints qq_gbc2 = new GridBagConstraints();
            qq_gbc2.gridx = 2; // Column 3
            qq_gbc2.gridy = 0; // Row 1
            qq_gbc2.weightx = 0;
            qq_gbc2.weighty = 0;
            qq_gbc2.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc2.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc2.insets = new Insets(2, 2, 2, 2); // Top, Left, Bottom, Right Margin
            qq_GridField57.add( getqq_SBValue(), qq_gbc2 );

        }
        return qq_GridField57;
    }

    public void setqq_GridField57(GridField value) {
        GridField oldValue = qq_GridField57;
        qq_GridField57 = value;
        this.qq_Listeners.firePropertyChange("qq_GridField57", oldValue, value);
    }

    /**
     * qq_GridField12: transformed from: qqds_GridField
     * TagId=12
     * isInherited=FALSE
     * In forte this was a 1x5 grid field.
     * The cell margins are all 100 mils
     * The width policy is set to Natural, and the height policy is set to Natural.
     */
    protected void setqq_GridField12Properties() {
        qq_GridField12.setCellTopMargin(50);
        qq_GridField12.setCellBottomMargin(50);
        qq_GridField12.setCellLeftMargin(50);
        qq_GridField12.setCellRightMargin(50);
        qq_GridField12.setCollapsed(true);
        qq_GridField12.setHeightPolicy(Constants.SP_NATURAL);
        qq_GridField12.setWidthPolicy(Constants.SP_NATURAL);
        qq_GridField12.setBackground(null);
    }

    public GridField getqq_GridField12() {
        if (qq_GridField12 == null) {
            qq_GridField12 = CompoundFieldFactory.newGridField("qq_GridField12", true);
            setqq_GridField12Properties();
            qq_GridField12.setMinimumSize(new Dimension(504, 491));
            GridBagConstraints qq_gbc = new GridBagConstraints();
            qq_gbc.gridx = 0; // Column 1
            qq_gbc.gridy = 0; // Row 1
            qq_gbc.weightx = 0;
            qq_gbc.weighty = 0;
            qq_gbc.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc.insets = new Insets(4, 4, 4, 4); // Top, Left, Bottom, Right Margin
            qq_GridField12.add( getqq_GridField13(), qq_gbc );

            GridBagConstraints qq_gbc1 = new GridBagConstraints();
            qq_gbc1.gridx = 0; // Column 1
            qq_gbc1.gridy = 1; // Row 2
            qq_gbc1.weightx = 0;
            qq_gbc1.weighty = 0;
            qq_gbc1.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc1.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc1.insets = new Insets(4, 4, 4, 4); // Top, Left, Bottom, Right Margin
            qq_GridField12.add( getqq_GridField22(), qq_gbc1 );

            GridBagConstraints qq_gbc2 = new GridBagConstraints();
            qq_gbc2.gridx = 0; // Column 1
            qq_gbc2.gridy = 2; // Row 3
            qq_gbc2.weightx = 0;
            qq_gbc2.weighty = 0;
            qq_gbc2.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc2.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc2.insets = new Insets(4, 4, 4, 4); // Top, Left, Bottom, Right Margin
            qq_GridField12.add( getqq_GridField31(), qq_gbc2 );

            GridBagConstraints qq_gbc3 = new GridBagConstraints();
            qq_gbc3.gridx = 0; // Column 1
            qq_gbc3.gridy = 3; // Row 4
            qq_gbc3.weightx = 0;
            qq_gbc3.weighty = 0;
            qq_gbc3.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc3.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc3.insets = new Insets(4, 4, 4, 4); // Top, Left, Bottom, Right Margin
            qq_GridField12.add( getqq_GridField44(), qq_gbc3 );

            GridBagConstraints qq_gbc4 = new GridBagConstraints();
            qq_gbc4.gridx = 0; // Column 1
            qq_gbc4.gridy = 4; // Row 5
            qq_gbc4.weightx = 0;
            qq_gbc4.weighty = 0;
            qq_gbc4.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
            qq_gbc4.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
            qq_gbc4.insets = new Insets(4, 4, 4, 4); // Top, Left, Bottom, Right Margin
            qq_GridField12.add( getqq_GridField57(), qq_gbc4 );

        }
        return qq_GridField12;
    }

    public void setqq_GridField12(GridField value) {
        GridField oldValue = qq_GridField12;
        qq_GridField12 = value;
        this.qq_Listeners.firePropertyChange("qq_GridField12", oldValue, value);
    }

    /**
     * Form: transformed from: qqds_Panel
     * TagId=1
     * isInherited=FALSE
     */
    protected void setFormProperties() {
        Form.setOpaque( true );
    }

    public JPanel getForm() {
        if (Form == null) {
            Form = CompoundFieldFactory.newForm();
            this.setFormProperties();
            Form.add( getqq_GridField12() );
        }
        return Form;
    }

    public void setForm(JPanel value) {
        JPanel oldValue = Form;
        Form = value;
        this.qq_Listeners.firePropertyChange("Form", oldValue, value);
    }

    /**
     * Gets the system close policy
     *
     * The SystemClosePolicy property determines how a window responds to user attempts to close it by using the native window system through the window close box or a window system menu command.
     * SystemClosePolicy responds to window closure attempts according to the following parameters:
     * <li>Constants.SC_DISABLED  Does not allow window closure through window system.</li>
     * <li>Constants.SC_ENABLEDNOFINALIZE  Window can be closed, but the contents are not verified, guaranteeing that the window will close (for example, the user clicks the Cancel button).</li>
     * <li>Constants.SC_ENABLEDFINALIZE  Posts the RequestFinalize method on the window, with a reason code of zero.</li>
     * <li>Constants.SC_ENABLEDSHUTDOWN  Posts Shutdown event to window�s task and to all tasks started by that task. This is the default value.</li>
     */
    public int getSystemClosePolicy() {
        return qq_SystemClosePolicy;
    }

    /**
     * Sets the system close policy
     *
     * The SystemClosePolicy property determines how a window responds to user attempts to close it by using the native window system through the window close box or a window system menu command.
     * SystemClosePolicy responds to window closure attempts according to the following parameters:
     * <li>Constants.SC_DISABLED  Does not allow window closure through window system.</li>
     * <li>Constants.SC_ENABLEDNOFINALIZE  Window can be closed, but the contents are not verified, guaranteeing that the window will close (for example, the user clicks the Cancel button).</li>
     * <li>Constants.SC_ENABLEDFINALIZE  Posts the RequestFinalize method on the window, with a reason code of zero.</li>
     * <li>Constants.SC_ENABLEDSHUTDOWN  Posts Shutdown event to window�s task and to all tasks started by that task. This is the default value.</li>
     */
    public void setSystemClosePolicy(int policy) {
        this.qq_SystemClosePolicy = policy;
        if (policy == Constants.SC_DISABLED) {
            this.addComponentListener(new CloseHideAdaptor(this));
        } else {
            for (ComponentListener cl : this.getComponentListeners()) {
                if (cl instanceof CloseHideAdaptor) {
                    this.removeComponentListener(cl);
                    break;
                }
            }
        }
    }

    /**
     * Gets the initial position policy
     *
     * The InitialPositionPolicy property sets the position of a main window when it is first displayed, relative to a primary window or the screen.
     * You use the InitialPositionPolicy property in conjunction with the InitialX, InitialY properties.
     * InitialPositionPolicy sets the position of a window according to the following values:
     * <li>Constants.PP_SYSTEMDEFAULT    Accepts the default window system placement specification.</li>
     * <li>Constants.PP_PRIMARYCENTERED  Centers the window relative to the window specified as the PrimaryWindow property.</li>
     * <li>Constants.PP_PRIMARYRELATIVE  Positions the window relative to the primary window, using the PrimaryWindow, InitialX and InitialY attributes.</li>
     * <li>Constants.PP_SCREENCENTERED  Centers the window relative to the screen.</li>
     * <li>Constants.PP_SCREENRELATIVE  Positions the window relative to the screen, using the InitialX and InitialY properties.</li>
     */
    public int getInitialPositionPolicy() {
        return qq_initialPositionPolicy;
    }

    /**
     * Sets the initial position policy
     *
     * The InitialPositionPolicy property sets the position of a main window when it is first displayed, relative to a primary window or the screen.
     * You use the InitialPositionPolicy property in conjunction with the InitialX, InitialY properties.
     * InitialPositionPolicy sets the position of a window according to the following values:
     * <li>Constants.PP_SYSTEMDEFAULT    Accepts the default window system placement specification.</li>
     * <li>Constants.PP_PRIMARYCENTERED  Centers the window relative to the window specified as the PrimaryWindow property.</li>
     * <li>Constants.PP_PRIMARYRELATIVE  Positions the window relative to the primary window, using the PrimaryWindow, InitialX and InitialY attributes.</li>
     * <li>Constants.PP_SCREENCENTERED  Centers the window relative to the screen.</li>
     * <li>Constants.PP_SCREENRELATIVE  Positions the window relative to the screen, using the InitialX and InitialY properties.</li>
     */
    public void setInitialPositionPolicy(int policy) {
        this.qq_initialPositionPolicy = policy;
    }

    /**
     * Gets the primary window
     *
     * The primary window property designates a window, known as a primary window, to serve as an initial position reference for the current window.
     * When a main window first realizes itself through the Open method on the UserWindow, it assumes a position according to the InitialPositionPolicy attribute.
     * When the InitialPositionPolicy property is set to PP_PRIMARYRELATIVE (relative to the primary window) or PP_PRIMARYCENTERED (centered on the primary window),
     * the window realizes itself in a position relative to the designated primary window.<p>
     * <p>
     * To take a position relative to the primary window, a window uses the PrimaryWindow attribute in conjunction with the InitialX and InitialY properties, which specify the window�s horizontal and vertical coordinates.
     */
    public Window getPrimaryWindow() {
        return this.primaryWindow;
    }

    /**
     * Sets the primary window
     *
     * The primary window property designates a window, known as a primary window, to serve as an initial position reference for the current window.
     * When a main window first realizes itself through the Open method on the UserWindow, it assumes a position according to the InitialPositionPolicy attribute.
     * When the InitialPositionPolicy property is set to PP_PRIMARYRELATIVE (relative to the primary window) or PP_PRIMARYCENTERED (centered on the primary window),
     * the window realizes itself in a position relative to the designated primary window.<p>
     * <p>
     * To take a position relative to the primary window, a window uses the PrimaryWindow attribute in conjunction with the InitialX and InitialY properties, which specify the window�s horizontal and vertical coordinates.
     */
    public void setPrimaryWindow(Window value) {
        this.primaryWindow = value;
    }

    /**
     * Gets the InitialX value
     *
     * The InitialX property (integer) is the window�s initial horizontal screen position, relative to a primary window or the screen. It is specified in mils.
     * InitialX applies only to main windows and only when a window�s InitialPositionPolicy attribute is set to PP_PRIMARYRELATIVE (relative to the primary window) or PP_SCREENRELATIVE (relative to the screen).
     * InitialX, and its corollary, InitialY, work in conjunction with the PrimaryWindow and InitialPositionPolicy attributes to determine the position of a main window when it is first realized.
     */
    public int getInitialX() {
        return initialX;
    }

    /**
     * Sets the InitialX value
     *
     * The InitialX property (integer) is the window�s initial horizontal screen position, relative to a primary window or the screen. It is specified in mils.
     * InitialX applies only to main windows and only when a window�s InitialPositionPolicy attribute is set to PP_PRIMARYRELATIVE (relative to the primary window) or PP_SCREENRELATIVE (relative to the screen).
     * InitialX, and its corollary, InitialY, work in conjunction with the PrimaryWindow and InitialPositionPolicy attributes to determine the position of a main window when it is first realized.
     */
    public void setInitialX(int value) {
        this.initialX = value;
    }

    /**
     * Gets the InitialY value
     *
     * The InitialY property (integer) is the window�s initial vertical screen position, relative to a primary window or the screen. It is specified in mils.
     * InitialY applies only to main windows and only when a window�s InitialPositionPolicy attribute is set to PP_PRIMARYRELATIVE (relative to the primary window) or PP_SCREENRELATIVE (relative to the screen).
     * InitialY, and its corollary, InitialX, work in conjunction with the PrimaryWindow and InitialPositionPolicy attributes to determine the position of a main window when it is first realized.
     */
    public int getInitialY() {
        return initialY;
    }

    /**
     * Sets the InitialY value
     *
     * The InitialY property (integer) is the window�s initial vertical screen position, relative to a primary window or the screen. It is specified in mils.
     * InitialY applies only to main windows and only when a window�s InitialPositionPolicy attribute is set to PP_PRIMARYRELATIVE (relative to the primary window) or PP_SCREENRELATIVE (relative to the screen).
     * InitialY, and its corollary, InitialX, work in conjunction with the PrimaryWindow and InitialPositionPolicy attributes to determine the position of a main window when it is first realized.
     */
    public void setInitialY(int value) {
        this.initialY = value;
    }

    /**
     * Gets the default message set number for the window and its widgets.
     */
    public int getSetNum() {
        return this.qq_defaultSet;
    }

    /**
     * Sets the default message set number for the window and its widgets.
     */
    public void setSetNum(int value) {
        this.qq_defaultSet = value;
    }

    /**
     * Gets the message set number for the message number of the window's title.
     */
    public int getTitleSetNum() {
        return this.qq_msgSet;
    }

    /**
     * Sets the message set number for the message number of the window's title.
     */
    public void setTitleSetNum(int value) {
        this.qq_msgSet = value;
    }

    /**
     * Gets the message number for the message number of the window's title.
     */
    public int getTitleMsgNum() {
        return this.qq_msgNumber;
    }

    /**
     * Sets the message number for the message number of the window's title.
     */
    public void setTitleMsgNum(int value) {
        this.qq_msgNumber = value;
    }



    /**
     * Initialise the window and all its children.
     */
    protected void initialize() {
        if (this.Form == null) {
            this.setName( "ControlsTest" );
            this.setTitle( "" );
            this.setSystemClosePolicy(Constants.SC_ENABLEDSHUTDOWN);
            if (this.getContentPane() != this.getForm()) {
                this.setContentPane(getForm());
            }
            this.qq_setupWindowUsage();
            this.setResizable( false );
            this.setAlwaysOnTop(false);
            UserWindow.setIconizeEnabled(this, true);
            WindowManager.addWindowListener(this);
            this.setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE);
            this.setUsage(DisplayProject.Constants.WU_UPDATE);
            UIutils.processGUIActions();
            this.pack();
            this.setInitialX(0);
            this.setInitialY(0);
            this.setInitialPositionPolicy(Constants.PP_SYSTEMDEFAULT);
        }
    }


    // ----------------
    //  Window usage
    //-----------------
    protected WindowUsageMap usage = new WindowUsageMap();
    public int getUsage() {
        return this.usage.getUsage();
    }
    public WindowUsageMap getUsageMap() {
        return this.usage;
    }
    /**
     * Sets the window usage
     *
     * The Usage property sets the state for all a window�s child widgets at once, providing collective widget state changes on a predefined basis. A widget�s state determines how the widget reacts to mouse actions and how it displays itself. A window�s Usage property provides a convenient way to control the states of a group of widgets in the context of their parent window. With the Usage attribute, you can synchronize widget states to conform to a pattern you establish for the window.
     * The Usage attribute accepts the following values:
     * <li>Constants.WU_EDIT  Edit usage: widgets themselves are editable, but not underlying data.</li>
     * <li>Constants.WU_QUERY  Query only usage: widget data is editable, but not widgets themselves.</li>
     * <li>Constants.WU_UPDATE  Update usage: mouse actions and keyboard input accepted. Widgets themselves are changeable. This is the default.</li>
     * <li>Constants.WU_USER1  A user-defined usage. Default values same as WU_UPDATE.</li>
     * <li>Constants.WU_USER2  A user-defined usage. Default values same as WU_UPDATE.</li>
     * <li>Constants.WU_USER3  A user-defined usage. Default values same as WU_UPDATE.</li>
     * <li>Constants.WU_VIEW  View-only usage: no keyboard input is accepted. Widget posts Click events for mouse clicks.</li>
     */
    public void setUsage(int usage) {
        this.usage.setUsage(usage);
    }
    public void qq_setupWindowUsage() {
        this.usage = new WindowUsageMap();
        this.usage.add(getqq_GridField12(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_GridField13(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_StaticDropListString(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_StaticDropListInteger(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_DynamicDropListString(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_DynamicDropListInteger(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_StaticFillinFieldString(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_DynamicFillinFieldString(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_PrintComboBoxesBtn(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
        this.usage.add(getqq_SetComboBoxesBtn(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
        this.usage.add(getqq_GridField22(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_RadioListInteger(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_RadioListIntegerNullable(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_RadioListString(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_RadioListTextData(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_RLPrintBtn(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
        this.usage.add(getqq_RLSetBtn(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
        this.usage.add(getqq_RadioListDynamicInteger(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_RadioListDynamicString(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_GridField31(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_Toggle1(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_Toggle2(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_Toggle3(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_Toggle4(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_Toggle5(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_TogglePrintBtn(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
        this.usage.add(getqq_ToggleSetBtn(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
        this.usage.add(getqq_Toggle6(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_Toggle7(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_Toggle8(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_Toggle9(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_Toggle10(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_GridField44(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_StaticScrollListSingleSelectInteger(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_StaticScrollListSingleSelectString(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_StaticScrollListSingleSelectIntegerData(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_StaticScrollListSingleSelectTextData(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_StaticScrollListMultiSelectInteger(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_DynamicScrollListSingleSelectInteger(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_DynamicScrollListSingleSelectString(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_DynamicScrollListSingleSelectIntegerData(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_DynamicScrollListSingleSelectTextData(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_DynamicScrollListMultiSelectInteger(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_SLPrintBtn(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
        this.usage.add(getqq_SLSetBtn(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
        this.usage.add(getqq_GridField57(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_TestScrollBar(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
        this.usage.add(getqq_SBValue(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
        this.usage.add(getqq_SBSetBtn(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
    }
    // </editor-fold>

    // -----------
    // Main method
    // -----------
        public static void main(String []args) {
            KeyboardFocusManager.setCurrentKeyboardFocusManager(new ForteKeyboardFocusManager());
            try {
                UIManager.setLookAndFeel(new Win32LookAndFeel());
            }
            catch (Exception e) {}
            ToolTipManager.sharedInstance().setDismissDelay(Integer.MAX_VALUE);
            ControlsTest myClass = new ControlsTest();
            myClass.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            myClass.setVisible(true);
            UIutils.processGUIActions();
        }
// end class ControlsTest
// c Pass 2 Conversion Time: 1529 milliseconds
TOP

Related Classes of WindowTester.ControlsTest

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.