mirror of
https://github.com/ASDjonok/OOP_IO-2x_2023.git
synced 2026-04-02 13:31:51 +03:00
11 lines
183 B
Java
11 lines
183 B
Java
|
|
package encapsulationInheritancePolymorphism;
|
||
|
|
|
||
|
|
public class Student {
|
||
|
|
private String name;
|
||
|
|
private String surname;
|
||
|
|
|
||
|
|
public String getName() {
|
||
|
|
return name;
|
||
|
|
}
|
||
|
|
}
|