|
Hibernate example source code file (Alien.java)
The Hibernate Alien.java source code//$Id: Alien.java 5686 2005-02-12 07:27:32Z steveebersole $
package org.hibernate.test.unionsubclass;
import java.util.ArrayList;
import java.util.List;
/**
* @author Gavin King
*/
public class Alien extends Being {
private String species;
private Hive hive;
private List hivemates = new ArrayList();
/**
* @return Returns the species.
*/
public String getSpecies() {
return species;
}
/**
* @param species The species to set.
*/
public void setSpecies(String species) {
this.species = species;
}
public Hive getHive() {
return hive;
}
public void setHive(Hive hive) {
this.hive = hive;
}
public List getHivemates() {
return hivemates;
}
public void setHivemates(List hivemates) {
this.hivemates = hivemates;
}
}
Other Hibernate examples (source code examples)Here is a short list of links related to this Hibernate Alien.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 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.