View Javadoc
1   
2   public class Date {
3   	int day;
4   	int month;
5   	int year;
6   
7   	public Date() {
8   		super();
9   	}
10  
11  	public int getDay() {
12  		return day;
13  	}
14  
15  	public void setDay(int day) {
16  		this.day = day;
17  	}
18  
19  	public int getMonth() {
20  		return month;
21  	}
22  
23  	public void setMonth(int month) {
24  		this.month = month;
25  	}
26  
27  	public int getYear() {
28  		return year;
29  	}
30  
31  	public void setYear(int year) {
32  		this.year = year;
33  	}
34  
35  	@Override
36  	public String toString() {
37  		return "Date: " + day + "/" + month + "/" + year;
38  	}
39  
40  }