FileDocCategorySizeDatePackage
MoreCrazyIdFieldNameStuffEntity.javaAPI DocHibernate 3.2.51209Thu Jul 14 09:58:28 BST 2005org.hibernate.test.hql

MoreCrazyIdFieldNameStuffEntity.java

// $Id: MoreCrazyIdFieldNameStuffEntity.java 7471 2005-07-14 14:58:28Z steveebersole $
package org.hibernate.test.hql;

/**
 * Implementation of MoreCrazyIdFieldNameStuffEntity.
 *
 * @author Steve Ebersole
 */
public class MoreCrazyIdFieldNameStuffEntity {
	private Long moreCrazyIdFieldNameStuffEntity;
	private HeresAnotherCrazyIdFieldName heresAnotherCrazyIdFieldName; // silly ain't it ;)
	private String name;

	public MoreCrazyIdFieldNameStuffEntity() {
	}

	public MoreCrazyIdFieldNameStuffEntity(String name) {
		this.name = name;
	}

	public Long getMoreCrazyIdFieldNameStuffEntity() {
		return moreCrazyIdFieldNameStuffEntity;
	}

	public void setMoreCrazyIdFieldNameStuffEntity(Long moreCrazyIdFieldNameStuffEntity) {
		this.moreCrazyIdFieldNameStuffEntity = moreCrazyIdFieldNameStuffEntity;
	}

	public HeresAnotherCrazyIdFieldName getHeresAnotherCrazyIdFieldName() {
		return heresAnotherCrazyIdFieldName;
	}

	public void setHeresAnotherCrazyIdFieldName(HeresAnotherCrazyIdFieldName heresAnotherCrazyIdFieldName) {
		this.heresAnotherCrazyIdFieldName = heresAnotherCrazyIdFieldName;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}
}