You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SIPRP/trunk/siprp/data/HistoricoEstabelecimentoDat...

61 lines
1.2 KiB

/*
* HistoricoEstabelecimentoData.java
*
* Generated by com.evutils.codegen.JDOObjectGenerator on 7/Dez/2004
*
* Use but DON'T TOUCH
*/
package siprp.data;
import java.util.HashMap;
import com.evolute.utils.jdo.*;
public final class HistoricoEstabelecimentoData extends Historico
{
public static final String ID = "id";
public static final String DATA = "data";
public static final String TEXTO = "texto";
public static final String ESTABELECIMENTO = "estabelecimento";
public static final String FIELD_NAMES[] = new String[]{
DATA, TEXTO, ESTABELECIMENTO, };
protected static final String ALL_FIELD_NAMES[] = new String[]{
ID, DATA, TEXTO, ESTABELECIMENTO, };
private HashMap dataHash;
public HistoricoEstabelecimentoData()
{
dataHash = new HashMap();
}
protected Object innerGet( String fieldName )
throws Exception
{
return dataHash.get( fieldName );
}
protected void innerSet( String fieldName, Object value )
throws Exception
{
dataHash.put( fieldName, value );
}
public String []getFieldNames()
{
return FIELD_NAMES;
}
protected String []getAllFieldNames()
{
return ALL_FIELD_NAMES;
}
public Class getInnerClass()
{
return HistoricoEstabelecimento.class;
}
}