FileDocCategorySizeDatePackage
PublicationDate.javaAPI DocHibernate 3.2.5478Tue Jul 19 18:22:28 BST 2005org.hibernate.test.optlock

PublicationDate

public 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.IntegergetMonth()

		return month;
	
public intgetYear()

		return year;
	
public voidsetMonth(java.lang.Integer month)

		this.month = month;
	
public voidsetYear(int year)

		this.year = year;