PublicationDatepublic class PublicationDate extends Object
Fields Summary |
---|
private int | year | private Integer | month |
Constructors Summary |
---|
public PublicationDate(int year)
this.year = year;
| PublicationDate()
|
Methods Summary |
---|
public java.lang.Integer | getMonth()
return month;
| public int | getYear()
return year;
| public void | setMonth(java.lang.Integer month)
this.month = month;
| public void | setYear(int year)
this.year = year;
|
|