alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Hibernate example source code file (Lower.java)

This example Hibernate source code file (Lower.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Hibernate tags/keywords

list, lower, lower, po, po, set, string, string, top, top, util

The Hibernate Lower.java source code

//$Id: Lower.java 4599 2004-09-26 05:18:27Z oneovthafew $
package org.hibernate.test.legacy;
import java.util.List;
import java.util.Set;


public class Lower extends Top {
	private int intprop;
	private String foo;
	private Set set;
	private List bag;
	private Top another;
	private Lower yetanother;
	private Po mypo;
	/**
	 * Returns the intprop.
	 * @return int
	 */
	public int getIntprop() {
		return intprop;
	}
	
	/**
	 * Sets the intprop.
	 * @param intprop The intprop to set
	 */
	public void setIntprop(int intprop) {
		this.intprop = intprop;
	}
	
	/**
	 * Returns the foo.
	 * @return String
	 */
	public String getFoo() {
		return foo;
	}
	
	/**
	 * Sets the foo.
	 * @param foo The foo to set
	 */
	public void setFoo(String foo) {
		this.foo = foo;
	}
	
	/**
	 * Returns the set.
	 * @return Set
	 */
	public Set getSet() {
		return set;
	}
	
	/**
	 * Sets the set.
	 * @param set The set to set
	 */
	public void setSet(Set set) {
		this.set = set;
	}
	
	/**
	 * Returns the another.
	 * @return Simple
	 */
	public Top getAnother() {
		return another;
	}
	
	/**
	 * Returns the yetanother.
	 * @return LessSimple
	 */
	public Lower getYetanother() {
		return yetanother;
	}
	
	/**
	 * Sets the another.
	 * @param another The another to set
	 */
	public void setAnother(Top another) {
		this.another = another;
	}
	
	/**
	 * Sets the yetanother.
	 * @param yetanother The yetanother to set
	 */
	public void setYetanother(Lower yetanother) {
		this.yetanother = yetanother;
	}
	
	/**
	 * Returns the bag.
	 * @return List
	 */
	public List getBag() {
		return bag;
	}
	
	/**
	 * Sets the bag.
	 * @param bag The bag to set
	 */
	public void setBag(List bag) {
		this.bag = bag;
	}
	
	/**
	 * Returns the mypo.
	 * @return Po
	 */
	public Po getMypo() {
		return mypo;
	}
	
	/**
	 * Sets the mypo.
	 * @param mypo The mypo to set
	 */
	public void setMypo(Po mypo) {
		this.mypo = mypo;
	}
	
}






Other Hibernate examples (source code examples)

Here is a short list of links related to this Hibernate Lower.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.