Roster/src/java/org/thdl/roster/om/BaseLanguage.java

562 lines
15 KiB
Java
Executable File

package org.thdl.roster.om;
import java.math.BigDecimal;
import java.sql.Connection;
import java.util.ArrayList;
import java.util.Date;
import java.util.Collections;
import java.util.List;
import org.apache.commons.lang.ObjectUtils;
import org.apache.torque.TorqueException;
import org.apache.torque.om.BaseObject;
import org.apache.torque.om.ComboKey;
import org.apache.torque.om.DateKey;
import org.apache.torque.om.NumberKey;
import org.apache.torque.om.ObjectKey;
import org.apache.torque.om.SimpleKey;
import org.apache.torque.om.StringKey;
import org.apache.torque.om.Persistent;
import org.apache.torque.util.Criteria;
import org.apache.torque.util.Transaction;
/**
* This class was autogenerated by Torque on:
*
* [Wed May 14 19:01:42 EDT 2003]
*
* You should not use this class directly. It should not even be
* extended all references should be to Language
*/
public abstract class BaseLanguage extends BaseObject
{
/** The Peer class */
private static final LanguagePeer peer =
new LanguagePeer();
/**
* The value for the id field
*/
private Integer id;
/**
* The value for the language field
*/
private String language;
/**
* Get the Id
*
* @return Integer
*/
public Integer getId()
{
return id;
}
/**
* Set the value of Id
*
* @param v new value
*/
public void setId(Integer v) throws TorqueException
{
if (!ObjectUtils.equals(this.id, v))
{
this.id = v;
setModified(true);
}
// update associated ResearchInterestLanguage
if (collResearchInterestLanguages != null)
{
for (int i = 0; i < collResearchInterestLanguages.size(); i++)
{
((ResearchInterestLanguage) collResearchInterestLanguages.get(i))
.setLanguageId(v);
}
}
}
/**
* Get the Language
*
* @return String
*/
public String getLanguage()
{
return language;
}
/**
* Set the value of Language
*
* @param v new value
*/
public void setLanguage(String v)
{
if (!ObjectUtils.equals(this.language, v))
{
this.language = v;
setModified(true);
}
}
/**
* Collection to store aggregation of collResearchInterestLanguages
*/
protected List collResearchInterestLanguages;
/**
* Temporary storage of collResearchInterestLanguages to save a possible db hit in
* the event objects are add to the collection, but the
* complete collection is never requested.
*/
protected void initResearchInterestLanguages()
{
if (collResearchInterestLanguages == null)
{
collResearchInterestLanguages = new ArrayList();
}
}
/**
* Method called to associate a ResearchInterestLanguage object to this object
* through the ResearchInterestLanguage foreign key attribute
*
* @param l ResearchInterestLanguage
* @throws TorqueException
*/
public void addResearchInterestLanguage(ResearchInterestLanguage l) throws TorqueException
{
getResearchInterestLanguages().add(l);
l.setLanguage((Language) this);
}
/**
* The criteria used to select the current contents of collResearchInterestLanguages
*/
private Criteria lastResearchInterestLanguagesCriteria = null;
/**
* If this collection has already been initialized, returns
* the collection. Otherwise returns the results of
* getResearchInterestLanguages(new Criteria())
*
* @throws TorqueException
*/
public List getResearchInterestLanguages() throws TorqueException
{
if (collResearchInterestLanguages == null)
{
collResearchInterestLanguages = getResearchInterestLanguages(new Criteria(10));
}
return collResearchInterestLanguages;
}
/**
* If this collection has already been initialized with
* an identical criteria, it returns the collection.
* Otherwise if this Language has previously
* been saved, it will retrieve related ResearchInterestLanguages from storage.
* If this Language is new, it will return
* an empty collection or the current collection, the criteria
* is ignored on a new object.
*
* @throws TorqueException
*/
public List getResearchInterestLanguages(Criteria criteria) throws TorqueException
{
if (collResearchInterestLanguages == null)
{
if (isNew())
{
collResearchInterestLanguages = new ArrayList();
}
else
{
criteria.add(ResearchInterestLanguagePeer.LANGUAGE_ID, getId() );
collResearchInterestLanguages = ResearchInterestLanguagePeer.doSelect(criteria);
}
}
else
{
// criteria has no effect for a new object
if (!isNew())
{
// the following code is to determine if a new query is
// called for. If the criteria is the same as the last
// one, just return the collection.
criteria.add(ResearchInterestLanguagePeer.LANGUAGE_ID, getId());
if (!lastResearchInterestLanguagesCriteria.equals(criteria))
{
collResearchInterestLanguages = ResearchInterestLanguagePeer.doSelect(criteria);
}
}
}
lastResearchInterestLanguagesCriteria = criteria;
return collResearchInterestLanguages;
}
/**
* If this collection has already been initialized, returns
* the collection. Otherwise returns the results of
* getResearchInterestLanguages(new Criteria(),Connection)
* This method takes in the Connection also as input so that
* referenced objects can also be obtained using a Connection
* that is taken as input
*/
public List getResearchInterestLanguages(Connection con) throws TorqueException
{
if (collResearchInterestLanguages == null)
{
collResearchInterestLanguages = getResearchInterestLanguages(new Criteria(10), con);
}
return collResearchInterestLanguages;
}
/**
* If this collection has already been initialized with
* an identical criteria, it returns the collection.
* Otherwise if this Language has previously
* been saved, it will retrieve related ResearchInterestLanguages from storage.
* If this Language is new, it will return
* an empty collection or the current collection, the criteria
* is ignored on a new object.
* This method takes in the Connection also as input so that
* referenced objects can also be obtained using a Connection
* that is taken as input
*/
public List getResearchInterestLanguages(Criteria criteria, Connection con)
throws TorqueException
{
if (collResearchInterestLanguages == null)
{
if (isNew())
{
collResearchInterestLanguages = new ArrayList();
}
else
{
criteria.add(ResearchInterestLanguagePeer.LANGUAGE_ID, getId());
collResearchInterestLanguages = ResearchInterestLanguagePeer.doSelect(criteria, con);
}
}
else
{
// criteria has no effect for a new object
if (!isNew())
{
// the following code is to determine if a new query is
// called for. If the criteria is the same as the last
// one, just return the collection.
criteria.add(ResearchInterestLanguagePeer.LANGUAGE_ID, getId());
if (!lastResearchInterestLanguagesCriteria.equals(criteria))
{
collResearchInterestLanguages = ResearchInterestLanguagePeer.doSelect(criteria, con);
}
}
}
lastResearchInterestLanguagesCriteria = criteria;
return collResearchInterestLanguages;
}
private static List fieldNames = null;
/**
* Generate a list of field names.
*
* @return a list of field names
*/
public static synchronized List getFieldNames()
{
if (fieldNames == null)
{
fieldNames = new ArrayList();
fieldNames.add("Id");
fieldNames.add("Language");
fieldNames = Collections.unmodifiableList(fieldNames);
}
return fieldNames;
}
/**
* Retrieves a field from the object by name passed in as a String.
*
* @param name field name
* @return value
*/
public Object getByName(String name)
{
if (name.equals("Id"))
{
return getId();
}
if (name.equals("Language"))
{
return getLanguage();
}
return null;
}
/**
* Retrieves a field from the object by name passed in
* as a String. The String must be one of the static
* Strings defined in this Class' Peer.
*
* @param name peer name
* @return value
*/
public Object getByPeerName(String name)
{
if (name.equals(LanguagePeer.ID))
{
return getId();
}
if (name.equals(LanguagePeer.LANGUAGE))
{
return getLanguage();
}
return null;
}
/**
* Retrieves a field from the object by Position as specified
* in the xml schema. Zero-based.
*
* @param pos position in xml schema
* @return value
*/
public Object getByPosition(int pos)
{
if (pos == 0)
{
return getId();
}
if (pos == 1)
{
return getLanguage();
}
return null;
}
/**
* Stores the object in the database. If the object is new,
* it inserts it; otherwise an update is performed.
*
* @throws Exception
*/
public void save() throws Exception
{
save(LanguagePeer.getMapBuilder()
.getDatabaseMap().getName());
}
/**
* Stores the object in the database. If the object is new,
* it inserts it; otherwise an update is performed.
* Note: this code is here because the method body is
* auto-generated conditionally and therefore needs to be
* in this file instead of in the super class, BaseObject.
*
* @param dbName
* @throws TorqueException
*/
public void save(String dbName) throws TorqueException
{
Connection con = null;
try
{
con = Transaction.begin(dbName);
save(con);
Transaction.commit(con);
}
catch(TorqueException e)
{
Transaction.safeRollback(con);
throw e;
}
}
/** flag to prevent endless save loop, if this object is referenced
by another object which falls in this transaction. */
private boolean alreadyInSave = false;
/**
* Stores the object in the database. If the object is new,
* it inserts it; otherwise an update is performed. This method
* is meant to be used as part of a transaction, otherwise use
* the save() method and the connection details will be handled
* internally
*
* @param con
* @throws TorqueException
*/
public void save(Connection con) throws TorqueException
{
if (!alreadyInSave)
{
alreadyInSave = true;
// If this object has been modified, then save it to the database.
if (isModified())
{
if (isNew())
{
LanguagePeer.doInsert((Language) this, con);
setNew(false);
}
else
{
LanguagePeer.doUpdate((Language) this, con);
}
}
if (collResearchInterestLanguages != null)
{
for (int i = 0; i < collResearchInterestLanguages.size(); i++)
{
((ResearchInterestLanguage) collResearchInterestLanguages.get(i)).save(con);
}
}
alreadyInSave = false;
}
}
/**
* Set the PrimaryKey using ObjectKey.
*
* @param id ObjectKey
*/
public void setPrimaryKey(ObjectKey key)
throws TorqueException
{
setId(new Integer(((NumberKey) key).intValue()));
}
/**
* Set the PrimaryKey using a String.
*
* @param key
*/
public void setPrimaryKey(String key) throws TorqueException
{
setId(new Integer(key));
}
/**
* returns an id that differentiates this object from others
* of its class.
*/
public ObjectKey getPrimaryKey()
{
return SimpleKey.keyFor(getId());
}
/**
* Makes a copy of this object.
* It creates a new object filling in the simple attributes.
* It then fills all the association collections and sets the
* related objects to isNew=true.
*/
public Language copy() throws TorqueException
{
return copyInto(new Language());
}
protected Language copyInto(Language copyObj) throws TorqueException
{
copyObj.setId(id);
copyObj.setLanguage(language);
copyObj.setNew(false);
List v = getResearchInterestLanguages();
for (int i = 0; i < v.size(); i++)
{
ResearchInterestLanguage obj = (ResearchInterestLanguage) v.get(i);
copyObj.addResearchInterestLanguage(obj.copy());
((Persistent) v.get(i)).setNew(true);
}
copyObj.setNew(true);
copyObj.setId((Integer)null);
return copyObj;
}
/**
* returns a peer instance associated with this om. Since Peer classes
* are not to have any instance attributes, this method returns the
* same instance for all member of this class. The method could therefore
* be static, but this would prevent one from overriding the behavior.
*/
public LanguagePeer getPeer()
{
return peer;
}
}