source: tmcsimulator/trunk/src/tmcsim/client/ATMSBatchViewer.form @ 128

Revision 128, 5.0 KB checked in by jdalbey, 9 years ago (diff)

ATMSBatchDriver.java Added a GUI to display event queue. Highways.java modified to throw an exception when writeToFEP can't connect to FEP_Sim.

Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2
3<Form version="1.3" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo">
4  <Properties>
5    <Property name="defaultCloseOperation" type="int" value="3"/>
6  </Properties>
7  <SyntheticProperties>
8    <SyntheticProperty name="formSizePolicy" type="int" value="1"/>
9    <SyntheticProperty name="generateCenter" type="boolean" value="false"/>
10  </SyntheticProperties>
11  <AuxValues>
12    <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/>
13    <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/>
14    <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/>
15    <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/>
16    <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/>
17    <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/>
18    <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/>
19    <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/>
20    <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/>
21  </AuxValues>
22
23  <Layout>
24    <DimensionLayout dim="0">
25      <Group type="103" groupAlignment="0" attributes="0">
26          <Group type="102" alignment="0" attributes="0">
27              <Component id="pnlEvents" max="32767" attributes="0"/>
28              <EmptySpace max="-2" attributes="0"/>
29          </Group>
30      </Group>
31    </DimensionLayout>
32    <DimensionLayout dim="1">
33      <Group type="103" groupAlignment="0" attributes="0">
34          <Group type="102" alignment="0" attributes="0">
35              <Component id="pnlEvents" min="-2" max="-2" attributes="0"/>
36              <EmptySpace min="0" pref="129" max="32767" attributes="0"/>
37          </Group>
38      </Group>
39    </DimensionLayout>
40  </Layout>
41  <SubComponents>
42    <Container class="javax.swing.JPanel" name="pnlEvents">
43
44      <Layout>
45        <DimensionLayout dim="0">
46          <Group type="103" groupAlignment="0" attributes="0">
47              <Group type="102" alignment="1" attributes="0">
48                  <EmptySpace pref="83" max="32767" attributes="0"/>
49                  <Component id="scrollEvents" min="-2" pref="354" max="-2" attributes="0"/>
50                  <EmptySpace min="-2" pref="59" max="-2" attributes="0"/>
51              </Group>
52              <Group type="102" alignment="0" attributes="0">
53                  <EmptySpace min="-2" pref="186" max="-2" attributes="0"/>
54                  <Component id="txtClockTime" min="-2" pref="65" max="-2" attributes="0"/>
55                  <EmptySpace max="32767" attributes="0"/>
56              </Group>
57          </Group>
58        </DimensionLayout>
59        <DimensionLayout dim="1">
60          <Group type="103" groupAlignment="0" attributes="0">
61              <Group type="102" alignment="1" attributes="0">
62                  <Component id="txtClockTime" min="-2" pref="28" max="-2" attributes="0"/>
63                  <EmptySpace max="-2" attributes="0"/>
64                  <Component id="scrollEvents" pref="172" max="32767" attributes="0"/>
65                  <EmptySpace max="-2" attributes="0"/>
66              </Group>
67          </Group>
68        </DimensionLayout>
69      </Layout>
70      <SubComponents>
71        <Container class="javax.swing.JScrollPane" name="scrollEvents">
72          <AuxValues>
73            <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/>
74          </AuxValues>
75
76          <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
77          <SubComponents>
78            <Component class="javax.swing.JList" name="lstEvents">
79              <Properties>
80                <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
81                  <Font name="Noto Mono" size="12" style="0"/>
82                </Property>
83                <Property name="model" type="javax.swing.ListModel" editor="org.netbeans.modules.form.editors2.ListModelEditor">
84                  <StringArray count="2">
85                    <StringItem index="0" value="item 1"/>
86                    <StringItem index="1" value="item 2"/>
87                  </StringArray>
88                </Property>
89              </Properties>
90              <AuxValues>
91                <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="&lt;String&gt;"/>
92              </AuxValues>
93            </Component>
94          </SubComponents>
95        </Container>
96        <Component class="javax.swing.JLabel" name="txtClockTime">
97          <Properties>
98            <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
99              <Font name="Noto Sans" size="14" style="1"/>
100            </Property>
101            <Property name="text" type="java.lang.String" value="0:00:00"/>
102          </Properties>
103        </Component>
104      </SubComponents>
105    </Container>
106  </SubComponents>
107</Form>
Note: See TracBrowser for help on using the repository browser.