Skip to content

Commit 0143c88

Browse files
committed
first commit
0 parents  commit 0143c88

File tree

201 files changed

+18423
-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.

201 files changed

+18423
-0
lines changed

Diff for: .classpath

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4+
<classpathentry kind="src" path="src"/>
5+
<classpathentry kind="output" path="build/classes"/>
6+
</classpath>

Diff for: .project

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>StudentManagementSystem</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

Diff for: 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="LocalSchoolManagementSystem" default="default" basedir=".">
11+
<description>Builds, tests, and runs the project LocalSchoolManagementSystem.</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="LocalSchoolManagementSystem-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>

Diff for: build/classes/.netbeans_automatic_build

Whitespace-only changes.

Diff for: build/classes/.netbeans_update_resources

Whitespace-only changes.

Diff for: build/classes/img/JAVA.png

4.02 KB

Diff for: build/classes/img/book.png

921 Bytes

Diff for: build/classes/img/class.png

1.04 KB

Diff for: build/classes/img/create.png

1.09 KB

Diff for: build/classes/img/exam.png

1.61 KB

Diff for: build/classes/img/logo.png

19.1 KB

Diff for: build/classes/img/logout.png

642 Bytes

Diff for: build/classes/img/mark.png

2.32 KB

Diff for: build/classes/img/menu.png

304 Bytes

Diff for: build/classes/img/mysql.png

2.11 KB

Diff for: build/classes/img/namecard.png

572 Bytes

Diff for: build/classes/img/netbeans.png

2.81 KB

Diff for: build/classes/img/password.png

633 Bytes

Diff for: build/classes/img/passwrod.png

633 Bytes

Diff for: build/classes/img/search.png

537 Bytes

Diff for: build/classes/img/student.png

1.5 KB

Diff for: build/classes/img/teacher.png

1.64 KB

Diff for: build/classes/img/user.png

4.88 KB

Diff for: build/classes/img/username.png

989 Bytes

Diff for: build/classes/img/usertype.png

847 Bytes

Diff for: build/classes/img/waamp.png

3.09 KB

Diff for: build/classes/schoolmanagementsystem/About$1.class

782 Bytes
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/About$2.class

781 Bytes
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/About$3.class

578 Bytes
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/About.class

8.77 KB
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/About.form

+245
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
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+
<NonVisualComponents>
5+
<Container class="javax.swing.JDialog" name="jDialog1">
6+
7+
<Layout>
8+
<DimensionLayout dim="0">
9+
<Group type="103" groupAlignment="0" attributes="0">
10+
<EmptySpace min="0" pref="400" max="32767" attributes="0"/>
11+
</Group>
12+
</DimensionLayout>
13+
<DimensionLayout dim="1">
14+
<Group type="103" groupAlignment="0" attributes="0">
15+
<EmptySpace min="0" pref="300" max="32767" attributes="0"/>
16+
</Group>
17+
</DimensionLayout>
18+
</Layout>
19+
</Container>
20+
<Container class="javax.swing.JFrame" name="jFrame1">
21+
22+
<Layout>
23+
<DimensionLayout dim="0">
24+
<Group type="103" groupAlignment="0" attributes="0">
25+
<EmptySpace min="0" pref="400" max="32767" attributes="0"/>
26+
</Group>
27+
</DimensionLayout>
28+
<DimensionLayout dim="1">
29+
<Group type="103" groupAlignment="0" attributes="0">
30+
<EmptySpace min="0" pref="300" max="32767" attributes="0"/>
31+
</Group>
32+
</DimensionLayout>
33+
</Layout>
34+
</Container>
35+
<Menu class="javax.swing.JMenuBar" name="jMenuBar1">
36+
<SubComponents>
37+
<Menu class="javax.swing.JMenu" name="jMenu1">
38+
<Properties>
39+
<Property name="text" type="java.lang.String" value="Back to Login"/>
40+
</Properties>
41+
<Events>
42+
<EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="jMenu1MouseClicked"/>
43+
</Events>
44+
</Menu>
45+
<Menu class="javax.swing.JMenu" name="jMenu2">
46+
</Menu>
47+
</SubComponents>
48+
</Menu>
49+
</NonVisualComponents>
50+
<Properties>
51+
<Property name="defaultCloseOperation" type="int" value="3"/>
52+
<Property name="resizable" type="boolean" value="false"/>
53+
</Properties>
54+
<SyntheticProperties>
55+
<SyntheticProperty name="menuBar" type="java.lang.String" value="jMenuBar1"/>
56+
<SyntheticProperty name="formSizePolicy" type="int" value="1"/>
57+
<SyntheticProperty name="generateCenter" type="boolean" value="true"/>
58+
</SyntheticProperties>
59+
<AuxValues>
60+
<AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/>
61+
<AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/>
62+
<AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/>
63+
<AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/>
64+
<AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/>
65+
<AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/>
66+
<AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/>
67+
<AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/>
68+
<AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/>
69+
</AuxValues>
70+
71+
<Layout>
72+
<DimensionLayout dim="0">
73+
<Group type="103" groupAlignment="0" attributes="0">
74+
<Component id="jPanel1" min="-2" pref="956" max="-2" attributes="0"/>
75+
</Group>
76+
</DimensionLayout>
77+
<DimensionLayout dim="1">
78+
<Group type="103" groupAlignment="0" attributes="0">
79+
<Component id="jPanel1" alignment="0" pref="699" max="32767" attributes="0"/>
80+
</Group>
81+
</DimensionLayout>
82+
</Layout>
83+
<SubComponents>
84+
<Container class="javax.swing.JPanel" name="jPanel1">
85+
<Properties>
86+
<Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
87+
<Color blue="ff" green="ff" red="ff" type="rgb"/>
88+
</Property>
89+
</Properties>
90+
91+
<Layout class="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout">
92+
<Property name="useNullLayout" type="boolean" value="false"/>
93+
</Layout>
94+
<SubComponents>
95+
<Component class="javax.swing.JLabel" name="jLabel1">
96+
<Properties>
97+
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
98+
<Font name="Calibri" size="24" style="1"/>
99+
</Property>
100+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
101+
<Color blue="ff" green="99" red="33" type="rgb"/>
102+
</Property>
103+
<Property name="horizontalAlignment" type="int" value="0"/>
104+
<Property name="text" type="java.lang.String" value="About Project:"/>
105+
</Properties>
106+
<Constraints>
107+
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription">
108+
<AbsoluteConstraints x="61" y="29" width="190" height="44"/>
109+
</Constraint>
110+
</Constraints>
111+
</Component>
112+
<Container class="javax.swing.JScrollPane" name="jScrollPane1">
113+
<AuxValues>
114+
<AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/>
115+
</AuxValues>
116+
<Constraints>
117+
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription">
118+
<AbsoluteConstraints x="61" y="79" width="682" height="561"/>
119+
</Constraint>
120+
</Constraints>
121+
122+
<Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
123+
<SubComponents>
124+
<Component class="javax.swing.JTextPane" name="jTextPane1">
125+
<Properties>
126+
<Property name="editable" type="boolean" value="false"/>
127+
<Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
128+
<Color blue="ff" green="ff" red="ff" type="rgb"/>
129+
</Property>
130+
<Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor">
131+
<Border info="null"/>
132+
</Property>
133+
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
134+
<Font name="Calibri" size="18" style="0"/>
135+
</Property>
136+
<Property name="text" type="java.lang.String" value="The School Management System Project In Java is developed using Java Programming Language, This School Management System Project In Java And MySQL is simple and basic level small project for learning purposes. Also, you can modify this system as per your requirements and develop a perfect advance level project.&#xa;&#xa;&#xa;A School Management System Java Code allows you to keep the student records and manage them when needed. This is a simple java project with a good and interactive-looking GUI. This Project Use MySQL Database for managing all the data that store in the database.&#xa;&#xa;MODULES:&#xa;&#xa;- Admin Module&#xa;- Student Module&#xa;- Teacher Module&#xa;- Class Module&#xa;- Exam Module&#xa;- Subject Module"/>
137+
<Property name="disabledTextColor" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
138+
<Color blue="0" green="0" red="0" type="rgb"/>
139+
</Property>
140+
</Properties>
141+
<AuxValues>
142+
<AuxValue name="JavaCodeGenerator_InitCodePost" type="java.lang.String" value="jTextPane1.setEnabled(false);"/>
143+
</AuxValues>
144+
</Component>
145+
</SubComponents>
146+
</Container>
147+
<Component class="javax.swing.JLabel" name="jLabel2">
148+
<Properties>
149+
<Property name="horizontalAlignment" type="int" value="0"/>
150+
<Property name="text" type="java.lang.String" value="Developed by"/>
151+
</Properties>
152+
<Constraints>
153+
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription">
154+
<AbsoluteConstraints x="408" y="646" width="-1" height="21"/>
155+
</Constraint>
156+
</Constraints>
157+
</Component>
158+
<Component class="javax.swing.JLabel" name="jLabel3">
159+
<Properties>
160+
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
161+
<Font name="Segoe UI" size="14" style="1"/>
162+
</Property>
163+
<Property name="horizontalAlignment" type="int" value="0"/>
164+
<Property name="text" type="java.lang.String" value="Naveenkumar J"/>
165+
<Property name="cursor" type="java.awt.Cursor" editor="org.netbeans.modules.form.editors2.CursorEditor">
166+
<Color id="Hand Cursor"/>
167+
</Property>
168+
</Properties>
169+
<Events>
170+
<EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="jLabel3MouseClicked"/>
171+
</Events>
172+
<Constraints>
173+
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription">
174+
<AbsoluteConstraints x="398" y="673" width="-1" height="-1"/>
175+
</Constraint>
176+
</Constraints>
177+
</Component>
178+
<Component class="javax.swing.JLabel" name="jLabel4">
179+
<Properties>
180+
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
181+
<Font name="Tahoma" size="16" style="1"/>
182+
</Property>
183+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
184+
<Color blue="ff" green="99" red="33" type="rgb"/>
185+
</Property>
186+
<Property name="text" type="java.lang.String" value="TECH STACKS USED:"/>
187+
</Properties>
188+
<Constraints>
189+
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription">
190+
<AbsoluteConstraints x="761" y="196" width="-1" height="-1"/>
191+
</Constraint>
192+
</Constraints>
193+
</Component>
194+
<Component class="javax.swing.JLabel" name="jLabel5">
195+
<Properties>
196+
<Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor">
197+
<Image iconType="3" name="/img/mysql.png"/>
198+
</Property>
199+
</Properties>
200+
<Constraints>
201+
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription">
202+
<AbsoluteConstraints x="845" y="222" width="104" height="97"/>
203+
</Constraint>
204+
</Constraints>
205+
</Component>
206+
<Component class="javax.swing.JLabel" name="jLabel6">
207+
<Properties>
208+
<Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor">
209+
<Image iconType="3" name="/img/waamp.png"/>
210+
</Property>
211+
</Properties>
212+
<Constraints>
213+
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription">
214+
<AbsoluteConstraints x="869" y="348" width="80" height="85"/>
215+
</Constraint>
216+
</Constraints>
217+
</Component>
218+
<Component class="javax.swing.JLabel" name="jLabel7">
219+
<Properties>
220+
<Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor">
221+
<Image iconType="3" name="/img/JAVA.png"/>
222+
</Property>
223+
</Properties>
224+
<Constraints>
225+
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription">
226+
<AbsoluteConstraints x="763" y="232" width="-1" height="85"/>
227+
</Constraint>
228+
</Constraints>
229+
</Component>
230+
<Component class="javax.swing.JLabel" name="jLabel8">
231+
<Properties>
232+
<Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor">
233+
<Image iconType="3" name="/img/netbeans.png"/>
234+
</Property>
235+
</Properties>
236+
<Constraints>
237+
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription">
238+
<AbsoluteConstraints x="760" y="350" width="92" height="85"/>
239+
</Constraint>
240+
</Constraints>
241+
</Component>
242+
</SubComponents>
243+
</Container>
244+
</SubComponents>
245+
</Form>

Diff for: build/classes/schoolmanagementsystem/Classes$1.class

831 Bytes
Binary file not shown.
588 Bytes
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/Classes$2.class

831 Bytes
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/Classes$3.class

833 Bytes
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/Classes$4.class

832 Bytes
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/Classes$5.class

794 Bytes
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/Classes$6.class

794 Bytes
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/Classes$7.class

794 Bytes
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/Classes$8.class

793 Bytes
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/Classes$9.class

793 Bytes
Binary file not shown.

Diff for: build/classes/schoolmanagementsystem/Classes.class

16.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)