Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 42036e5

Browse files
all files
1 parent 9caa822 commit 42036e5

22 files changed

+2041
-0
lines changed

‎Screenshot.png

60.2 KB
Loading[フレーム]

‎build.xml

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- You may freely edit this file. See commented blocks below for -->
3+
<!-- some examples of how to customize the build. -->
4+
<!-- (If you delete it and reopen the project it will be recreated.) -->
5+
<!-- By default, only the Clean and Build commands use this build script. -->
6+
<!-- Commands such as Run, Debug, and Test only use this build script if -->
7+
<!-- the Compile on Save feature is turned off for the project. -->
8+
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
9+
<!-- in the project's Project Properties dialog box.-->
10+
<project name="MysqlTest" default="default" basedir=".">
11+
<description>Builds, tests, and runs the project MysqlTest.</description>
12+
<import file="nbproject/build-impl.xml"/>
13+
<!--
14+
15+
There exist several targets which are by default empty and which can be
16+
used for execution of your tasks. These targets are usually executed
17+
before and after some main targets. They are:
18+
19+
-pre-init: called before initialization of project properties
20+
-post-init: called after initialization of project properties
21+
-pre-compile: called before javac compilation
22+
-post-compile: called after javac compilation
23+
-pre-compile-single: called before javac compilation of single file
24+
-post-compile-single: called after javac compilation of single file
25+
-pre-compile-test: called before javac compilation of JUnit tests
26+
-post-compile-test: called after javac compilation of JUnit tests
27+
-pre-compile-test-single: called before javac compilation of single JUnit test
28+
-post-compile-test-single: called after javac compilation of single JUunit test
29+
-pre-jar: called before JAR building
30+
-post-jar: called after JAR building
31+
-post-clean: called after cleaning build products
32+
33+
(Targets beginning with '-' are not intended to be called on their own.)
34+
35+
Example of inserting an obfuscator after compilation could look like this:
36+
37+
<target name="-post-compile">
38+
<obfuscate>
39+
<fileset dir="${build.classes.dir}"/>
40+
</obfuscate>
41+
</target>
42+
43+
For list of available properties check the imported
44+
nbproject/build-impl.xml file.
45+
46+
47+
Another way to customize the build is by overriding existing main targets.
48+
The targets of interest are:
49+
50+
-init-macrodef-javac: defines macro for javac compilation
51+
-init-macrodef-junit: defines macro for junit execution
52+
-init-macrodef-debug: defines macro for class debugging
53+
-init-macrodef-java: defines macro for class execution
54+
-do-jar: JAR building
55+
run: execution of project
56+
-javadoc-build: Javadoc generation
57+
test-report: JUnit report generation
58+
59+
An example of overriding the target for project execution could look like this:
60+
61+
<target name="run" depends="MysqlTest-impl.jar">
62+
<exec dir="bin" executable="launcher.exe">
63+
<arg file="${dist.jar}"/>
64+
</exec>
65+
</target>
66+
67+
Notice that the overridden target depends on the jar target and not only on
68+
the compile target as the regular run target does. Again, for a list of available
69+
properties which you can use, check the target you are overriding in the
70+
nbproject/build-impl.xml file.
71+
72+
-->
73+
</project>

‎build/classes/.netbeans_automatic_build

Whitespace-only changes.

‎build/classes/.netbeans_update_resources

Whitespace-only changes.

‎build/classes/Login1ドル.class

643 Bytes
Binary file not shown.

‎build/classes/Login2ドル.class

670 Bytes
Binary file not shown.

‎build/classes/Login.class

8.06 KB
Binary file not shown.

‎build/classes/Login.form

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
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+
<Property name="title" type="java.lang.String" value="Login"/>
7+
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
8+
<Dimension value="[443, 392]"/>
9+
</Property>
10+
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
11+
<Dimension value="[443, 392]"/>
12+
</Property>
13+
<Property name="resizable" type="boolean" value="false"/>
14+
</Properties>
15+
<SyntheticProperties>
16+
<SyntheticProperty name="formSizePolicy" type="int" value="1"/>
17+
<SyntheticProperty name="generateCenter" type="boolean" value="true"/>
18+
</SyntheticProperties>
19+
<Events>
20+
<EventHandler event="windowClosing" listener="java.awt.event.WindowListener" parameters="java.awt.event.WindowEvent" handler="formWindowClosing"/>
21+
</Events>
22+
<AuxValues>
23+
<AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/>
24+
<AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/>
25+
<AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/>
26+
<AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/>
27+
<AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/>
28+
<AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/>
29+
<AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/>
30+
<AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/>
31+
<AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/>
32+
</AuxValues>
33+
34+
<Layout>
35+
<DimensionLayout dim="0">
36+
<Group type="103" groupAlignment="0" attributes="0">
37+
<Group type="102" alignment="1" attributes="0">
38+
<EmptySpace min="-2" pref="63" max="-2" attributes="0"/>
39+
<Group type="103" groupAlignment="0" max="-2" attributes="0">
40+
<Component id="jLabel3" pref="115" max="32767" attributes="0"/>
41+
<Component id="jLabel2" max="32767" attributes="0"/>
42+
</Group>
43+
<EmptySpace max="32767" attributes="0"/>
44+
<Group type="103" groupAlignment="0" max="-2" attributes="0">
45+
<Component id="pf_password" pref="135" max="32767" attributes="0"/>
46+
<Component id="tf_user" max="32767" attributes="0"/>
47+
</Group>
48+
<EmptySpace min="-2" pref="99" max="-2" attributes="0"/>
49+
</Group>
50+
<Group type="102" attributes="0">
51+
<EmptySpace min="-2" pref="173" max="-2" attributes="0"/>
52+
<Component id="bt_login" min="-2" pref="100" max="-2" attributes="0"/>
53+
<EmptySpace pref="170" max="32767" attributes="0"/>
54+
</Group>
55+
<Group type="102" alignment="1" attributes="0">
56+
<EmptySpace max="32767" attributes="0"/>
57+
<Component id="Logo" min="-2" pref="100" max="-2" attributes="0"/>
58+
<EmptySpace min="-2" pref="171" max="-2" attributes="0"/>
59+
</Group>
60+
</Group>
61+
</DimensionLayout>
62+
<DimensionLayout dim="1">
63+
<Group type="103" groupAlignment="0" attributes="0">
64+
<Group type="102" alignment="1" attributes="0">
65+
<EmptySpace min="-2" pref="25" max="-2" attributes="0"/>
66+
<Component id="Logo" min="-2" pref="100" max="-2" attributes="0"/>
67+
<EmptySpace pref="29" max="32767" attributes="0"/>
68+
<Group type="103" groupAlignment="3" attributes="0">
69+
<Component id="tf_user" alignment="3" min="-2" max="-2" attributes="0"/>
70+
<Component id="jLabel2" alignment="3" min="-2" pref="28" max="-2" attributes="0"/>
71+
</Group>
72+
<EmptySpace min="-2" pref="27" max="-2" attributes="0"/>
73+
<Group type="103" groupAlignment="3" attributes="0">
74+
<Component id="pf_password" alignment="3" min="-2" max="-2" attributes="0"/>
75+
<Component id="jLabel3" alignment="3" min="-2" pref="28" max="-2" attributes="0"/>
76+
</Group>
77+
<EmptySpace min="-2" pref="26" max="-2" attributes="0"/>
78+
<Component id="bt_login" min="-2" max="-2" attributes="0"/>
79+
<EmptySpace min="-2" pref="99" max="-2" attributes="0"/>
80+
</Group>
81+
</Group>
82+
</DimensionLayout>
83+
</Layout>
84+
<SubComponents>
85+
<Component class="javax.swing.JButton" name="bt_login">
86+
<Properties>
87+
<Property name="text" type="java.lang.String" value="Login"/>
88+
</Properties>
89+
<Events>
90+
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="bt_loginActionPerformed"/>
91+
</Events>
92+
</Component>
93+
<Component class="javax.swing.JTextField" name="tf_user">
94+
</Component>
95+
<Component class="javax.swing.JPasswordField" name="pf_password">
96+
</Component>
97+
<Component class="javax.swing.JLabel" name="Logo">
98+
</Component>
99+
<Component class="javax.swing.JLabel" name="jLabel2">
100+
<Properties>
101+
<Property name="horizontalAlignment" type="int" value="4"/>
102+
<Property name="text" type="java.lang.String" value="User:"/>
103+
</Properties>
104+
</Component>
105+
<Component class="javax.swing.JLabel" name="jLabel3">
106+
<Properties>
107+
<Property name="horizontalAlignment" type="int" value="4"/>
108+
<Property name="text" type="java.lang.String" value="Password:"/>
109+
</Properties>
110+
</Component>
111+
</SubComponents>
112+
</Form>

‎build/classes/MySqlTest1ドル.class

517 Bytes
Binary file not shown.

‎build/classes/MySqlTest.class

1.89 KB
Binary file not shown.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /