2023-02-16 16:10:38 +02:00
|
|
|
package encapsulationInheritancePolymorphism;
|
|
|
|
|
|
|
|
public class Student {
|
|
|
|
private String name;
|
|
|
|
private String surname;
|
2023-02-16 16:30:11 +02:00
|
|
|
private String group;
|
|
|
|
private String faculty;
|
|
|
|
|
2023-02-16 16:10:38 +02:00
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return name;
|
|
|
|
}
|
2023-02-16 16:30:11 +02:00
|
|
|
|
|
|
|
public void setFaculty(String faculty, String group) {
|
|
|
|
this.faculty = faculty;
|
|
|
|
this.group = group;
|
|
|
|
}
|
2023-02-16 16:10:38 +02:00
|
|
|
}
|