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 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

Lines changed: 5 additions & 0 deletions
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

Lines changed: 20 additions & 0 deletions
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

Lines changed: 5 additions & 0 deletions
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

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="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/AddEmployee1ドル.class

736 Bytes
Binary file not shown.

‎build/classes/AddEmployee2ドル.class

742 Bytes
Binary file not shown.

‎build/classes/AddEmployee3ドル.class

738 Bytes
Binary file not shown.

‎build/classes/AddEmployee4ドル.class

533 Bytes
Binary file not shown.

‎build/classes/AddEmployee.class

11.2 KB
Binary file not shown.

0 commit comments

Comments
(0)

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