source: tmcsimulator-scriptbuilder/trunk/src/event/editor/WitnessPanel.form @ 92

Revision 92, 5.7 KB checked in by bmcguffin, 9 years ago (diff)

Removed superfluous "Remove" buttons on several panels.

Removed interface "RemovablePanel?" as it was no longer necessary or useful; removed related methods from classes implementing it.

Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2
3<Form version="1.5" maxVersion="1.7" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
4  <AuxValues>
5    <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/>
6    <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/>
7    <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/>
8    <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/>
9    <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/>
10    <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="2"/>
11    <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/>
12    <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/>
13    <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/>
14  </AuxValues>
15
16  <Layout>
17    <DimensionLayout dim="0">
18      <Group type="103" groupAlignment="0" attributes="0">
19          <Group type="102" alignment="1" attributes="0">
20              <EmptySpace max="-2" attributes="0"/>
21              <Group type="103" groupAlignment="1" attributes="0">
22                  <Group type="102" alignment="0" attributes="0">
23                      <Group type="103" groupAlignment="0" attributes="0">
24                          <Component id="jLabel3" alignment="0" min="-2" max="-2" attributes="0"/>
25                          <Component id="jLabel1" alignment="0" min="-2" max="-2" attributes="0"/>
26                          <Component id="jLabel2" alignment="0" min="-2" max="-2" attributes="0"/>
27                      </Group>
28                      <EmptySpace min="-2" pref="15" max="-2" attributes="0"/>
29                      <Group type="103" groupAlignment="0" attributes="0">
30                          <Component id="txtLastName" alignment="1" pref="547" max="32767" attributes="0"/>
31                          <Component id="txtAddress" alignment="0" pref="547" max="32767" attributes="0"/>
32                          <Component id="txtFirstName" alignment="1" pref="547" max="32767" attributes="0"/>
33                      </Group>
34                  </Group>
35                  <Group type="102" alignment="0" attributes="0">
36                      <Component id="jLabel4" min="-2" max="-2" attributes="0"/>
37                      <EmptySpace type="unrelated" max="-2" attributes="0"/>
38                      <Component id="txtPhoneNumber" pref="547" max="32767" attributes="0"/>
39                  </Group>
40              </Group>
41              <EmptySpace max="-2" attributes="0"/>
42          </Group>
43      </Group>
44    </DimensionLayout>
45    <DimensionLayout dim="1">
46      <Group type="103" groupAlignment="0" attributes="0">
47          <Group type="102" alignment="0" attributes="0">
48              <EmptySpace min="-2" pref="47" max="-2" attributes="0"/>
49              <Group type="103" groupAlignment="3" attributes="0">
50                  <Component id="txtFirstName" alignment="3" min="-2" max="-2" attributes="0"/>
51                  <Component id="jLabel1" alignment="3" min="-2" max="-2" attributes="0"/>
52              </Group>
53              <EmptySpace max="-2" attributes="0"/>
54              <Group type="103" groupAlignment="3" attributes="0">
55                  <Component id="txtLastName" alignment="3" min="-2" max="-2" attributes="0"/>
56                  <Component id="jLabel2" alignment="3" min="-2" max="-2" attributes="0"/>
57              </Group>
58              <EmptySpace max="-2" attributes="0"/>
59              <Group type="103" groupAlignment="3" attributes="0">
60                  <Component id="txtAddress" alignment="3" min="-2" max="-2" attributes="0"/>
61                  <Component id="jLabel3" alignment="3" min="-2" max="-2" attributes="0"/>
62              </Group>
63              <EmptySpace max="-2" attributes="0"/>
64              <Group type="103" groupAlignment="3" attributes="0">
65                  <Component id="jLabel4" alignment="3" min="-2" max="-2" attributes="0"/>
66                  <Component id="txtPhoneNumber" alignment="3" min="-2" max="-2" attributes="0"/>
67              </Group>
68              <EmptySpace pref="168" max="32767" attributes="0"/>
69          </Group>
70      </Group>
71    </DimensionLayout>
72  </Layout>
73  <SubComponents>
74    <Component class="javax.swing.JLabel" name="jLabel1">
75      <Properties>
76        <Property name="text" type="java.lang.String" value="First Name"/>
77      </Properties>
78    </Component>
79    <Component class="javax.swing.JTextField" name="txtFirstName">
80    </Component>
81    <Component class="javax.swing.JLabel" name="jLabel2">
82      <Properties>
83        <Property name="text" type="java.lang.String" value="Last Name"/>
84      </Properties>
85    </Component>
86    <Component class="javax.swing.JTextField" name="txtLastName">
87    </Component>
88    <Component class="javax.swing.JLabel" name="jLabel3">
89      <Properties>
90        <Property name="text" type="java.lang.String" value="Street Address"/>
91      </Properties>
92    </Component>
93    <Component class="javax.swing.JTextField" name="txtAddress">
94    </Component>
95    <Component class="javax.swing.JLabel" name="jLabel4">
96      <Properties>
97        <Property name="text" type="java.lang.String" value="Phone Number"/>
98      </Properties>
99    </Component>
100    <Component class="javax.swing.JFormattedTextField" name="txtPhoneNumber">
101      <Properties>
102        <Property name="formatterFactory" type="javax.swing.JFormattedTextField$AbstractFormatterFactory" editor="org.netbeans.modules.form.editors.AbstractFormatterFactoryEditor">
103          <Format format="(###)###-####" subtype="-1" type="0"/>
104        </Property>
105      </Properties>
106    </Component>
107  </SubComponents>
108</Form>
Note: See TracBrowser for help on using the repository browser.