Skip to content

Commit 405bbe4

Browse files
committed
update 2
1 parent 8378eed commit 405bbe4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+607
-147
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/dist/

build/built-jar.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Mon, 27 Feb 2023 15:02:35 +0700
1+
#Sun, 30 Apr 2023 11:06:44 +0700
22

33

4-
D\:\\NetBeansProjects\\Oracle=
4+
D\:\\GitHub\\Oracle_Demo_Java=

build/classes/OracleConnection2.class

-2.2 KB
Binary file not shown.

build/classes/SQLExport$1.class

-726 Bytes
Binary file not shown.

build/classes/SQLExport$2.class

-728 Bytes
Binary file not shown.

build/classes/SQLExport$3.class

-525 Bytes
Binary file not shown.

build/classes/oracle/Instance$1.class

0 Bytes
Binary file not shown.

build/classes/oracle/Instance.class

-13 Bytes
Binary file not shown.

build/classes/oracle/Instance.form

+4-5
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,16 @@
2626
<Group type="103" groupAlignment="0" attributes="0">
2727
<Group type="102" alignment="0" attributes="0">
2828
<EmptySpace max="-2" attributes="0"/>
29-
<Component id="jScrollPane1" min="-2" pref="549" max="-2" attributes="0"/>
30-
<EmptySpace pref="14" max="32767" attributes="0"/>
29+
<Component id="jScrollPane1" pref="916" max="32767" attributes="0"/>
30+
<EmptySpace max="-2" attributes="0"/>
3131
</Group>
3232
</Group>
3333
</DimensionLayout>
3434
<DimensionLayout dim="1">
3535
<Group type="103" groupAlignment="0" attributes="0">
3636
<Group type="102" alignment="0" attributes="0">
37-
<EmptySpace max="-2" attributes="0"/>
38-
<Component id="jScrollPane1" min="-2" pref="371" max="-2" attributes="0"/>
39-
<EmptySpace pref="15" max="32767" attributes="0"/>
37+
<EmptySpace max="32767" attributes="0"/>
38+
<Component id="jScrollPane1" min="-2" pref="132" max="-2" attributes="0"/>
4039
</Group>
4140
</Group>
4241
</DimensionLayout>

build/classes/oracle/Main$7.class

0 Bytes
Binary file not shown.

build/classes/oracle/Main.class

189 Bytes
Binary file not shown.

build/classes/oracle/NewClass.class

-496 Bytes
Binary file not shown.

build/classes/oracle/PGA$1.class

203 Bytes
Binary file not shown.

build/classes/oracle/PGA$2.class

522 Bytes
Binary file not shown.

build/classes/oracle/PGA.class

2.62 KB
Binary file not shown.

build/classes/oracle/PGA.form

+26-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22

3-
<Form version="1.3" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo">
3+
<Form version="1.8" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo">
44
<Properties>
55
<Property name="defaultCloseOperation" type="int" value="2"/>
66
<Property name="name" type="java.lang.String" value="PGA" noResource="true"/>
@@ -24,19 +24,26 @@
2424
<Layout>
2525
<DimensionLayout dim="0">
2626
<Group type="103" groupAlignment="0" attributes="0">
27+
<Component id="jScrollPane1" alignment="0" max="32767" attributes="0"/>
2728
<Group type="102" alignment="0" attributes="0">
29+
<EmptySpace min="-2" pref="233" max="-2" attributes="0"/>
30+
<Component id="txtSearch" min="-2" pref="307" max="-2" attributes="0"/>
2831
<EmptySpace max="-2" attributes="0"/>
29-
<Component id="jScrollPane1" min="-2" pref="549" max="-2" attributes="0"/>
30-
<EmptySpace pref="14" max="32767" attributes="0"/>
32+
<Component id="btnSeach" min="-2" pref="91" max="-2" attributes="0"/>
33+
<EmptySpace pref="264" max="32767" attributes="0"/>
3134
</Group>
3235
</Group>
3336
</DimensionLayout>
3437
<DimensionLayout dim="1">
3538
<Group type="103" groupAlignment="0" attributes="0">
36-
<Group type="102" alignment="0" attributes="0">
39+
<Group type="102" alignment="1" attributes="0">
3740
<EmptySpace max="-2" attributes="0"/>
38-
<Component id="jScrollPane1" min="-2" pref="371" max="-2" attributes="0"/>
39-
<EmptySpace pref="15" max="32767" attributes="0"/>
41+
<Group type="103" groupAlignment="3" attributes="0">
42+
<Component id="txtSearch" alignment="3" min="-2" max="-2" attributes="0"/>
43+
<Component id="btnSeach" alignment="3" max="32767" attributes="0"/>
44+
</Group>
45+
<EmptySpace pref="10" max="32767" attributes="0"/>
46+
<Component id="jScrollPane1" min="-2" pref="469" max="-2" attributes="0"/>
4047
</Group>
4148
</Group>
4249
</DimensionLayout>
@@ -63,5 +70,18 @@
6370
</Component>
6471
</SubComponents>
6572
</Container>
73+
<Component class="javax.swing.JTextField" name="txtSearch">
74+
<Properties>
75+
<Property name="focusCycleRoot" type="boolean" value="true"/>
76+
</Properties>
77+
</Component>
78+
<Component class="javax.swing.JButton" name="btnSeach">
79+
<Properties>
80+
<Property name="text" type="java.lang.String" value="T&#xec;m"/>
81+
</Properties>
82+
<Events>
83+
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSeachActionPerformed"/>
84+
</Events>
85+
</Component>
6686
</SubComponents>
6787
</Form>
219 Bytes
Binary file not shown.
554 Bytes
Binary file not shown.
2.69 KB
Binary file not shown.

build/classes/oracle/ProcessView.form

+23-6
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,26 @@
2424
<Layout>
2525
<DimensionLayout dim="0">
2626
<Group type="103" groupAlignment="0" attributes="0">
27+
<Component id="jScrollPane1" alignment="0" max="32767" attributes="0"/>
2728
<Group type="102" alignment="0" attributes="0">
28-
<EmptySpace max="-2" attributes="0"/>
29-
<Component id="jScrollPane1" min="-2" pref="549" max="-2" attributes="0"/>
30-
<EmptySpace pref="14" max="32767" attributes="0"/>
29+
<EmptySpace min="-2" pref="230" max="-2" attributes="0"/>
30+
<Component id="txtSearch" min="-2" pref="275" max="-2" attributes="0"/>
31+
<EmptySpace type="unrelated" max="-2" attributes="0"/>
32+
<Component id="btnSeach" min="-2" max="-2" attributes="0"/>
33+
<EmptySpace pref="462" max="32767" attributes="0"/>
3134
</Group>
3235
</Group>
3336
</DimensionLayout>
3437
<DimensionLayout dim="1">
3538
<Group type="103" groupAlignment="0" attributes="0">
36-
<Group type="102" alignment="0" attributes="0">
39+
<Group type="102" alignment="1" attributes="0">
40+
<EmptySpace max="-2" attributes="0"/>
41+
<Group type="103" groupAlignment="3" attributes="0">
42+
<Component id="txtSearch" alignment="3" pref="32" max="32767" attributes="0"/>
43+
<Component id="btnSeach" alignment="3" min="-2" max="-2" attributes="0"/>
44+
</Group>
3745
<EmptySpace max="-2" attributes="0"/>
38-
<Component id="jScrollPane1" min="-2" pref="371" max="-2" attributes="0"/>
39-
<EmptySpace pref="15" max="32767" attributes="0"/>
46+
<Component id="jScrollPane1" min="-2" pref="449" max="-2" attributes="0"/>
4047
</Group>
4148
</Group>
4249
</DimensionLayout>
@@ -63,5 +70,15 @@
6370
</Component>
6471
</SubComponents>
6572
</Container>
73+
<Component class="javax.swing.JTextField" name="txtSearch">
74+
</Component>
75+
<Component class="javax.swing.JButton" name="btnSeach">
76+
<Properties>
77+
<Property name="text" type="java.lang.String" value="T&#xec;m"/>
78+
</Properties>
79+
<Events>
80+
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSeachActionPerformed"/>
81+
</Events>
82+
</Component>
6683
</SubComponents>
6784
</Form>

build/classes/oracle/Session$1.class

0 Bytes
Binary file not shown.

build/classes/oracle/Session$2.class

0 Bytes
Binary file not shown.

build/classes/oracle/Session$3.class

0 Bytes
Binary file not shown.

build/classes/oracle/Session$4.class

212 Bytes
Binary file not shown.

build/classes/oracle/Session$5.class

538 Bytes
Binary file not shown.

build/classes/oracle/Session.class

1.48 KB
Binary file not shown.

build/classes/oracle/Session.form

+39-18
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,23 @@
2626
<Layout>
2727
<DimensionLayout dim="0">
2828
<Group type="103" groupAlignment="0" attributes="0">
29-
<Group type="102" attributes="0">
30-
<EmptySpace min="-2" pref="17" max="-2" attributes="0"/>
31-
<Component id="jLabel1" min="-2" max="-2" attributes="0"/>
32-
<EmptySpace type="separate" max="-2" attributes="0"/>
33-
<Component id="labelCountSession" min="-2" pref="37" max="-2" attributes="0"/>
34-
<EmptySpace pref="794" max="32767" attributes="0"/>
35-
</Group>
36-
<Group type="102" alignment="0" attributes="0">
37-
<EmptySpace max="-2" attributes="0"/>
38-
<Component id="jScrollPane1" max="32767" attributes="0"/>
29+
<Group type="102" alignment="1" attributes="0">
30+
<Group type="103" groupAlignment="1" attributes="0">
31+
<Group type="102" attributes="0">
32+
<EmptySpace min="-2" pref="17" max="-2" attributes="0"/>
33+
<Component id="jLabel1" min="-2" max="-2" attributes="0"/>
34+
<EmptySpace type="separate" max="-2" attributes="0"/>
35+
<Component id="labelCountSession" min="-2" pref="37" max="-2" attributes="0"/>
36+
<EmptySpace min="-2" pref="82" max="-2" attributes="0"/>
37+
<Component id="txtSearch" max="32767" attributes="0"/>
38+
<EmptySpace type="unrelated" max="-2" attributes="0"/>
39+
<Component id="btnSearch" min="-2" max="-2" attributes="0"/>
40+
</Group>
41+
<Group type="102" attributes="0">
42+
<EmptySpace max="-2" attributes="0"/>
43+
<Component id="jScrollPane1" pref="678" max="32767" attributes="0"/>
44+
</Group>
45+
</Group>
3946
<EmptySpace type="separate" max="-2" attributes="0"/>
4047
<Component id="jPanel2" min="-2" max="-2" attributes="0"/>
4148
<EmptySpace min="-2" pref="18" max="-2" attributes="0"/>
@@ -46,19 +53,23 @@
4653
<Group type="103" groupAlignment="0" attributes="0">
4754
<Group type="102" alignment="0" attributes="0">
4855
<EmptySpace max="-2" attributes="0"/>
49-
<Group type="103" groupAlignment="3" attributes="0">
50-
<Component id="jLabel1" alignment="3" min="-2" max="-2" attributes="0"/>
51-
<Component id="labelCountSession" alignment="3" min="-2" max="-2" attributes="0"/>
52-
</Group>
5356
<Group type="103" groupAlignment="0" attributes="0">
5457
<Group type="102" attributes="0">
55-
<EmptySpace min="-2" pref="16" max="-2" attributes="0"/>
56-
<Component id="jScrollPane1" min="-2" pref="356" max="-2" attributes="0"/>
57-
</Group>
58-
<Group type="102" alignment="0" attributes="0">
58+
<Group type="103" groupAlignment="3" attributes="0">
59+
<Component id="jLabel1" alignment="3" min="-2" max="-2" attributes="0"/>
60+
<Component id="labelCountSession" alignment="3" min="-2" max="-2" attributes="0"/>
61+
</Group>
5962
<EmptySpace type="separate" max="-2" attributes="0"/>
6063
<Component id="jPanel2" min="-2" max="-2" attributes="0"/>
6164
</Group>
65+
<Group type="102" attributes="0">
66+
<Group type="103" groupAlignment="3" attributes="0">
67+
<Component id="txtSearch" alignment="3" min="-2" max="-2" attributes="0"/>
68+
<Component id="btnSearch" alignment="3" min="-2" max="-2" attributes="0"/>
69+
</Group>
70+
<EmptySpace max="-2" attributes="0"/>
71+
<Component id="jScrollPane1" min="-2" pref="356" max="-2" attributes="0"/>
72+
</Group>
6273
</Group>
6374
<EmptySpace pref="20" max="32767" attributes="0"/>
6475
</Group>
@@ -181,5 +192,15 @@
181192
<Property name="text" type="java.lang.String" value="jLabel4"/>
182193
</Properties>
183194
</Component>
195+
<Component class="javax.swing.JTextField" name="txtSearch">
196+
</Component>
197+
<Component class="javax.swing.JButton" name="btnSearch">
198+
<Properties>
199+
<Property name="text" type="java.lang.String" value="T&#xec;m"/>
200+
</Properties>
201+
<Events>
202+
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSearchActionPerformed"/>
203+
</Events>
204+
</Component>
184205
</SubComponents>
185206
</Form>
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
220 Bytes
Binary file not shown.
556 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
1.36 KB
Binary file not shown.

build/classes/oracle/UserManager.form

+34-10
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,14 @@
2828
<Group type="103" groupAlignment="0" attributes="0">
2929
<Group type="102" alignment="0" attributes="0">
3030
<EmptySpace max="-2" attributes="0"/>
31-
<Component id="jScrollPane1" min="-2" pref="441" max="-2" attributes="0"/>
31+
<Group type="103" groupAlignment="0" attributes="0">
32+
<Component id="jScrollPane1" min="-2" pref="441" max="-2" attributes="0"/>
33+
<Group type="102" attributes="0">
34+
<Component id="txtSearch" min="-2" pref="350" max="-2" attributes="0"/>
35+
<EmptySpace max="-2" attributes="0"/>
36+
<Component id="btnSearch" min="-2" max="-2" attributes="0"/>
37+
</Group>
38+
</Group>
3239
<EmptySpace max="-2" attributes="0"/>
3340
<Group type="103" groupAlignment="0" attributes="0">
3441
<Component id="jPanel2" min="-2" max="-2" attributes="0"/>
@@ -40,18 +47,25 @@
4047
</DimensionLayout>
4148
<DimensionLayout dim="1">
4249
<Group type="103" groupAlignment="0" attributes="0">
43-
<Group type="102" attributes="0">
50+
<Group type="102" alignment="0" attributes="0">
4451
<EmptySpace min="-2" pref="40" max="-2" attributes="0"/>
45-
<Component id="jPanel2" min="-2" max="-2" attributes="0"/>
46-
<EmptySpace type="separate" max="-2" attributes="0"/>
47-
<Component id="jPanel1" min="-2" max="-2" attributes="0"/>
52+
<Group type="103" groupAlignment="0" max="-2" attributes="0">
53+
<Group type="102" attributes="0">
54+
<Group type="103" groupAlignment="3" attributes="0">
55+
<Component id="txtSearch" alignment="3" min="-2" max="-2" attributes="0"/>
56+
<Component id="btnSearch" alignment="3" min="-2" max="-2" attributes="0"/>
57+
</Group>
58+
<EmptySpace max="-2" attributes="0"/>
59+
<Component id="jScrollPane1" max="32767" attributes="0"/>
60+
</Group>
61+
<Group type="102" attributes="0">
62+
<Component id="jPanel2" min="-2" max="-2" attributes="0"/>
63+
<EmptySpace type="separate" max="-2" attributes="0"/>
64+
<Component id="jPanel1" min="-2" max="-2" attributes="0"/>
65+
</Group>
66+
</Group>
4867
<EmptySpace max="32767" attributes="0"/>
4968
</Group>
50-
<Group type="102" attributes="0">
51-
<EmptySpace min="-2" pref="38" max="-2" attributes="0"/>
52-
<Component id="jScrollPane1" max="32767" attributes="0"/>
53-
<EmptySpace max="-2" attributes="0"/>
54-
</Group>
5569
</Group>
5670
</DimensionLayout>
5771
</Layout>
@@ -527,5 +541,15 @@
527541
</Component>
528542
</SubComponents>
529543
</Container>
544+
<Component class="javax.swing.JTextField" name="txtSearch">
545+
</Component>
546+
<Component class="javax.swing.JButton" name="btnSearch">
547+
<Properties>
548+
<Property name="text" type="java.lang.String" value="T&#xec;m"/>
549+
</Properties>
550+
<Events>
551+
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnSearchActionPerformed"/>
552+
</Events>
553+
</Component>
530554
</SubComponents>
531555
</Form>

dist.zip

4.71 MB
Binary file not shown.

login.dat

-2 Bytes
Binary file not shown.

nbproject/private/config.properties

Whitespace-only changes.

nbproject/private/private.properties

+6
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
compile.on.save=true
2+
do.depend=false
3+
do.jar=true
4+
do.jlink=false
5+
javac.debug=true
6+
javadoc.preview=true
7+
jlink.strip=false
28
user.properties.file=C:\\Users\\QTrun\\AppData\\Roaming\\NetBeans\\17\\build.properties

nbproject/private/private.xml

+2-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,8 @@
33
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
44
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
55
<group>
6-
<file>file:/D:/NetBeansProjects/Oracle/src/oracle/OracleConnection.java</file>
7-
<file>file:/D:/NetBeansProjects/Oracle/src/oracle/Main.java</file>
8-
<file>file:/D:/NetBeansProjects/Oracle/src/oracle/PGA.java</file>
9-
<file>file:/D:/NetBeansProjects/Oracle/src/oracle/AuditView.java</file>
10-
<file>file:/D:/NetBeansProjects/Oracle/src/oracle/MainFormUser.java</file>
11-
<file>file:/D:/NetBeansProjects/Oracle/src/oracle/MainForm.java</file>
6+
<file>file:/D:/GitHub/Oracle_Demo_Java/src/oracle/ProcessView.java</file>
7+
<file>file:/D:/GitHub/Oracle_Demo_Java/src/oracle/UserManager.java</file>
128
</group>
139
</open-files>
1410
</project-private>

nbproject/project.properties

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
annotation.processing.enabled=true
22
annotation.processing.enabled.in.editor=false
3-
annotation.processing.processor.options=
43
annotation.processing.processors.list=
54
annotation.processing.run.all.processors=true
65
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
6+
application.title=Oracle
7+
application.vendor=QTrun
78
build.classes.dir=${build.dir}/classes
89
build.classes.excludes=**/*.java,**/*.form
910
# This directory is removed when the project is cleaned:
@@ -32,15 +33,13 @@ dist.jar=${dist.dir}/Oracle.jar
3233
dist.javadoc.dir=${dist.dir}/javadoc
3334
dist.jlink.dir=${dist.dir}/jlink
3435
dist.jlink.output=${dist.jlink.dir}/Oracle
36+
endorsed.classpath=
3537
excludes=
36-
file.reference.ojdbc11.jar=C:\\Users\\QTrun\\Downloads\\ojdbc11.jar
37-
file.reference.ojdbc11.jar-1=C:\\Users\\qtrung1702\\Downloads\\ojdbc11.jar
38+
file.reference.ojdbc11.jar=ojdbc11.jar
3839
includes=**
3940
jar.compress=false
4041
javac.classpath=\
41-
${file.reference.ojdbc11.jar}:\
42-
${libs.absolutelayout.classpath}:\
43-
${file.reference.ojdbc11.jar-1}
42+
${file.reference.ojdbc11.jar}
4443
# Space-separated list of extra javac options
4544
javac.compilerargs=
4645
javac.deprecation=false

ojdbc11.jar

4.95 MB
Binary file not shown.

src/oracle/Instance.form

+4-5
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,16 @@
2626
<Group type="103" groupAlignment="0" attributes="0">
2727
<Group type="102" alignment="0" attributes="0">
2828
<EmptySpace max="-2" attributes="0"/>
29-
<Component id="jScrollPane1" min="-2" pref="549" max="-2" attributes="0"/>
30-
<EmptySpace pref="14" max="32767" attributes="0"/>
29+
<Component id="jScrollPane1" pref="916" max="32767" attributes="0"/>
30+
<EmptySpace max="-2" attributes="0"/>
3131
</Group>
3232
</Group>
3333
</DimensionLayout>
3434
<DimensionLayout dim="1">
3535
<Group type="103" groupAlignment="0" attributes="0">
3636
<Group type="102" alignment="0" attributes="0">
37-
<EmptySpace max="-2" attributes="0"/>
38-
<Component id="jScrollPane1" min="-2" pref="371" max="-2" attributes="0"/>
39-
<EmptySpace pref="15" max="32767" attributes="0"/>
37+
<EmptySpace max="32767" attributes="0"/>
38+
<Component id="jScrollPane1" min="-2" pref="132" max="-2" attributes="0"/>
4039
</Group>
4140
</Group>
4241
</DimensionLayout>

src/oracle/Instance.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,14 @@ private void initComponents() {
7777
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
7878
.addGroup(layout.createSequentialGroup()
7979
.addContainerGap()
80-
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 549, javax.swing.GroupLayout.PREFERRED_SIZE)
81-
.addContainerGap(14, Short.MAX_VALUE))
80+
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 916, Short.MAX_VALUE)
81+
.addContainerGap())
8282
);
8383
layout.setVerticalGroup(
8484
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
8585
.addGroup(layout.createSequentialGroup()
86-
.addContainerGap()
87-
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 371, javax.swing.GroupLayout.PREFERRED_SIZE)
88-
.addContainerGap(15, Short.MAX_VALUE))
86+
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
87+
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 132, javax.swing.GroupLayout.PREFERRED_SIZE))
8988
);
9089

9190
pack();

0 commit comments

Comments
 (0)