-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStudent.java
More file actions
38 lines (29 loc) · 745 Bytes
/
Student.java
File metadata and controls
38 lines (29 loc) · 745 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
package com.yurii.salimov.lesson02.task02;
import java.util.Date;
/**
* @author Yuriy Salimov (yuriy.alex.salimov@gmail.com)
* @version 1.0
*/
public final class Student {
private final String name;
private final String surname;
private final Date birth;
public Student(String name, String surname, Date birth) {
this.name = name;
this.surname = surname;
this.birth = birth;
}
@Override
public String toString() {
return this.name + " " + this.surname + ": " + this.birth;
}
public String getName() {
return this.name;
}
public String getSurname() {
return this.surname;
}
public Date getBirth() {
return this.birth;
}
}