-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfmsmainclass.java~
More file actions
55 lines (37 loc) · 824 Bytes
/
fmsmainclass.java~
File metadata and controls
55 lines (37 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* author @ Shreyash Arya (2015097)h
Tushita Rathore (2015108)
*/
import java.util.*;
import javax.swing.JFrame;
public class fmsmainclass{
//staff[] staff = new staff[100];
//supervisor[] supervisor = new supervisor[5];
//admin gm = new admin();
public fmsmainclass()
{
/*for(int i=0;i<100;i++)
{
staff[i]=new staff();
}
for(int i=0;i<5;i++)
{
supervisor[i]=new supervisor();
}*/
login start = new login();
//add(start);
}
public static void main(String args[])
{
fmsmainclass fmc = new fmsmainclass();
/*fmc.pack();
fmc.setDefaultLookAndFeelDecorated(true);
//ttt.setSize(300,300);
fmc.setVisible(true);
fmc.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fmc.setTitle("FMS System");*/
}
public int DepartmentId()
{
return 0;
}
}