net.ezcontent.impl.eos.base
Class BaseTextoDoc

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

public abstract class BaseTextoDoc
extends Object
implements Serializable

This is an object that contains data related to the `DocText` 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 textID
           
private  String texto
           
 
Constructor Summary
BaseTextoDoc()
           
BaseTextoDoc(int textID)
          Constructor for primary key
 
Method Summary
 boolean equals(Object obj)
           
 int getTextID()
          Return the unique identifier of this class
 String getTexto()
           
 int hashCode()
           
 void setTextID(int textID)
          Set the unique identifier of this class
 void setTexto(String texto)
          Set the value related to the column: texto
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hashCode

private int hashCode

textID

private int textID

texto

private String texto
Constructor Detail

BaseTextoDoc

public BaseTextoDoc()

BaseTextoDoc

public BaseTextoDoc(int textID)
Constructor for primary key

Method Detail

getTextID

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


setTextID

public void setTextID(int textID)
Set the unique identifier of this class

Parameters:
textID - the new ID

getTexto

public String getTexto()

setTexto

public void setTexto(String texto)
Set the value related to the column: texto

Parameters:
texto - the texto value

equals

public boolean equals(Object obj)

hashCode

public int hashCode()