-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSchool.java
More file actions
109 lines (85 loc) · 2.47 KB
/
School.java
File metadata and controls
109 lines (85 loc) · 2.47 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Rudi
*/
public class School {
int authority;
String userName;
String userPassword;
String name;
String address;
int phone;
String email;
String linesofEducation;
int totalNumberOfStudents;
public School(int authority, String userName, String userPassword, String name, String address, int phone, String email, String linesofEducation, int totalNumberOfStudents) {
this.authority = authority;
this.userName = userName;
this.userPassword = userPassword;
this.name = name;
this.address = address;
this.phone = phone;
this.email = email;
this.linesofEducation = linesofEducation;
this.totalNumberOfStudents = totalNumberOfStudents;
}
public int getAuthority() {
return authority;
}
public void setAuthority(int authority) {
this.authority = authority;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserPassword() {
return userPassword;
}
public void setUserPassword(String userPassword) {
this.userPassword = userPassword;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public int getPhone() {
return phone;
}
public void setPhone(int phone) {
this.phone = phone;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getLinesofEducation() {
return linesofEducation;
}
public void setLinesofEducation(String linesofEducation) {
this.linesofEducation = linesofEducation;
}
public int getTotalNumberOfStudents() {
return totalNumberOfStudents;
}
public void setTotalNumberOfStudents(int totalNumberOfStudents) {
this.totalNumberOfStudents = totalNumberOfStudents;
}
}