source: tmcsimulator-scriptbuilder/trunk/src/event/editor/TelephonePanel.form @ 187

Revision 187, 5.9 KB checked in by jdalbey, 6 years ago (diff)

TelephonePanel?.java deleted "Remove" button as it's function is not performed by the "Remove this event" button.

Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2
3<Form version="1.3" 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="0" attributes="0">
22                  <Group type="102" alignment="0" attributes="0">
23                      <Component id="addInstructorButton" min="-2" max="-2" attributes="0"/>
24                      <EmptySpace type="unrelated" max="-2" attributes="0"/>
25                      <Component id="addStudentButton" min="-2" pref="173" max="-2" attributes="0"/>
26                      <EmptySpace type="unrelated" max="-2" attributes="0"/>
27                      <Component id="deleteSelectedButton" min="-2" pref="178" max="-2" attributes="0"/>
28                      <EmptySpace pref="133" max="32767" attributes="0"/>
29                  </Group>
30                  <Group type="102" attributes="0">
31                      <Group type="103" groupAlignment="1" attributes="0">
32                          <Component id="jScrollPane1" alignment="0" pref="602" max="32767" attributes="0"/>
33                          <Group type="102" alignment="0" attributes="0">
34                              <Component id="jLabel1" min="-2" max="-2" attributes="0"/>
35                              <EmptySpace max="-2" attributes="0"/>
36                              <Component id="txtInstructorRole" pref="478" max="32767" attributes="0"/>
37                          </Group>
38                      </Group>
39                      <EmptySpace min="-2" pref="26" max="-2" attributes="0"/>
40                  </Group>
41              </Group>
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="49" max="-2" attributes="0"/>
49              <Group type="103" groupAlignment="3" attributes="0">
50                  <Component id="txtInstructorRole" alignment="3" min="-2" max="-2" attributes="0"/>
51                  <Component id="jLabel1" alignment="3" min="-2" max="-2" attributes="0"/>
52              </Group>
53              <EmptySpace type="separate" max="-2" attributes="0"/>
54              <Group type="103" groupAlignment="3" attributes="0">
55                  <Component id="addInstructorButton" alignment="3" min="-2" max="-2" attributes="0"/>
56                  <Component id="addStudentButton" alignment="3" min="-2" max="-2" attributes="0"/>
57                  <Component id="deleteSelectedButton" alignment="3" min="-2" max="-2" attributes="0"/>
58              </Group>
59              <EmptySpace type="unrelated" max="-2" attributes="0"/>
60              <Component id="jScrollPane1" pref="310" max="32767" attributes="0"/>
61              <EmptySpace max="-2" attributes="0"/>
62          </Group>
63      </Group>
64    </DimensionLayout>
65  </Layout>
66  <SubComponents>
67    <Component class="javax.swing.JButton" name="addStudentButton">
68      <Properties>
69        <Property name="text" type="java.lang.String" value="Add Student Line"/>
70        <Property name="toolTipText" type="java.lang.String" value="Adds a row for student dialog in the table"/>
71      </Properties>
72    </Component>
73    <Container class="javax.swing.JScrollPane" name="jScrollPane1">
74      <Properties>
75        <Property name="horizontalScrollBar" type="javax.swing.JScrollBar" editor="org.netbeans.modules.form.ComponentChooserEditor">
76          <ComponentRef name="null"/>
77        </Property>
78      </Properties>
79
80      <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
81    </Container>
82    <Component class="javax.swing.JButton" name="deleteSelectedButton">
83      <Properties>
84        <Property name="text" type="java.lang.String" value="Delete Selected Line"/>
85        <Property name="toolTipText" type="java.lang.String" value="Deletes the selected row in the table"/>
86      </Properties>
87    </Component>
88    <Component class="javax.swing.JButton" name="addInstructorButton">
89      <Properties>
90        <Property name="text" type="java.lang.String" value="Add Instructor Line"/>
91        <Property name="toolTipText" type="java.lang.String" value="Adds a row for instructor dialog in the table"/>
92      </Properties>
93      <Events>
94        <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="addInstructorButtonActionPerformed"/>
95      </Events>
96    </Component>
97    <Component class="javax.swing.JTextField" name="txtInstructorRole">
98      <Properties>
99        <Property name="toolTipText" type="java.lang.String" value="Specifies the role the instructor plays"/>
100      </Properties>
101    </Component>
102    <Component class="javax.swing.JLabel" name="jLabel1">
103      <Properties>
104        <Property name="text" type="java.lang.String" value="Role of instructor:"/>
105      </Properties>
106    </Component>
107  </SubComponents>
108</Form>
Note: See TracBrowser for help on using the repository browser.