net.ezcontent.impl.eos.base
Class BaseLanguage

java.lang.Object
  extended bynet.ezcontent.impl.eos.base.BaseLanguage
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
Language

public abstract class BaseLanguage
extends Object
implements Serializable

This is an object that contains data related to the `Language` table. Do not modify this class because it will be overwritten if the configuration file related to this class is modified. For more information visit The Hibernate Synchronizer page, or contact Joe Hudson

See Also:
Serialized Form

Field Summary
private  int hashCode
           
private  int languageID
           
private  String name
           
 
Constructor Summary
BaseLanguage()
           
BaseLanguage(int languageID)
          Constructor for primary key
BaseLanguage(int languageID, String name)
          Constructor for required fields
 
Method Summary
 boolean equals(Object obj)
           
 int getLanguageID()
          Return the unique identifier of this class
 String getName()
           
 int hashCode()
           
 void setLanguageID(int languageID)
          Set the unique identifier of this class
 void setName(String name)
          Set the value related to the column: language
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hashCode

private int hashCode

languageID

private int languageID

name

private String name
Constructor Detail

BaseLanguage

public BaseLanguage()

BaseLanguage

public BaseLanguage(int languageID)
Constructor for primary key


BaseLanguage

public BaseLanguage(int languageID,
                    String name)
Constructor for required fields

Method Detail

getLanguageID

public int getLanguageID()
Return the unique identifier of this class


setLanguageID

public void setLanguageID(int languageID)
Set the unique identifier of this class

Parameters:
languageID - the new ID

getName

public String getName()

setName

public void setName(String name)
Set the value related to the column: language

Parameters:
name - the language value

equals

public boolean equals(Object obj)

hashCode

public int hashCode()