Skip to content

Commit a7ddfba

Browse files
authored
Add Files
0 parents  commit a7ddfba

File tree

77 files changed

+8555
-0
lines changed

Some content is hidden

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

77 files changed

+8555
-0
lines changed

FAdmin.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
11000 Müdür Ahmet a 56 yönetim 12.023 0
2+
11001 MüdürY. Mehmet b 45 yönetim 10.546 1
3+
11002 CEO Ayşe c 38 yönetim 11.123 2
4+
11003 Üye1 Elif d 42 yönetim 10.456 3
5+
11004 Üye2 Umut e 65 yönetim 12.000 4

FEmployee.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
12000 Merve f 48 bilişim 8856 1000 0
2+
12001 Aslı g 32 üretim 8951 1001 1
3+
12002 Ufuk h 28 üretim 7959 1003 2
4+
12003 Kadir k 53 bilişim 5213 1002 3
5+
13001 Murat i 28 test 6753 1002 4
6+
13002 Beyza l 36 bilişim 7123 1002 5
7+
13003 Efe m 32 test 5891 1000 6
8+
13004 Kübra n 29 üretim 6546 1000 7
9+
13005 Fatih t 30 test 7005 1001 8
10+
13006 Kerim s 41 üretim 7564 1001 9
11+
13007 Sıla y 35 bilişim 6943 1003 10
12+
13008 Dilan z 45 üretim 5963 1003 11
13+
13009 Emre x 35 üretim 7591 - 12
14+
12130 Dilara Patır 28 bilişim 12000 1004 574
15+
12964 ceyda patır 23 bilişim 5000.0 - 18
16+
13828 zeynep doğan 34 Bilişim 3000.0 - 904
17+
13365 Ahmet Uyan 54 Tasarım 4500.0 - 907
18+
13255 Ahmet Yılmaz 54 Üretim 4500.0 1004 956
19+
13145 Canan Öztürk 44 Üretim 4500.0 1004 954
20+
13348 Mesut Yılmaz 45 Bilişim 3000.0 - 683

FProject.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
1000 12000 Proje0 01/02/2021 01/04/2022 2 50.000 60.000 20
2+
1001 12001 Proje1 01/02/2021 01/08/2021 2 50.000 70.000 30
3+
1002 12003 Proje2 01/02/2021 01/04/2022 2 50.000 60.000 20
4+
1003 12002 Proje3 01/01/2020 01/01/2025 2 30000 36000.0 0
5+
1004 12130 Proje4 01/01/2020 01/01/2022 2 30000 36000.0 0

build.xml

+73
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="G6_Project" default="default" basedir=".">
11+
<description>Builds, tests, and runs the project G6_Project.</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="G6_Project-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/AbsProject.class

3.38 KB
Binary file not shown.

build/classes/AddEmployee$1.class

736 Bytes
Binary file not shown.

build/classes/AddEmployee$2.class

742 Bytes
Binary file not shown.

build/classes/AddEmployee$3.class

738 Bytes
Binary file not shown.

build/classes/AddEmployee$4.class

533 Bytes
Binary file not shown.

build/classes/AddEmployee.class

11.2 KB
Binary file not shown.

build/classes/AddEmployee.form

+242
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,242 @@
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="2"/>
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="1" attributes="0">
27+
<EmptySpace min="-2" pref="26" max="-2" attributes="0"/>
28+
<Group type="103" groupAlignment="0" attributes="0">
29+
<Component id="Panel_EmpInfo" max="32767" attributes="0"/>
30+
<Component id="jButton1" max="32767" attributes="0"/>
31+
</Group>
32+
<EmptySpace min="-2" pref="25" max="-2" attributes="0"/>
33+
</Group>
34+
</Group>
35+
</DimensionLayout>
36+
<DimensionLayout dim="1">
37+
<Group type="103" groupAlignment="0" attributes="0">
38+
<Group type="102" alignment="0" attributes="0">
39+
<EmptySpace max="-2" attributes="0"/>
40+
<Component id="Panel_EmpInfo" min="-2" max="-2" attributes="0"/>
41+
<EmptySpace type="separate" max="-2" attributes="0"/>
42+
<Component id="jButton1" min="-2" max="-2" attributes="0"/>
43+
<EmptySpace max="32767" attributes="0"/>
44+
</Group>
45+
</Group>
46+
</DimensionLayout>
47+
</Layout>
48+
<SubComponents>
49+
<Container class="javax.swing.JPanel" name="Panel_EmpInfo">
50+
<Properties>
51+
<Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor">
52+
<Border info="org.netbeans.modules.form.compat2.border.EtchedBorderInfo">
53+
<EtchetBorder>
54+
<Color PropertyName="highlight" blue="ff" green="ff" id="white" palette="1" red="ff" type="palette"/>
55+
<Color PropertyName="shadow" blue="ff" green="ff" id="white" palette="1" red="ff" type="palette"/>
56+
</EtchetBorder>
57+
</Border>
58+
</Property>
59+
</Properties>
60+
61+
<Layout>
62+
<DimensionLayout dim="0">
63+
<Group type="103" groupAlignment="0" attributes="0">
64+
<Component id="jLabel1" alignment="1" max="32767" attributes="0"/>
65+
<Group type="102" alignment="0" attributes="0">
66+
<EmptySpace min="-2" pref="74" max="-2" attributes="0"/>
67+
<Group type="103" groupAlignment="0" max="-2" attributes="0">
68+
<Component id="lblInf" max="32767" attributes="0"/>
69+
<Group type="102" attributes="0">
70+
<Group type="103" groupAlignment="0" attributes="0">
71+
<Component id="jLabel6" alignment="0" min="-2" max="-2" attributes="0"/>
72+
<Component id="jLabel9" alignment="0" min="-2" max="-2" attributes="0"/>
73+
<Component id="jLabel3" alignment="0" min="-2" max="-2" attributes="0"/>
74+
<Component id="jLabel5" alignment="0" min="-2" max="-2" attributes="0"/>
75+
<Component id="jLabel2" alignment="0" min="-2" max="-2" attributes="0"/>
76+
</Group>
77+
<EmptySpace min="-2" pref="30" max="-2" attributes="0"/>
78+
<Group type="103" groupAlignment="0" attributes="0">
79+
<Component id="txtsurname_f2" alignment="0" min="-2" pref="115" max="-2" attributes="0"/>
80+
<Group type="103" alignment="0" groupAlignment="0" max="-2" attributes="0">
81+
<Component id="txtsalary_f2" alignment="0" pref="115" max="32767" attributes="0"/>
82+
<Component id="txtDep" alignment="0" max="32767" attributes="0"/>
83+
<Component id="txtAge" alignment="0" max="32767" attributes="0"/>
84+
</Group>
85+
<Component id="txtname_f2" alignment="0" min="-2" pref="115" max="-2" attributes="0"/>
86+
</Group>
87+
</Group>
88+
</Group>
89+
<EmptySpace pref="60" max="32767" attributes="0"/>
90+
</Group>
91+
</Group>
92+
</DimensionLayout>
93+
<DimensionLayout dim="1">
94+
<Group type="103" groupAlignment="0" attributes="0">
95+
<Group type="102" alignment="0" attributes="0">
96+
<Component id="jLabel1" min="-2" pref="32" max="-2" attributes="0"/>
97+
<EmptySpace max="-2" attributes="0"/>
98+
<Component id="lblInf" min="-2" pref="17" max="-2" attributes="0"/>
99+
<EmptySpace max="-2" attributes="0"/>
100+
<Group type="103" groupAlignment="3" attributes="0">
101+
<Component id="jLabel2" alignment="3" min="-2" max="-2" attributes="0"/>
102+
<Component id="txtname_f2" alignment="3" min="-2" max="-2" attributes="0"/>
103+
</Group>
104+
<EmptySpace type="separate" max="-2" attributes="0"/>
105+
<Group type="103" groupAlignment="3" attributes="0">
106+
<Component id="jLabel3" alignment="3" min="-2" max="-2" attributes="0"/>
107+
<Component id="txtsurname_f2" alignment="3" min="-2" max="-2" attributes="0"/>
108+
</Group>
109+
<EmptySpace type="separate" max="-2" attributes="0"/>
110+
<Group type="103" groupAlignment="3" attributes="0">
111+
<Component id="jLabel5" alignment="3" min="-2" max="-2" attributes="0"/>
112+
<Component id="txtAge" alignment="3" min="-2" max="-2" attributes="0"/>
113+
</Group>
114+
<EmptySpace type="separate" max="-2" attributes="0"/>
115+
<Group type="103" groupAlignment="3" attributes="0">
116+
<Component id="jLabel9" alignment="3" min="-2" max="-2" attributes="0"/>
117+
<Component id="txtDep" alignment="3" min="-2" max="-2" attributes="0"/>
118+
</Group>
119+
<EmptySpace type="separate" max="-2" attributes="0"/>
120+
<Group type="103" groupAlignment="3" attributes="0">
121+
<Component id="jLabel6" alignment="3" min="-2" max="-2" attributes="0"/>
122+
<Component id="txtsalary_f2" alignment="3" min="-2" max="-2" attributes="0"/>
123+
</Group>
124+
<EmptySpace pref="19" max="32767" attributes="0"/>
125+
</Group>
126+
</Group>
127+
</DimensionLayout>
128+
</Layout>
129+
<SubComponents>
130+
<Component class="javax.swing.JLabel" name="jLabel1">
131+
<Properties>
132+
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
133+
<Font name="Serif" size="18" style="1"/>
134+
</Property>
135+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
136+
<Color blue="99" green="66" red="0" type="rgb"/>
137+
</Property>
138+
<Property name="horizontalAlignment" type="int" value="0"/>
139+
<Property name="text" type="java.lang.String" value="Employee Infos"/>
140+
<Property name="toolTipText" type="java.lang.String" value=""/>
141+
<Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor">
142+
<Border info="org.netbeans.modules.form.compat2.border.EmptyBorderInfo">
143+
<EmptyBorder/>
144+
</Border>
145+
</Property>
146+
<Property name="horizontalTextPosition" type="int" value="0"/>
147+
</Properties>
148+
</Component>
149+
<Component class="javax.swing.JLabel" name="jLabel2">
150+
<Properties>
151+
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
152+
<Font name="Tahoma" size="12" style="0"/>
153+
</Property>
154+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
155+
<Color blue="0" green="0" red="66" type="rgb"/>
156+
</Property>
157+
<Property name="text" type="java.lang.String" value="Name :"/>
158+
</Properties>
159+
</Component>
160+
<Component class="javax.swing.JTextField" name="txtAge">
161+
<Events>
162+
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtAgeActionPerformed"/>
163+
</Events>
164+
</Component>
165+
<Component class="javax.swing.JLabel" name="jLabel3">
166+
<Properties>
167+
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
168+
<Font name="Tahoma" size="12" style="0"/>
169+
</Property>
170+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
171+
<Color blue="0" green="0" red="66" type="rgb"/>
172+
</Property>
173+
<Property name="text" type="java.lang.String" value="Surname :"/>
174+
</Properties>
175+
</Component>
176+
<Component class="javax.swing.JTextField" name="txtsalary_f2">
177+
<Events>
178+
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtsalary_f2ActionPerformed"/>
179+
</Events>
180+
</Component>
181+
<Component class="javax.swing.JLabel" name="jLabel5">
182+
<Properties>
183+
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
184+
<Font name="Tahoma" size="12" style="0"/>
185+
</Property>
186+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
187+
<Color blue="0" green="0" red="66" type="rgb"/>
188+
</Property>
189+
<Property name="text" type="java.lang.String" value="Age:"/>
190+
</Properties>
191+
</Component>
192+
<Component class="javax.swing.JLabel" name="jLabel6">
193+
<Properties>
194+
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
195+
<Font name="Tahoma" size="12" style="0"/>
196+
</Property>
197+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
198+
<Color blue="0" green="0" red="66" type="rgb"/>
199+
</Property>
200+
<Property name="text" type="java.lang.String" value="Salary : "/>
201+
</Properties>
202+
</Component>
203+
<Component class="javax.swing.JTextField" name="txtDep">
204+
</Component>
205+
<Component class="javax.swing.JLabel" name="jLabel9">
206+
<Properties>
207+
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
208+
<Font name="Tahoma" size="12" style="0"/>
209+
</Property>
210+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
211+
<Color blue="0" green="0" red="66" type="rgb"/>
212+
</Property>
213+
<Property name="text" type="java.lang.String" value="Department:"/>
214+
</Properties>
215+
</Component>
216+
<Component class="javax.swing.JTextField" name="txtname_f2">
217+
</Component>
218+
<Component class="javax.swing.JTextField" name="txtsurname_f2">
219+
</Component>
220+
<Component class="javax.swing.JLabel" name="lblInf">
221+
</Component>
222+
</SubComponents>
223+
</Container>
224+
<Component class="javax.swing.JButton" name="jButton1">
225+
<Properties>
226+
<Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
227+
<Color blue="99" green="66" red="0" type="rgb"/>
228+
</Property>
229+
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
230+
<Font name="Tahoma" size="12" style="1"/>
231+
</Property>
232+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
233+
<Color blue="99" green="66" red="0" type="rgb"/>
234+
</Property>
235+
<Property name="text" type="java.lang.String" value="ADD"/>
236+
</Properties>
237+
<Events>
238+
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton1ActionPerformed"/>
239+
</Events>
240+
</Component>
241+
</SubComponents>
242+
</Form>

build/classes/Administration.class

3.46 KB
Binary file not shown.

build/classes/CompanyInfos$1.class

744 Bytes
Binary file not shown.

build/classes/CompanyInfos$2.class

537 Bytes
Binary file not shown.

build/classes/CompanyInfos.class

9.09 KB
Binary file not shown.

0 commit comments

Comments
 (0)