package win;
import DisplayProject.ArrayColumn;
import DisplayProject.ArrayFieldModel;
import DisplayProject.CloseHideAdaptor;
import DisplayProject.Constants;
import DisplayProject.CursorMgr;
import DisplayProject.DataField;
import DisplayProject.GridField;
import DisplayProject.UDSWindow;
import DisplayProject.UIutils;
import DisplayProject.WindowManager;
import DisplayProject.WindowUsageMap;
import DisplayProject.actions.Caption;
import DisplayProject.actions.DateTemplate;
import DisplayProject.actions.FrameColor;
import DisplayProject.actions.FrameWeight;
import DisplayProject.actions.HeightPolicy;
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.ArrayField;
import DisplayProject.controls.TextGraphic;
import DisplayProject.events.ClientEventManager;
import DisplayProject.factory.CompoundFieldFactory;
import DisplayProject.factory.DataFieldFactory;
import DisplayProject.factory.GraphicFactory;
import DisplayProject.factory.PushButtonFactory;
import DisplayProject.factory.TableFactory;
import DisplayProject.plaf.Win32LookAndFeel;
import DisplayProject.table.ArrayFieldCellHelper;
import DisplayProject.table.FormattedCellEditor;
import DisplayProject.table.FormattedCellRenderer;
import Framework.Array_Of_ListElement;
import Framework.Array_Of_TextData;
import Framework.DateTimeData;
import Framework.DateTimeNullable;
import Framework.DecimalData;
import Framework.DecimalNullable;
import Framework.DoubleData;
import Framework.DoubleNullable;
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.Partition;
import Framework.RuntimeProperties;
import Framework.TextData;
import Framework.TextNullable;
import Framework.UsageException;
import entities.Thongs;
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.BorderFactory;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextField;
import javax.swing.SwingConstants;
import javax.swing.ToolTipManager;
import javax.swing.UIManager;
import org.apache.log4j.Logger;
/**
* One<p>
* <p>
* @author Generated from Forte
* @since 19-Nov-2008
*/
@RuntimeProperties(isDistributed=false, isAnchored=false, isShared=false, isTransactional=false)
@UDSWindow()
@SuppressWarnings("serial")
public class One
extends JFrame
implements Serializable, Observable
{
// ----------
// Attributes
// ----------
protected File DefaultHelpFile;
protected BindingManager bindingManager = null;
public PropertyChangeSupport qq_Listeners = new ExtendedPropertyChangeSupport(this, true);
private IntegerData count;
private DateTimeData dtd;
private TextData tD;
private String str;
private DateTimeNullable dtn;
private TextNullable tn;
private IntegerNullable intN;
private IntegerData intD;
private DecimalNullable decN;
private DecimalData decD;
private DoubleNullable doubN;
private DoubleData doubD;
private Array_Of_ListElement<ListElement> list;
private Thongs t;
// ------------
// Constructors
// ------------
public One() {
// Explicitly call the superclass constructor to prevent the implicit call
super();
this.initialize();
this.setList(new Array_Of_ListElement<ListElement>());
this.setTD(new TextData());
this.setCount(new IntegerData());
this.setDtd(new DateTimeData());
this.setDtn(new DateTimeNullable());
this.getDtn().setIsNull(true);
this.setDecN(new DecimalNullable());
this.setDecD(new DecimalData());
this.setIntN(new IntegerNullable(true, IntegerNullable.qq_Resolver.cISNULL));
}
// ----------------------
// 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 setCount(IntegerData count) {
IntegerData oldValue = this.count;
this.count = count;
this.qq_Listeners.firePropertyChange("count", oldValue, this.count);
}
public IntegerData getCount() {
return this.count;
}
public void setDtd(DateTimeData dtd) {
DateTimeData oldValue = this.dtd;
this.dtd = dtd;
this.qq_Listeners.firePropertyChange("dtd", oldValue, this.dtd);
}
public DateTimeData getDtd() {
return this.dtd;
}
public void setTD(TextData tD) {
TextData oldValue = this.tD;
this.tD = tD;
this.qq_Listeners.firePropertyChange("TD", oldValue, this.tD);
}
public TextData getTD() {
return this.tD;
}
public void setStr(String str) {
String oldValue = this.str;
this.str = str;
this.qq_Listeners.firePropertyChange("str", oldValue, this.str);
}
public String getStr() {
return this.str;
}
public void setDtn(DateTimeNullable dtn) {
DateTimeNullable oldValue = this.dtn;
this.dtn = dtn;
this.qq_Listeners.firePropertyChange("dtn", oldValue, this.dtn);
}
public DateTimeNullable getDtn() {
return this.dtn;
}
public void setTn(TextNullable tn) {
TextNullable oldValue = this.tn;
this.tn = tn;
this.qq_Listeners.firePropertyChange("tn", oldValue, this.tn);
}
public TextNullable getTn() {
return this.tn;
}
public void setIntN(IntegerNullable intN) {
IntegerNullable oldValue = this.intN;
this.intN = intN;
this.qq_Listeners.firePropertyChange("intN", oldValue, this.intN);
}
public IntegerNullable getIntN() {
return this.intN;
}
public void setIntD(IntegerData intD) {
IntegerData oldValue = this.intD;
this.intD = intD;
this.qq_Listeners.firePropertyChange("intD", oldValue, this.intD);
}
public IntegerData getIntD() {
return this.intD;
}
public void setDecN(DecimalNullable decN) {
DecimalNullable oldValue = this.decN;
this.decN = decN;
this.qq_Listeners.firePropertyChange("decN", oldValue, this.decN);
}
public DecimalNullable getDecN() {
return this.decN;
}
public void setDecD(DecimalData decD) {
DecimalData oldValue = this.decD;
this.decD = decD;
this.qq_Listeners.firePropertyChange("decD", oldValue, this.decD);
}
public DecimalData getDecD() {
return this.decD;
}
public void setDoubN(DoubleNullable doubN) {
DoubleNullable oldValue = this.doubN;
this.doubN = doubN;
this.qq_Listeners.firePropertyChange("doubN", oldValue, this.doubN);
}
public DoubleNullable getDoubN() {
return this.doubN;
}
public void setDoubD(DoubleData doubD) {
DoubleData oldValue = this.doubD;
this.doubD = doubD;
this.qq_Listeners.firePropertyChange("doubD", oldValue, this.doubD);
}
public DoubleData getDoubD() {
return this.doubD;
}
public void setList(Array_Of_ListElement<ListElement> list) {
Array_Of_ListElement<ListElement> oldValue = this.list;
this.list = list;
this.qq_Listeners.firePropertyChange("list", oldValue, this.list);
}
public Array_Of_ListElement<ListElement> getList() {
return this.list;
}
public void setT(Thongs t) {
Thongs oldValue = this.t;
this.t = t;
this.qq_Listeners.firePropertyChange("t", oldValue, this.t);
}
public Thongs getT() {
return this.t;
}
// -------
// 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_TextData<TextData> bob = new Array_Of_TextData<TextData>();
UserWindow.open(this);
// ----------
// Event Loop
// ----------
EventManager.startEventLoop();
try {
EventRegistration TaskHandle_Shutdown_langThreadcurrentThread = ClientEventManager.register( Thread.currentThread(), "Shutdown" );
EventRegistration PushButton_Click_getqq_pop = ClientEventManager.register( this.getqq_pop(), "Click" );
EventRegistration PushButton_Click_getqq_popcomplex = ClientEventManager.register( this.getqq_popcomplex(), "Click" );
EventRegistration DataField_AfterValueChange_getqq_decD = ClientEventManager.register( this.getqq_decD(), "AfterValueChange" );
while (true) {
UIutils.processGUIActions();
EventHandle qq_currentEvent = EventManager.waitForEvent();
if (qq_currentEvent == null)
break;
// -------------
// task.Shutdown
// -------------
if (qq_currentEvent.isEvent(TaskHandle_Shutdown_langThreadcurrentThread)) {
try {
CursorMgr.startEvent();
// ================ Begin Forte Event Handler Translation ================
break;
// ================ End Forte Event Handler Translation ================
}
finally {
CursorMgr.endEvent();
}
}
// -----------
// <pop>.click
// -----------
else if (qq_currentEvent.isEvent(PushButton_Click_getqq_pop)) {
try {
CursorMgr.startEvent();
// ================ Begin Forte Event Handler Translation ================
this.setList(new Array_Of_ListElement<ListElement>());
this.setTD(new TextData("TDabcd"));
this.getTD().concat(this.getCount());
this.setStr(this.getTD().getValue());
for (int i = 1; i <= 5; i++) {
ListElement le = new ListElement();
le.setTextValue(new TextData("LE:"));
this.getCount().increment();
le.getTextValue().concat(this.getCount());
le.setIntegerValue(this.getCount().getValue());
this.getList().add(le);
}
this.getCount().increment();
// ================ End Forte Event Handler Translation ================
}
finally {
CursorMgr.endEvent();
}
}
// ------------------
// <popcomplex>.click
// ------------------
else if (qq_currentEvent.isEvent(PushButton_Click_getqq_popcomplex)) {
try {
CursorMgr.startEvent();
// ================ Begin Forte Event Handler Translation ================
this.setT(new Thongs());
//complex.list=new;
this.getT().getT().setTd(new TextData("TDabcd"));
this.getT().getT().getTd().concat(this.getCount());
this.getT().getT().setStr(this.getT().getT().getTd().getValue());
for (int i = 1; i <= 5; i++) {
ListElement le = new ListElement();
le.setTextValue(new TextData("LE:"));
this.getCount().increment();
le.getTextValue().concat(this.getCount());
le.setIntegerValue(this.getCount().getValue());
this.getT().getT().getList().add(le);
}
this.getCount().increment();
// ================ End Forte Event Handler Translation ================
}
finally {
CursorMgr.endEvent();
}
}
// -----------------------
// <decD>.aftervaluechange
// -----------------------
else if (qq_currentEvent.isEvent(DataField_AfterValueChange_getqq_decD)) {
try {
CursorMgr.startEvent();
// ================ Begin Forte Event Handler Translation ================
Logger.getLogger("task.part.logmgr").info(this.getDecD());
// ================ End Forte Event Handler Translation ================
}
finally {
CursorMgr.endEvent();
}
}
}
EventManager.deregister( TaskHandle_Shutdown_langThreadcurrentThread );
EventManager.deregister( PushButton_Click_getqq_pop );
EventManager.deregister( PushButton_Click_getqq_popcomplex );
EventManager.deregister( DataField_AfterValueChange_getqq_decD );
}
//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 ArrayField qq_list;
public ArrayField qq_t_t_list;
public DataField qq_Str;
public DataField qq_TD;
public DataField qq_count;
public DataField qq_decD;
public DataField qq_decN;
public DataField qq_doubD;
public DataField qq_doubN;
public DataField qq_dtd;
public DataField qq_dtn;
public DataField qq_intD;
public DataField qq_intN;
public DataField qq_listArray_IntegerValue;
public DataField qq_listArray_TextValue;
public DataField qq_t_t_Str;
public DataField qq_t_t_TD;
public DataField qq_t_t_listArray_IntegerValue;
public DataField qq_t_t_listArray_TextValue;
public DataField qq_tn;
public GridField qq_GridField48;
public GridField qq_GridField49;
public GridField qq_GridField50;
public GridField qq_GridField51;
public GridField qq_t;
public GridField qq_t_t;
public JButton qq_pop;
public JButton qq_popcomplex;
public JPanel Form;
public JScrollPane qq_list_sp;
public JScrollPane qq_t_t_list_sp;
public TextGraphic qq_DateTimeDataLbl;
public TextGraphic qq_DateTimeNullableLbl;
public TextGraphic qq_DecimalDataLbl;
public TextGraphic qq_DecimalNullableLbl;
public TextGraphic qq_DoubleDataLbl;
public TextGraphic qq_DoubleNullableLbl;
public TextGraphic qq_IntegerDataLbl1;
public TextGraphic qq_IntegerDataLbl;
public TextGraphic qq_IntegerNullableLbl;
public TextGraphic qq_StringLbl;
public TextGraphic qq_TextDataLbl;
public TextGraphic qq_TextNullableLbl;
/**
* qq_dtd: transformed from: qqds_DataField
* TagId=47
* isInherited=FALSE
*/
public DataField getqq_dtd() {
if (qq_dtd == null) {
// Mask type: MK_TEMPLATE
// original Forte format string -->dd/mm/yyyy<--
qq_dtd = DataFieldFactory.newDataField("dtd", 14, DateTimeData.class);
DateTemplate.set(qq_dtd, "dd/mm/yyyy", DateTimeData.class);
qq_dtd.setOriginalFormatText("dd/mm/yyyy");
qq_dtd.setHorizontalAlignment(JTextField.LEFT);
getBindingManager().bindComponent(qq_dtd, "dtd");
WidthPolicy.set(qq_dtd, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_dtd, Constants.SP_NATURAL);
qq_dtd.setMinimumSize(new Dimension(113, 21));
qq_dtd.setSize(new Dimension(113, 21));
}
return qq_dtd;
}
public void setqq_dtd(DataField value) {
DataField oldValue = qq_dtd;
qq_dtd = value;
this.qq_Listeners.firePropertyChange("qq_dtd", oldValue, value);
}
/**
* qq_count: transformed from: qqds_DataField
* TagId=33
* isInherited=FALSE
*/
public DataField getqq_count() {
if (qq_count == null) {
// Mask type: MK_NONE
qq_count = DataFieldFactory.newDataField("count", 6, IntegerData.class, Constants.MK_NONE);
qq_count.setOriginalFormatText(null);
qq_count.setHorizontalAlignment(JTextField.RIGHT);
getBindingManager().bindComponent(qq_count, "count");
WidthPolicy.set(qq_count, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_count, Constants.SP_NATURAL);
qq_count.setMinimumSize(new Dimension(57, 21));
qq_count.setSize(new Dimension(57, 21));
}
return qq_count;
}
public void setqq_count(DataField value) {
DataField oldValue = qq_count;
qq_count = value;
this.qq_Listeners.firePropertyChange("qq_count", oldValue, value);
}
/**
* qq_TD: transformed from: qqds_DataField
* TagId=12
* isInherited=FALSE
*/
public DataField getqq_TD() {
if (qq_TD == null) {
// Mask type: MK_NONE
qq_TD = DataFieldFactory.newDataField("TD", 14, TextData.class, Constants.MK_NONE);
qq_TD.setValue("");
qq_TD.setOriginalFormatText(null);
qq_TD.setHorizontalAlignment(JTextField.LEFT);
getBindingManager().bindComponent(qq_TD, "TD");
WidthPolicy.set(qq_TD, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_TD, Constants.SP_NATURAL);
qq_TD.setMinimumSize(new Dimension(112, 21));
qq_TD.setSize(new Dimension(112, 21));
}
return qq_TD;
}
public void setqq_TD(DataField value) {
DataField oldValue = qq_TD;
qq_TD = value;
this.qq_Listeners.firePropertyChange("qq_TD", oldValue, value);
}
/**
* qq_Str: transformed from: qqds_DataField
* TagId=13
* isInherited=FALSE
*/
public DataField getqq_Str() {
if (qq_Str == null) {
// Mask type: MK_NONE
qq_Str = DataFieldFactory.newDataField("Str", 14, Constants.MK_NONE);
qq_Str.setOriginalFormatText(null);
qq_Str.setHorizontalAlignment(JTextField.LEFT);
getBindingManager().bindComponent(qq_Str, "str");
WidthPolicy.set(qq_Str, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_Str, Constants.SP_NATURAL);
qq_Str.setMinimumSize(new Dimension(112, 21));
qq_Str.setSize(new Dimension(112, 21));
}
return qq_Str;
}
public void setqq_Str(DataField value) {
DataField oldValue = qq_Str;
qq_Str = value;
this.qq_Listeners.firePropertyChange("qq_Str", oldValue, value);
}
/**
* qq_DateTimeDataLbl: transformed from: qqds_TextGraphic
* TagId=52
* isInherited=FALSE
*/
public TextGraphic getqq_DateTimeDataLbl() {
if (qq_DateTimeDataLbl == null) {
qq_DateTimeDataLbl = GraphicFactory.newTextGraphic("DateTimeData\n", "");
// OPTIONAL UIutils.reloadLabelText(qq_DateTimeDataLbl, mcat);
WidthPolicy.set(qq_DateTimeDataLbl, Constants.SP_NATURAL);
HeightPolicy.set(qq_DateTimeDataLbl, Constants.SP_NATURAL);
qq_DateTimeDataLbl.setMinimumSize(new Dimension(86, 16));
}
return qq_DateTimeDataLbl;
}
public void setqq_DateTimeDataLbl(TextGraphic value) {
TextGraphic oldValue = qq_DateTimeDataLbl;
qq_DateTimeDataLbl = value;
this.qq_Listeners.firePropertyChange("qq_DateTimeDataLbl", oldValue, value);
}
/**
* qq_TextDataLbl: transformed from: qqds_TextGraphic
* TagId=53
* isInherited=FALSE
*/
public TextGraphic getqq_TextDataLbl() {
if (qq_TextDataLbl == null) {
qq_TextDataLbl = GraphicFactory.newTextGraphic("TextData\n", "");
// OPTIONAL UIutils.reloadLabelText(qq_TextDataLbl, mcat);
WidthPolicy.set(qq_TextDataLbl, Constants.SP_NATURAL);
HeightPolicy.set(qq_TextDataLbl, Constants.SP_NATURAL);
qq_TextDataLbl.setMinimumSize(new Dimension(55, 16));
}
return qq_TextDataLbl;
}
public void setqq_TextDataLbl(TextGraphic value) {
TextGraphic oldValue = qq_TextDataLbl;
qq_TextDataLbl = value;
this.qq_Listeners.firePropertyChange("qq_TextDataLbl", oldValue, value);
}
/**
* qq_StringLbl: transformed from: qqds_TextGraphic
* TagId=54
* isInherited=FALSE
*/
public TextGraphic getqq_StringLbl() {
if (qq_StringLbl == null) {
qq_StringLbl = GraphicFactory.newTextGraphic("String\n", "");
// OPTIONAL UIutils.reloadLabelText(qq_StringLbl, mcat);
WidthPolicy.set(qq_StringLbl, Constants.SP_NATURAL);
HeightPolicy.set(qq_StringLbl, Constants.SP_NATURAL);
qq_StringLbl.setMinimumSize(new Dimension(38, 16));
}
return qq_StringLbl;
}
public void setqq_StringLbl(TextGraphic value) {
TextGraphic oldValue = qq_StringLbl;
qq_StringLbl = value;
this.qq_Listeners.firePropertyChange("qq_StringLbl", oldValue, value);
}
/**
* qq_IntegerDataLbl: transformed from: qqds_TextGraphic
* TagId=55
* isInherited=FALSE
*/
public TextGraphic getqq_IntegerDataLbl() {
if (qq_IntegerDataLbl == null) {
qq_IntegerDataLbl = GraphicFactory.newTextGraphic("IntegerData\n", "");
// OPTIONAL UIutils.reloadLabelText(qq_IntegerDataLbl, mcat);
WidthPolicy.set(qq_IntegerDataLbl, Constants.SP_NATURAL);
HeightPolicy.set(qq_IntegerDataLbl, Constants.SP_NATURAL);
qq_IntegerDataLbl.setMinimumSize(new Dimension(69, 16));
}
return qq_IntegerDataLbl;
}
public void setqq_IntegerDataLbl(TextGraphic value) {
TextGraphic oldValue = qq_IntegerDataLbl;
qq_IntegerDataLbl = value;
this.qq_Listeners.firePropertyChange("qq_IntegerDataLbl", oldValue, value);
}
/**
* qq_dtn: transformed from: qqds_DataField
* TagId=56
* isInherited=FALSE
*/
public DataField getqq_dtn() {
if (qq_dtn == null) {
// Mask type: MK_TEMPLATE
// original Forte format string -->DATE<--
qq_dtn = DataFieldFactory.newDataField("dtn", 13, DateTimeNullable.class);
DateTemplate.set(qq_dtn, "DATE", DateTimeNullable.class);
qq_dtn.setOriginalFormatText("DATE");
qq_dtn.setHorizontalAlignment(JTextField.LEFT);
getBindingManager().bindComponent(qq_dtn, "dtn");
WidthPolicy.set(qq_dtn, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_dtn, Constants.SP_NATURAL);
qq_dtn.setMinimumSize(new Dimension(103, 21));
qq_dtn.setSize(new Dimension(103, 21));
}
return qq_dtn;
}
public void setqq_dtn(DataField value) {
DataField oldValue = qq_dtn;
qq_dtn = value;
this.qq_Listeners.firePropertyChange("qq_dtn", oldValue, value);
}
/**
* qq_DateTimeNullableLbl: transformed from: qqds_TextGraphic
* TagId=57
* isInherited=FALSE
*/
public TextGraphic getqq_DateTimeNullableLbl() {
if (qq_DateTimeNullableLbl == null) {
qq_DateTimeNullableLbl = GraphicFactory.newTextGraphic("DateTimeNullable\n", "");
// OPTIONAL UIutils.reloadLabelText(qq_DateTimeNullableLbl, mcat);
WidthPolicy.set(qq_DateTimeNullableLbl, Constants.SP_NATURAL);
HeightPolicy.set(qq_DateTimeNullableLbl, Constants.SP_NATURAL);
qq_DateTimeNullableLbl.setMinimumSize(new Dimension(105, 16));
}
return qq_DateTimeNullableLbl;
}
public void setqq_DateTimeNullableLbl(TextGraphic value) {
TextGraphic oldValue = qq_DateTimeNullableLbl;
qq_DateTimeNullableLbl = value;
this.qq_Listeners.firePropertyChange("qq_DateTimeNullableLbl", oldValue, value);
}
/**
* qq_TextNullableLbl: transformed from: qqds_TextGraphic
* TagId=58
* isInherited=FALSE
*/
public TextGraphic getqq_TextNullableLbl() {
if (qq_TextNullableLbl == null) {
qq_TextNullableLbl = GraphicFactory.newTextGraphic("TextNullable\n", "");
// OPTIONAL UIutils.reloadLabelText(qq_TextNullableLbl, mcat);
WidthPolicy.set(qq_TextNullableLbl, Constants.SP_NATURAL);
HeightPolicy.set(qq_TextNullableLbl, Constants.SP_NATURAL);
qq_TextNullableLbl.setMinimumSize(new Dimension(74, 16));
}
return qq_TextNullableLbl;
}
public void setqq_TextNullableLbl(TextGraphic value) {
TextGraphic oldValue = qq_TextNullableLbl;
qq_TextNullableLbl = value;
this.qq_Listeners.firePropertyChange("qq_TextNullableLbl", oldValue, value);
}
/**
* qq_tn: transformed from: qqds_DataField
* TagId=59
* isInherited=FALSE
*/
public DataField getqq_tn() {
if (qq_tn == null) {
// Mask type: MK_NONE
qq_tn = DataFieldFactory.newDataField("tn", 13, TextNullable.class, Constants.MK_NONE);
qq_tn.setOriginalFormatText(null);
qq_tn.setHorizontalAlignment(JTextField.LEFT);
getBindingManager().bindComponent(qq_tn, "tn");
WidthPolicy.set(qq_tn, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_tn, Constants.SP_NATURAL);
qq_tn.setMinimumSize(new Dimension(103, 21));
qq_tn.setSize(new Dimension(103, 21));
}
return qq_tn;
}
public void setqq_tn(DataField value) {
DataField oldValue = qq_tn;
qq_tn = value;
this.qq_Listeners.firePropertyChange("qq_tn", oldValue, value);
}
/**
* qq_IntegerNullableLbl: transformed from: qqds_TextGraphic
* TagId=60
* isInherited=FALSE
*/
public TextGraphic getqq_IntegerNullableLbl() {
if (qq_IntegerNullableLbl == null) {
qq_IntegerNullableLbl = GraphicFactory.newTextGraphic("IntegerNullable\n", "");
// OPTIONAL UIutils.reloadLabelText(qq_IntegerNullableLbl, mcat);
WidthPolicy.set(qq_IntegerNullableLbl, Constants.SP_NATURAL);
HeightPolicy.set(qq_IntegerNullableLbl, Constants.SP_NATURAL);
qq_IntegerNullableLbl.setMinimumSize(new Dimension(89, 16));
}
return qq_IntegerNullableLbl;
}
public void setqq_IntegerNullableLbl(TextGraphic value) {
TextGraphic oldValue = qq_IntegerNullableLbl;
qq_IntegerNullableLbl = value;
this.qq_Listeners.firePropertyChange("qq_IntegerNullableLbl", oldValue, value);
}
/**
* qq_IntegerDataLbl1: transformed from: qqds_TextGraphic
* TagId=61
* isInherited=FALSE
*/
public TextGraphic getqq_IntegerDataLbl1() {
if (qq_IntegerDataLbl1 == null) {
qq_IntegerDataLbl1 = GraphicFactory.newTextGraphic("IntegerData\n", "");
// OPTIONAL UIutils.reloadLabelText(qq_IntegerDataLbl1, mcat);
WidthPolicy.set(qq_IntegerDataLbl1, Constants.SP_NATURAL);
HeightPolicy.set(qq_IntegerDataLbl1, Constants.SP_NATURAL);
qq_IntegerDataLbl1.setMinimumSize(new Dimension(69, 16));
}
return qq_IntegerDataLbl1;
}
public void setqq_IntegerDataLbl1(TextGraphic value) {
TextGraphic oldValue = qq_IntegerDataLbl1;
qq_IntegerDataLbl1 = value;
this.qq_Listeners.firePropertyChange("qq_IntegerDataLbl1", oldValue, value);
}
/**
* qq_DecimalNullableLbl: transformed from: qqds_TextGraphic
* TagId=62
* isInherited=FALSE
*/
public TextGraphic getqq_DecimalNullableLbl() {
if (qq_DecimalNullableLbl == null) {
qq_DecimalNullableLbl = GraphicFactory.newTextGraphic("DecimalNullable\n", "");
// OPTIONAL UIutils.reloadLabelText(qq_DecimalNullableLbl, mcat);
WidthPolicy.set(qq_DecimalNullableLbl, Constants.SP_NATURAL);
HeightPolicy.set(qq_DecimalNullableLbl, Constants.SP_NATURAL);
qq_DecimalNullableLbl.setMinimumSize(new Dimension(98, 16));
}
return qq_DecimalNullableLbl;
}
public void setqq_DecimalNullableLbl(TextGraphic value) {
TextGraphic oldValue = qq_DecimalNullableLbl;
qq_DecimalNullableLbl = value;
this.qq_Listeners.firePropertyChange("qq_DecimalNullableLbl", oldValue, value);
}
/**
* qq_DecimalDataLbl: transformed from: qqds_TextGraphic
* TagId=63
* isInherited=FALSE
*/
public TextGraphic getqq_DecimalDataLbl() {
if (qq_DecimalDataLbl == null) {
qq_DecimalDataLbl = GraphicFactory.newTextGraphic("DecimalData\n", "");
// OPTIONAL UIutils.reloadLabelText(qq_DecimalDataLbl, mcat);
WidthPolicy.set(qq_DecimalDataLbl, Constants.SP_NATURAL);
HeightPolicy.set(qq_DecimalDataLbl, Constants.SP_NATURAL);
qq_DecimalDataLbl.setMinimumSize(new Dimension(77, 16));
}
return qq_DecimalDataLbl;
}
public void setqq_DecimalDataLbl(TextGraphic value) {
TextGraphic oldValue = qq_DecimalDataLbl;
qq_DecimalDataLbl = value;
this.qq_Listeners.firePropertyChange("qq_DecimalDataLbl", oldValue, value);
}
/**
* qq_DoubleNullableLbl: transformed from: qqds_TextGraphic
* TagId=64
* isInherited=FALSE
*/
public TextGraphic getqq_DoubleNullableLbl() {
if (qq_DoubleNullableLbl == null) {
qq_DoubleNullableLbl = GraphicFactory.newTextGraphic("DoubleNullable\n", "");
// OPTIONAL UIutils.reloadLabelText(qq_DoubleNullableLbl, mcat);
WidthPolicy.set(qq_DoubleNullableLbl, Constants.SP_NATURAL);
HeightPolicy.set(qq_DoubleNullableLbl, Constants.SP_NATURAL);
qq_DoubleNullableLbl.setMinimumSize(new Dimension(91, 16));
}
return qq_DoubleNullableLbl;
}
public void setqq_DoubleNullableLbl(TextGraphic value) {
TextGraphic oldValue = qq_DoubleNullableLbl;
qq_DoubleNullableLbl = value;
this.qq_Listeners.firePropertyChange("qq_DoubleNullableLbl", oldValue, value);
}
/**
* qq_DoubleDataLbl: transformed from: qqds_TextGraphic
* TagId=65
* isInherited=FALSE
*/
public TextGraphic getqq_DoubleDataLbl() {
if (qq_DoubleDataLbl == null) {
qq_DoubleDataLbl = GraphicFactory.newTextGraphic("DoubleData\n", "");
qq_DoubleDataLbl.setHorizontalAlignment( SwingConstants.LEFT );
// OPTIONAL UIutils.reloadLabelText(qq_DoubleDataLbl, mcat);
WidthPolicy.set(qq_DoubleDataLbl, Constants.SP_NATURAL);
HeightPolicy.set(qq_DoubleDataLbl, Constants.SP_NATURAL);
qq_DoubleDataLbl.setMinimumSize(new Dimension(72, 16));
}
return qq_DoubleDataLbl;
}
public void setqq_DoubleDataLbl(TextGraphic value) {
TextGraphic oldValue = qq_DoubleDataLbl;
qq_DoubleDataLbl = value;
this.qq_Listeners.firePropertyChange("qq_DoubleDataLbl", oldValue, value);
}
/**
* qq_intN: transformed from: qqds_DataField
* TagId=66
* isInherited=FALSE
*/
public DataField getqq_intN() {
if (qq_intN == null) {
// Mask type: MK_NONE
qq_intN = DataFieldFactory.newDataField("intN", 13, IntegerNullable.class, Constants.MK_NONE);
qq_intN.setOriginalFormatText(null);
qq_intN.setHorizontalAlignment(JTextField.RIGHT);
getBindingManager().bindComponent(qq_intN, "intN");
WidthPolicy.set(qq_intN, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_intN, Constants.SP_NATURAL);
qq_intN.setMinimumSize(new Dimension(103, 21));
qq_intN.setSize(new Dimension(103, 21));
}
return qq_intN;
}
public void setqq_intN(DataField value) {
DataField oldValue = qq_intN;
qq_intN = value;
this.qq_Listeners.firePropertyChange("qq_intN", oldValue, value);
}
/**
* qq_intD: transformed from: qqds_DataField
* TagId=67
* isInherited=FALSE
*/
public DataField getqq_intD() {
if (qq_intD == null) {
// Mask type: MK_NONE
qq_intD = DataFieldFactory.newDataField("intD", 13, IntegerData.class, Constants.MK_NONE);
qq_intD.setOriginalFormatText(null);
qq_intD.setHorizontalAlignment(JTextField.RIGHT);
getBindingManager().bindComponent(qq_intD, "intD");
WidthPolicy.set(qq_intD, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_intD, Constants.SP_NATURAL);
qq_intD.setMinimumSize(new Dimension(105, 21));
qq_intD.setSize(new Dimension(105, 21));
}
return qq_intD;
}
public void setqq_intD(DataField value) {
DataField oldValue = qq_intD;
qq_intD = value;
this.qq_Listeners.firePropertyChange("qq_intD", oldValue, value);
}
/**
* qq_decN: transformed from: qqds_DataField
* TagId=68
* isInherited=FALSE
*/
public DataField getqq_decN() {
if (qq_decN == null) {
// Mask type: MK_TEMPLATE
// original Forte format string -->$#,##0.00<--
this.qq_decN = DataFieldFactory.newDataField("decN", 13, "$#,##0.00", DecimalNullable.class);
qq_decN.setOriginalFormatText("$#,##0.00");
qq_decN.setHorizontalAlignment(JTextField.RIGHT);
getBindingManager().bindComponent(qq_decN, "decN");
WidthPolicy.set(qq_decN, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_decN, Constants.SP_NATURAL);
qq_decN.setMinimumSize(new Dimension(100, 21));
qq_decN.setSize(new Dimension(100, 21));
}
return qq_decN;
}
public void setqq_decN(DataField value) {
DataField oldValue = qq_decN;
qq_decN = value;
this.qq_Listeners.firePropertyChange("qq_decN", oldValue, value);
}
/**
* qq_decD: transformed from: qqds_DataField
* TagId=69
* isInherited=FALSE
*/
public DataField getqq_decD() {
if (qq_decD == null) {
// Mask type: MK_TEMPLATE
// original Forte format string -->CURRENCY<--
this.qq_decD = DataFieldFactory.newDataField("decD", 13, UIutils.getCurrencyPattern(), DecimalData.class);
qq_decD.setOriginalFormatText("CURRENCY");
qq_decD.setHorizontalAlignment(JTextField.RIGHT);
getBindingManager().bindComponent(qq_decD, "decD");
WidthPolicy.set(qq_decD, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_decD, Constants.SP_NATURAL);
qq_decD.setMinimumSize(new Dimension(101, 21));
qq_decD.setSize(new Dimension(101, 21));
}
return qq_decD;
}
public void setqq_decD(DataField value) {
DataField oldValue = qq_decD;
qq_decD = value;
this.qq_Listeners.firePropertyChange("qq_decD", oldValue, value);
}
/**
* qq_doubN: transformed from: qqds_DataField
* TagId=70
* isInherited=FALSE
*/
public DataField getqq_doubN() {
if (qq_doubN == null) {
// Mask type: MK_NONE
qq_doubN = DataFieldFactory.newDataField("doubN", 12, DoubleNullable.class, Constants.MK_NONE);
qq_doubN.setOriginalFormatText(null);
qq_doubN.setHorizontalAlignment(JTextField.RIGHT);
getBindingManager().bindComponent(qq_doubN, "doubN");
WidthPolicy.set(qq_doubN, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_doubN, Constants.SP_NATURAL);
qq_doubN.setMinimumSize(new Dimension(100, 21));
qq_doubN.setSize(new Dimension(100, 21));
}
return qq_doubN;
}
public void setqq_doubN(DataField value) {
DataField oldValue = qq_doubN;
qq_doubN = value;
this.qq_Listeners.firePropertyChange("qq_doubN", oldValue, value);
}
/**
* qq_doubD: transformed from: qqds_DataField
* TagId=71
* isInherited=FALSE
*/
public DataField getqq_doubD() {
if (qq_doubD == null) {
// Mask type: MK_NONE
qq_doubD = DataFieldFactory.newDataField("doubD", 12, DoubleData.class, Constants.MK_NONE);
qq_doubD.setOriginalFormatText(null);
qq_doubD.setHorizontalAlignment(JTextField.RIGHT);
getBindingManager().bindComponent(qq_doubD, "doubD");
WidthPolicy.set(qq_doubD, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_doubD, Constants.SP_NATURAL);
qq_doubD.setMinimumSize(new Dimension(98, 21));
qq_doubD.setSize(new Dimension(98, 21));
}
return qq_doubD;
}
public void setqq_doubD(DataField value) {
DataField oldValue = qq_doubD;
qq_doubD = value;
this.qq_Listeners.firePropertyChange("qq_doubD", oldValue, value);
}
/**
* qq_GridField50: transformed from: qqds_GridField
* TagId=50
* isInherited=FALSE
* In forte this was a 2x12 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_GridField50Properties() {
qq_GridField50.setCollapsed(true);
qq_GridField50.setHeightPolicy(Constants.SP_NATURAL);
qq_GridField50.setWidthPolicy(Constants.SP_NATURAL);
qq_GridField50.setBackground(null);
}
public GridField getqq_GridField50() {
if (qq_GridField50 == null) {
qq_GridField50 = CompoundFieldFactory.newGridField("qq_GridField50", true);
setqq_GridField50Properties();
qq_GridField50.setMinimumSize(new Dimension(220, 252));
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_GridField50.add( getqq_IntegerDataLbl(), 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_GridField50.add( getqq_count(), qq_gbc1 );
GridBagConstraints qq_gbc2 = new GridBagConstraints();
qq_gbc2.gridx = 0; // Column 1
qq_gbc2.gridy = 1; // Row 2
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_GridField50.add( getqq_DateTimeNullableLbl(), qq_gbc2 );
GridBagConstraints qq_gbc3 = new GridBagConstraints();
qq_gbc3.gridx = 1; // Column 2
qq_gbc3.gridy = 1; // Row 2
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_GridField50.add( getqq_dtn(), qq_gbc3 );
GridBagConstraints qq_gbc4 = new GridBagConstraints();
qq_gbc4.gridx = 0; // Column 1
qq_gbc4.gridy = 2; // Row 3
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_GridField50.add( getqq_DateTimeDataLbl(), qq_gbc4 );
GridBagConstraints qq_gbc5 = new GridBagConstraints();
qq_gbc5.gridx = 1; // Column 2
qq_gbc5.gridy = 2; // Row 3
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_GridField50.add( getqq_dtd(), qq_gbc5 );
GridBagConstraints qq_gbc6 = new GridBagConstraints();
qq_gbc6.gridx = 0; // Column 1
qq_gbc6.gridy = 3; // Row 4
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_GridField50.add( getqq_TextNullableLbl(), qq_gbc6 );
GridBagConstraints qq_gbc7 = new GridBagConstraints();
qq_gbc7.gridx = 1; // Column 2
qq_gbc7.gridy = 3; // Row 4
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_GridField50.add( getqq_tn(), qq_gbc7 );
GridBagConstraints qq_gbc8 = new GridBagConstraints();
qq_gbc8.gridx = 0; // Column 1
qq_gbc8.gridy = 4; // Row 5
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_GridField50.add( getqq_TextDataLbl(), qq_gbc8 );
GridBagConstraints qq_gbc9 = new GridBagConstraints();
qq_gbc9.gridx = 1; // Column 2
qq_gbc9.gridy = 4; // Row 5
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_GridField50.add( getqq_TD(), qq_gbc9 );
GridBagConstraints qq_gbc10 = new GridBagConstraints();
qq_gbc10.gridx = 0; // Column 1
qq_gbc10.gridy = 5; // Row 6
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_GridField50.add( getqq_IntegerNullableLbl(), qq_gbc10 );
GridBagConstraints qq_gbc11 = new GridBagConstraints();
qq_gbc11.gridx = 1; // Column 2
qq_gbc11.gridy = 5; // Row 6
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_GridField50.add( getqq_intN(), qq_gbc11 );
GridBagConstraints qq_gbc12 = new GridBagConstraints();
qq_gbc12.gridx = 0; // Column 1
qq_gbc12.gridy = 6; // Row 7
qq_gbc12.weightx = 0;
qq_gbc12.weighty = 0;
qq_gbc12.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
qq_gbc12.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
qq_gbc12.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField50.add( getqq_IntegerDataLbl1(), qq_gbc12 );
GridBagConstraints qq_gbc13 = new GridBagConstraints();
qq_gbc13.gridx = 1; // Column 2
qq_gbc13.gridy = 6; // Row 7
qq_gbc13.weightx = 0;
qq_gbc13.weighty = 0;
qq_gbc13.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
qq_gbc13.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
qq_gbc13.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField50.add( getqq_intD(), qq_gbc13 );
GridBagConstraints qq_gbc14 = new GridBagConstraints();
qq_gbc14.gridx = 0; // Column 1
qq_gbc14.gridy = 7; // Row 8
qq_gbc14.weightx = 0;
qq_gbc14.weighty = 0;
qq_gbc14.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
qq_gbc14.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
qq_gbc14.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField50.add( getqq_DecimalNullableLbl(), qq_gbc14 );
GridBagConstraints qq_gbc15 = new GridBagConstraints();
qq_gbc15.gridx = 1; // Column 2
qq_gbc15.gridy = 7; // Row 8
qq_gbc15.weightx = 0;
qq_gbc15.weighty = 0;
qq_gbc15.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
qq_gbc15.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
qq_gbc15.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField50.add( getqq_decN(), qq_gbc15 );
GridBagConstraints qq_gbc16 = new GridBagConstraints();
qq_gbc16.gridx = 0; // Column 1
qq_gbc16.gridy = 8; // Row 9
qq_gbc16.weightx = 0;
qq_gbc16.weighty = 0;
qq_gbc16.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
qq_gbc16.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
qq_gbc16.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField50.add( getqq_DecimalDataLbl(), qq_gbc16 );
GridBagConstraints qq_gbc17 = new GridBagConstraints();
qq_gbc17.gridx = 1; // Column 2
qq_gbc17.gridy = 8; // Row 9
qq_gbc17.weightx = 0;
qq_gbc17.weighty = 0;
qq_gbc17.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
qq_gbc17.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
qq_gbc17.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField50.add( getqq_decD(), qq_gbc17 );
GridBagConstraints qq_gbc18 = new GridBagConstraints();
qq_gbc18.gridx = 0; // Column 1
qq_gbc18.gridy = 9; // Row 10
qq_gbc18.weightx = 0;
qq_gbc18.weighty = 0;
qq_gbc18.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
qq_gbc18.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
qq_gbc18.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField50.add( getqq_DoubleNullableLbl(), qq_gbc18 );
GridBagConstraints qq_gbc19 = new GridBagConstraints();
qq_gbc19.gridx = 1; // Column 2
qq_gbc19.gridy = 9; // Row 10
qq_gbc19.weightx = 0;
qq_gbc19.weighty = 0;
qq_gbc19.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
qq_gbc19.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
qq_gbc19.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField50.add( getqq_doubN(), qq_gbc19 );
GridBagConstraints qq_gbc20 = new GridBagConstraints();
qq_gbc20.gridx = 0; // Column 1
qq_gbc20.gridy = 10; // Row 11
qq_gbc20.weightx = 0;
qq_gbc20.weighty = 0;
qq_gbc20.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
qq_gbc20.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
qq_gbc20.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField50.add( getqq_DoubleDataLbl(), qq_gbc20 );
GridBagConstraints qq_gbc21 = new GridBagConstraints();
qq_gbc21.gridx = 1; // Column 2
qq_gbc21.gridy = 10; // Row 11
qq_gbc21.weightx = 0;
qq_gbc21.weighty = 0;
qq_gbc21.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
qq_gbc21.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
qq_gbc21.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField50.add( getqq_doubD(), qq_gbc21 );
GridBagConstraints qq_gbc22 = new GridBagConstraints();
qq_gbc22.gridx = 0; // Column 1
qq_gbc22.gridy = 11; // Row 12
qq_gbc22.weightx = 0;
qq_gbc22.weighty = 0;
qq_gbc22.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
qq_gbc22.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
qq_gbc22.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField50.add( getqq_StringLbl(), qq_gbc22 );
GridBagConstraints qq_gbc23 = new GridBagConstraints();
qq_gbc23.gridx = 1; // Column 2
qq_gbc23.gridy = 11; // Row 12
qq_gbc23.weightx = 0;
qq_gbc23.weighty = 0;
qq_gbc23.anchor = GridBagConstraints.CENTER; // Gravity - original: CG_DEFAULT gf
qq_gbc23.fill = GridBagConstraints.NONE; // Size to parent - original: No size to parent
qq_gbc23.insets = new Insets(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField50.add( getqq_Str(), qq_gbc23 );
}
return qq_GridField50;
}
public void setqq_GridField50(GridField value) {
GridField oldValue = qq_GridField50;
qq_GridField50 = value;
this.qq_Listeners.firePropertyChange("qq_GridField50", oldValue, value);
}
/**
* qq_list_sp: transformed from: qqds_ArrayField
* TagId=14
* isInherited=FALSE
*/
public JScrollPane getqq_list_sp() {
if (qq_list_sp == null) {
qq_list_sp = CompoundFieldFactory.newScrollPane();
qq_list_sp.setName("list");
qq_list_sp.setViewportView(getqq_list());
qq_list_sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
qq_list_sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
qq_list_sp.setBorder(BorderFactory.createEmptyBorder(1, 1, 1, 1));
qq_list_sp.setBackground(null);
qq_list_sp.getViewport().setBackground(null);
FrameColor.set(qq_list_sp, Constants.C_INHERIT);
WidthPolicy.set(qq_list_sp, Constants.SP_NATURAL);
HeightPolicy.set(qq_list_sp, Constants.SP_NATURAL);
// OPTIONAL qq_list_sp.setSize(new Dimension(180, 88));
qq_list_sp.setMinimumSize(new Dimension(180, 88));
qq_list_sp.setPreferredSize(new Dimension(180, 88));
}
return qq_list_sp;
}
public void setqq_list_sp(JScrollPane value) {
JScrollPane oldValue = qq_list_sp;
qq_list_sp = value;
this.qq_Listeners.firePropertyChange("qq_list_sp", oldValue, value);
}
/**
* qq_list: transformed from: qqds_ArrayField
* TagId=14
* isInherited=FALSE
*/
public ArrayField getqq_list() {
if (qq_list == null) {
qq_list = TableFactory.newArrayField("list", 21);
this.getBindingManager().bindComponent(qq_list, "list", ListElement.class,
new String[] {"textValue", "integerValue"});
qq_list.setVisibleRows(3);
((ArrayFieldModel)qq_list.getModel()).setAllowsAppend(true);
// === Column model setup ===
// TextValue converted from qqds_DataField
ArrayColumn qq_listArray_TextValue_Column = new ArrayColumn("TextValue", 0, 83, new FormattedCellRenderer(getqq_listArray_TextValue()), new FormattedCellEditor(getqq_listArray_TextValue()), true);
qq_listArray_TextValue_Column.setHeaderValue("TextValue");
qq_listArray_TextValue_Column.setVisible(true);
qq_list.addColumn(qq_listArray_TextValue_Column);
// IntegerValue converted from qqds_DataField
ArrayColumn qq_listArray_IntegerValue_Column = new ArrayColumn("IntegerValue", 1, 83, new FormattedCellRenderer(getqq_listArray_IntegerValue()), new FormattedCellEditor(getqq_listArray_IntegerValue()), true);
qq_listArray_IntegerValue_Column.setHeaderValue("IntegerValue");
qq_listArray_IntegerValue_Column.setVisible(true);
qq_list.addColumn(qq_listArray_IntegerValue_Column);
// === End column model ===
TableFactory.postModelArrayField(qq_list);
}
return qq_list;
}
public void setqq_list(ArrayField value) {
ArrayField oldValue = qq_list;
qq_list = value;
this.qq_Listeners.firePropertyChange("qq_list", oldValue, value);
}
/**
* qq_pop: transformed from: qqds_PushButton
* TagId=21
* isInherited=FALSE
*/
public JButton getqq_pop() {
if (qq_pop == null) {
qq_pop = PushButtonFactory.newInstance("pop", "Pop");
qq_pop.setVerifyInputWhenFocusTarget(true);
WidthPolicy.set(qq_pop, Constants.SP_NATURAL);
HeightPolicy.set(qq_pop, Constants.SP_NATURAL);
qq_pop.setMinimumSize(new Dimension(36, 26));
}
return qq_pop;
}
public void setqq_pop(JButton value) {
JButton oldValue = qq_pop;
qq_pop = value;
this.qq_Listeners.firePropertyChange("qq_pop", oldValue, value);
}
/**
* qq_GridField49: transformed from: qqds_GridField
* TagId=49
* isInherited=FALSE
* In forte this was a 1x3 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_GridField49Properties() {
qq_GridField49.setCollapsed(true);
qq_GridField49.setHeightPolicy(Constants.SP_NATURAL);
qq_GridField49.setWidthPolicy(Constants.SP_NATURAL);
qq_GridField49.setBackground(null);
}
public GridField getqq_GridField49() {
if (qq_GridField49 == null) {
qq_GridField49 = CompoundFieldFactory.newGridField("qq_GridField49", true);
setqq_GridField49Properties();
qq_GridField49.setMinimumSize(new Dimension(220, 367));
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_GridField49.add( getqq_GridField50(), 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(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField49.add( getqq_list_sp(), 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(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField49.add( getqq_pop(), qq_gbc2 );
}
return qq_GridField49;
}
public void setqq_GridField49(GridField value) {
GridField oldValue = qq_GridField49;
qq_GridField49 = value;
this.qq_Listeners.firePropertyChange("qq_GridField49", oldValue, value);
}
/**
* qq_t_t_TD: transformed from: qqds_DataField
* TagId=38
* isInherited=FALSE
*/
public DataField getqq_t_t_TD() {
if (qq_t_t_TD == null) {
// Mask type: MK_NONE
qq_t_t_TD = DataFieldFactory.newDataField("TD", 14, TextData.class, Constants.MK_NONE);
qq_t_t_TD.setValue("");
qq_t_t_TD.setOriginalFormatText(null);
qq_t_t_TD.setHorizontalAlignment(JTextField.LEFT);
getBindingManager().bindComponent(qq_t_t_TD, "t.t.td");
WidthPolicy.set(qq_t_t_TD, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_t_t_TD, Constants.SP_NATURAL);
qq_t_t_TD.setMinimumSize(new Dimension(112, 21));
qq_t_t_TD.setSize(new Dimension(112, 21));
}
return qq_t_t_TD;
}
public void setqq_t_t_TD(DataField value) {
DataField oldValue = qq_t_t_TD;
qq_t_t_TD = value;
this.qq_Listeners.firePropertyChange("qq_t_t_TD", oldValue, value);
}
/**
* qq_t_t_Str: transformed from: qqds_DataField
* TagId=39
* isInherited=FALSE
*/
public DataField getqq_t_t_Str() {
if (qq_t_t_Str == null) {
// Mask type: MK_NONE
qq_t_t_Str = DataFieldFactory.newDataField("Str", 14, Constants.MK_NONE);
qq_t_t_Str.setOriginalFormatText(null);
qq_t_t_Str.setHorizontalAlignment(JTextField.LEFT);
getBindingManager().bindComponent(qq_t_t_Str, "t.t.str");
WidthPolicy.set(qq_t_t_Str, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_t_t_Str, Constants.SP_NATURAL);
qq_t_t_Str.setMinimumSize(new Dimension(112, 21));
qq_t_t_Str.setSize(new Dimension(112, 21));
}
return qq_t_t_Str;
}
public void setqq_t_t_Str(DataField value) {
DataField oldValue = qq_t_t_Str;
qq_t_t_Str = value;
this.qq_Listeners.firePropertyChange("qq_t_t_Str", oldValue, value);
}
/**
* qq_t_t_list_sp: transformed from: qqds_ArrayField
* TagId=40
* isInherited=FALSE
*/
public JScrollPane getqq_t_t_list_sp() {
if (qq_t_t_list_sp == null) {
qq_t_t_list_sp = CompoundFieldFactory.newScrollPane();
qq_t_t_list_sp.setName("list");
qq_t_t_list_sp.setViewportView(getqq_t_t_list());
qq_t_t_list_sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
qq_t_t_list_sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
qq_t_t_list_sp.setBorder(BorderFactory.createEmptyBorder(1, 1, 1, 1));
qq_t_t_list_sp.setBackground(null);
qq_t_t_list_sp.getViewport().setBackground(null);
FrameColor.set(qq_t_t_list_sp, Constants.C_INHERIT);
WidthPolicy.set(qq_t_t_list_sp, Constants.SP_NATURAL);
HeightPolicy.set(qq_t_t_list_sp, Constants.SP_NATURAL);
// OPTIONAL qq_t_t_list_sp.setSize(new Dimension(180, 88));
qq_t_t_list_sp.setMinimumSize(new Dimension(180, 88));
qq_t_t_list_sp.setPreferredSize(new Dimension(180, 88));
}
return qq_t_t_list_sp;
}
public void setqq_t_t_list_sp(JScrollPane value) {
JScrollPane oldValue = qq_t_t_list_sp;
qq_t_t_list_sp = value;
this.qq_Listeners.firePropertyChange("qq_t_t_list_sp", oldValue, value);
}
/**
* qq_t_t_list: transformed from: qqds_ArrayField
* TagId=40
* isInherited=FALSE
*/
public ArrayField getqq_t_t_list() {
if (qq_t_t_list == null) {
qq_t_t_list = TableFactory.newArrayField("list", 21);
this.getBindingManager().bindComponent(qq_t_t_list, "t.t.list", ListElement.class,
new String[] {"textValue", "integerValue"});
qq_t_t_list.setVisibleRows(3);
((ArrayFieldModel)qq_t_t_list.getModel()).setAllowsAppend(true);
// === Column model setup ===
// TextValue converted from qqds_DataField
ArrayColumn qq_t_t_listArray_TextValue_Column = new ArrayColumn("TextValue", 0, 83, new FormattedCellRenderer(getqq_t_t_listArray_TextValue()), new FormattedCellEditor(getqq_t_t_listArray_TextValue()), true);
qq_t_t_listArray_TextValue_Column.setHeaderValue("TextValue");
qq_t_t_listArray_TextValue_Column.setVisible(true);
qq_t_t_list.addColumn(qq_t_t_listArray_TextValue_Column);
// IntegerValue converted from qqds_DataField
ArrayColumn qq_t_t_listArray_IntegerValue_Column = new ArrayColumn("IntegerValue", 1, 83, new FormattedCellRenderer(getqq_t_t_listArray_IntegerValue()), new FormattedCellEditor(getqq_t_t_listArray_IntegerValue()), true);
qq_t_t_listArray_IntegerValue_Column.setHeaderValue("IntegerValue");
qq_t_t_listArray_IntegerValue_Column.setVisible(true);
qq_t_t_list.addColumn(qq_t_t_listArray_IntegerValue_Column);
// === End column model ===
TableFactory.postModelArrayField(qq_t_t_list);
}
return qq_t_t_list;
}
public void setqq_t_t_list(ArrayField value) {
ArrayField oldValue = qq_t_t_list;
qq_t_t_list = value;
this.qq_Listeners.firePropertyChange("qq_t_t_list", oldValue, value);
}
/**
* qq_t_t: transformed from: qqds_GridField
* TagId=37
* isInherited=FALSE
* In forte this was a 1x3 grid field, displaying a things object.
* There are no cell margins set
* The width policy is set to Natural, and the height policy is set to Natural.
*/
protected void setqq_t_tProperties() {
Caption.set(qq_t_t, "t");
FrameWeight.set(qq_t_t, Constants.W_DEFAULT);
qq_t_t.setCollapsed(true);
qq_t_t.setHorzDividerWeight(Constants.W_DEFAULT);
qq_t_t.setVertDividerWeight(Constants.W_DEFAULT);
qq_t_t.setHeightPolicy(Constants.SP_NATURAL);
qq_t_t.setWidthPolicy(Constants.SP_NATURAL);
qq_t_t.setBackground(null);
}
public GridField getqq_t_t() {
if (qq_t_t == null) {
qq_t_t = CompoundFieldFactory.newGridField("t", false);
getBindingManager().bindComponent(qq_t_t, "t.t");
setqq_t_tProperties();
qq_t_t.setMinimumSize(new Dimension(184, 148));
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_t_t.add( getqq_t_t_TD(), 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(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_t_t.add( getqq_t_t_Str(), 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(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_t_t.add( getqq_t_t_list_sp(), qq_gbc2 );
}
return qq_t_t;
}
public void setqq_t_t(GridField value) {
GridField oldValue = qq_t_t;
qq_t_t = value;
this.qq_Listeners.firePropertyChange("qq_t_t", oldValue, value);
}
/**
* qq_t: transformed from: qqds_GridField
* TagId=36
* isInherited=FALSE
* In forte this was a 1x1 grid field, displaying a thongs object.
* The top cell margin is 100 mils, the bottom cell margin is 100 mils and the left and right cell margins are both 100 mils.
* The width policy is set to Natural, and the height policy is set to Natural.
*/
protected void setqq_tProperties() {
Caption.set(qq_t, "Thongs");
FrameWeight.set(qq_t, Constants.W_DEFAULT);
qq_t.setCellTopMargin(50);
qq_t.setCellBottomMargin(95);
qq_t.setCellLeftMargin(50);
qq_t.setCellRightMargin(50);
qq_t.setCollapsed(true);
qq_t.setHeightPolicy(Constants.SP_NATURAL);
qq_t.setWidthPolicy(Constants.SP_NATURAL);
qq_t.setBackground(null);
}
public GridField getqq_t() {
if (qq_t == null) {
qq_t = CompoundFieldFactory.newGridField("t", false);
getBindingManager().bindComponent(qq_t, "t");
setqq_tProperties();
qq_t.setMinimumSize(new Dimension(208, 192));
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, 9, 4); // Top, Left, Bottom, Right Margin
qq_t.add( getqq_t_t(), qq_gbc );
}
return qq_t;
}
public void setqq_t(GridField value) {
GridField oldValue = qq_t;
qq_t = value;
this.qq_Listeners.firePropertyChange("qq_t", oldValue, value);
}
/**
* qq_popcomplex: transformed from: qqds_PushButton
* TagId=22
* isInherited=FALSE
*/
public JButton getqq_popcomplex() {
if (qq_popcomplex == null) {
qq_popcomplex = PushButtonFactory.newInstance("popcomplex", "Pop");
qq_popcomplex.setVerifyInputWhenFocusTarget(true);
WidthPolicy.set(qq_popcomplex, Constants.SP_NATURAL);
HeightPolicy.set(qq_popcomplex, Constants.SP_NATURAL);
qq_popcomplex.setMinimumSize(new Dimension(36, 26));
}
return qq_popcomplex;
}
public void setqq_popcomplex(JButton value) {
JButton oldValue = qq_popcomplex;
qq_popcomplex = value;
this.qq_Listeners.firePropertyChange("qq_popcomplex", oldValue, value);
}
/**
* qq_GridField51: transformed from: qqds_GridField
* TagId=51
* isInherited=FALSE
* In forte this was a 1x2 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_GridField51Properties() {
qq_GridField51.setCollapsed(true);
qq_GridField51.setHeightPolicy(Constants.SP_NATURAL);
qq_GridField51.setWidthPolicy(Constants.SP_NATURAL);
qq_GridField51.setBackground(null);
}
public GridField getqq_GridField51() {
if (qq_GridField51 == null) {
qq_GridField51 = CompoundFieldFactory.newGridField("qq_GridField51", true);
setqq_GridField51Properties();
qq_GridField51.setMinimumSize(new Dimension(208, 218));
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_GridField51.add( getqq_t(), 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(0, 0, 0, 0); // Top, Left, Bottom, Right Margin
qq_GridField51.add( getqq_popcomplex(), qq_gbc1 );
}
return qq_GridField51;
}
public void setqq_GridField51(GridField value) {
GridField oldValue = qq_GridField51;
qq_GridField51 = value;
this.qq_Listeners.firePropertyChange("qq_GridField51", oldValue, value);
}
/**
* qq_GridField48: transformed from: qqds_GridField
* TagId=48
* isInherited=FALSE
* In forte this was a 2x1 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_GridField48Properties() {
qq_GridField48.setCollapsed(true);
qq_GridField48.setHeightPolicy(Constants.SP_NATURAL);
qq_GridField48.setWidthPolicy(Constants.SP_NATURAL);
qq_GridField48.setBackground(null);
}
public GridField getqq_GridField48() {
if (qq_GridField48 == null) {
qq_GridField48 = CompoundFieldFactory.newGridField("qq_GridField48", true);
setqq_GridField48Properties();
qq_GridField48.setMinimumSize(new Dimension(428, 367));
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_GridField48.add( getqq_GridField49(), 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_GridField48.add( getqq_GridField51(), qq_gbc1 );
}
return qq_GridField48;
}
public void setqq_GridField48(GridField value) {
GridField oldValue = qq_GridField48;
qq_GridField48 = value;
this.qq_Listeners.firePropertyChange("qq_GridField48", 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_GridField48() );
}
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;
}
/**
* qq_listArray_TextValue: transformed from: qqds_DataField
* TagId=15
* isInherited=FALSE
*/
public DataField getqq_listArray_TextValue() {
if (qq_listArray_TextValue == null) {
// Mask type: MK_NONE
qq_listArray_TextValue = DataFieldFactory.newDataField("TextValue", 10, TextData.class, Constants.MK_NONE);
qq_listArray_TextValue.setValue("");
qq_listArray_TextValue.setOriginalFormatText(null);
qq_listArray_TextValue.setHorizontalAlignment(JTextField.LEFT);
WidthPolicy.set(qq_listArray_TextValue, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_listArray_TextValue, Constants.SP_NATURAL);
qq_listArray_TextValue.setMinimumSize(new Dimension(83, 21));
qq_listArray_TextValue.setSize(new Dimension(83, 21));
qq_listArray_TextValue.setLocation(23, 244);
ArrayFieldCellHelper.setUpCellEditor(qq_listArray_TextValue, qq_list, 0, false);
}
return qq_listArray_TextValue;
}
public void setqq_listArray_TextValue(DataField value) {
DataField oldValue = qq_listArray_TextValue;
qq_listArray_TextValue = value;
this.qq_Listeners.firePropertyChange("qq_listArray_TextValue", oldValue, value);
}
/**
* qq_listArray_IntegerValue: transformed from: qqds_DataField
* TagId=17
* isInherited=FALSE
*/
public DataField getqq_listArray_IntegerValue() {
if (qq_listArray_IntegerValue == null) {
// Mask type: MK_NONE
qq_listArray_IntegerValue = DataFieldFactory.newDataField("IntegerValue", 10, Constants.MK_NONE);
qq_listArray_IntegerValue.setValue(new Integer(0));
qq_listArray_IntegerValue.setOriginalFormatText(null);
qq_listArray_IntegerValue.setHorizontalAlignment(JTextField.RIGHT);
WidthPolicy.set(qq_listArray_IntegerValue, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_listArray_IntegerValue, Constants.SP_NATURAL);
qq_listArray_IntegerValue.setMinimumSize(new Dimension(83, 21));
qq_listArray_IntegerValue.setSize(new Dimension(83, 21));
qq_listArray_IntegerValue.setLocation(129, 246);
ArrayFieldCellHelper.setUpCellEditor(qq_listArray_IntegerValue, qq_list, 1, false);
}
return qq_listArray_IntegerValue;
}
public void setqq_listArray_IntegerValue(DataField value) {
DataField oldValue = qq_listArray_IntegerValue;
qq_listArray_IntegerValue = value;
this.qq_Listeners.firePropertyChange("qq_listArray_IntegerValue", oldValue, value);
}
/**
* qq_t_t_listArray_TextValue: transformed from: qqds_DataField
* TagId=41
* isInherited=FALSE
*/
public DataField getqq_t_t_listArray_TextValue() {
if (qq_t_t_listArray_TextValue == null) {
// Mask type: MK_NONE
qq_t_t_listArray_TextValue = DataFieldFactory.newDataField("TextValue", 10, TextData.class, Constants.MK_NONE);
qq_t_t_listArray_TextValue.setValue("");
qq_t_t_listArray_TextValue.setOriginalFormatText(null);
qq_t_t_listArray_TextValue.setHorizontalAlignment(JTextField.LEFT);
WidthPolicy.set(qq_t_t_listArray_TextValue, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_t_t_listArray_TextValue, Constants.SP_NATURAL);
qq_t_t_listArray_TextValue.setMinimumSize(new Dimension(83, 21));
qq_t_t_listArray_TextValue.setSize(new Dimension(83, 21));
qq_t_t_listArray_TextValue.setLocation(23, 244);
ArrayFieldCellHelper.setUpCellEditor(qq_t_t_listArray_TextValue, qq_t_t_list, 0, false);
}
return qq_t_t_listArray_TextValue;
}
public void setqq_t_t_listArray_TextValue(DataField value) {
DataField oldValue = qq_t_t_listArray_TextValue;
qq_t_t_listArray_TextValue = value;
this.qq_Listeners.firePropertyChange("qq_t_t_listArray_TextValue", oldValue, value);
}
/**
* qq_t_t_listArray_IntegerValue: transformed from: qqds_DataField
* TagId=43
* isInherited=FALSE
*/
public DataField getqq_t_t_listArray_IntegerValue() {
if (qq_t_t_listArray_IntegerValue == null) {
// Mask type: MK_NONE
qq_t_t_listArray_IntegerValue = DataFieldFactory.newDataField("IntegerValue", 10, Constants.MK_NONE);
qq_t_t_listArray_IntegerValue.setValue(new Integer(0));
qq_t_t_listArray_IntegerValue.setOriginalFormatText(null);
qq_t_t_listArray_IntegerValue.setHorizontalAlignment(JTextField.RIGHT);
WidthPolicy.set(qq_t_t_listArray_IntegerValue, Constants.SP_EXPLICIT);
HeightPolicy.set(qq_t_t_listArray_IntegerValue, Constants.SP_NATURAL);
qq_t_t_listArray_IntegerValue.setMinimumSize(new Dimension(83, 21));
qq_t_t_listArray_IntegerValue.setSize(new Dimension(83, 21));
qq_t_t_listArray_IntegerValue.setLocation(129, 246);
ArrayFieldCellHelper.setUpCellEditor(qq_t_t_listArray_IntegerValue, qq_t_t_list, 1, false);
}
return qq_t_t_listArray_IntegerValue;
}
public void setqq_t_t_listArray_IntegerValue(DataField value) {
DataField oldValue = qq_t_t_listArray_IntegerValue;
qq_t_t_listArray_IntegerValue = value;
this.qq_Listeners.firePropertyChange("qq_t_t_listArray_IntegerValue", oldValue, value);
}
/**
* Initialise the window and all its children.
*/
protected void initialize() {
if (this.Form == null) {
this.setName( "one" );
this.setTitle( "Data Mapping" );
this.setSystemClosePolicy(Constants.SC_ENABLEDSHUTDOWN);
if (this.getContentPane() != this.getForm()) {
this.setContentPane(getForm());
}
this.qq_setupWindowUsage();
this.setResizable( true );
this.setAlwaysOnTop(false);
UserWindow.setIconizeEnabled(this, true);
UserWindow.setMaximizeEnabled(this, false);
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_GridField48(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_GridField49(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_GridField50(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_dtd(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_count(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_TD(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_Str(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_DateTimeDataLbl(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_TextDataLbl(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_StringLbl(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_IntegerDataLbl(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_dtn(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_DateTimeNullableLbl(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_TextNullableLbl(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_tn(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_IntegerNullableLbl(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_IntegerDataLbl1(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_DecimalNullableLbl(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_DecimalDataLbl(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_DoubleNullableLbl(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_DoubleDataLbl(), Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_intN(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_intD(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_decN(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_decD(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_doubN(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_doubD(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_list(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_listArray_TextValue(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_listArray_IntegerValue(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_pop(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_INACTIVE, Constants.FS_INACTIVE, Constants.FS_INACTIVE);
this.usage.add(getqq_GridField51(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_t(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_t_t(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_t_t_TD(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_t_t_Str(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_t_t_list(), Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_t_t_listArray_TextValue(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_t_t_listArray_IntegerValue(), Constants.FS_UPDATE, Constants.FS_VIEWONLY, Constants.FS_QUERY, Constants.FS_UPDATE, Constants.FS_UPDATE, Constants.FS_UPDATE);
this.usage.add(getqq_popcomplex(), 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);
One myClass = new One();
myClass.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
myClass.setVisible(true);
UIutils.processGUIActions();
}
} // end class one
// c Pass 2 Conversion Time: 718 milliseconds