-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubjects.java
More file actions
87 lines (69 loc) · 2.23 KB
/
Subjects.java
File metadata and controls
87 lines (69 loc) · 2.23 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
public class Subjects {
int englishMarks;
int teluguMarks;
int hindiMarks;
int mathMarks;
int scienceMarks;
int socialMarks;
int generalKnowledgeMarks;
int phisicalEducationMarks;
public int getEnglishMarks() {
return englishMarks;
}
public void setEnglishMarks(int englishMarks) {
this.englishMarks = englishMarks;
}
public int getTeluguMarks() {
return teluguMarks;
}
public void setTeluguMarks(int teluguMarks) {
this.teluguMarks = teluguMarks;
}
public int getHindiMarks() {
return hindiMarks;
}
public void setHindiMarks(int hindiMarks) {
this.hindiMarks = hindiMarks;
}
public int getMathMarks() {
return mathMarks;
}
public void setMathMarks(int mathMarks) {
this.mathMarks = mathMarks;
}
public int getScienceMarks() {
return scienceMarks;
}
public void setScienceMarks(int scienceMarks) {
this.scienceMarks = scienceMarks;
}
public int getSocialMarks() {
return socialMarks;
}
public void setSocialMarks(int socialMarks) {
this.socialMarks = socialMarks;
}
public int getGeneralKnowledgeMarks() {
return generalKnowledgeMarks;
}
public void setGeneralKnowledgeMarks(int generalKnowledgeMarks) {
this.generalKnowledgeMarks = generalKnowledgeMarks;
}
public int getPhisicalEducationMarks() {
return phisicalEducationMarks;
}
public void setPhisicalEducationMarks(int phisicalEducationMarks) {
this.phisicalEducationMarks = phisicalEducationMarks;
}
Subjects(int englishMarks, int teluguMarks, int hindiMarks, int mathMarks, int scienceMarks, int socialMarks, int generalKnowledgeMarks, int phisicalEducationMarks){
this.englishMarks=englishMarks;
this.teluguMarks=teluguMarks;
this.hindiMarks=hindiMarks;
this.mathMarks=mathMarks;
this.scienceMarks=scienceMarks;
this.socialMarks=socialMarks;
this.generalKnowledgeMarks=generalKnowledgeMarks;
this.phisicalEducationMarks=phisicalEducationMarks;
}
Subjects(){}
}