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

PublicationDate.java

//$Id: PublicationDate.java 7556 2005-07-19 23:22:27Z oneovthafew $
package org.hibernate.test.optlock;

public class PublicationDate {
	private int year;
	private Integer month;
	
	public PublicationDate(int year) {
		this.year = year;
	}
	
	PublicationDate() {}
	
	public Integer getMonth() {
		return month;
	}
	public void setMonth(Integer month) {
		this.month = month;
	}
	public int getYear() {
		return year;
	}
	public void setYear(int year) {
		this.year = year;
	}
}