forked from Coded/SIPRP
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.
68 lines
1.6 KiB
68 lines
1.6 KiB
/*
|
|
* MarcacaoEstabelecimentoData.java
|
|
*
|
|
* Generated by com.evutils.codegen.JDOObjectGenerator on Feb 1, 2006
|
|
*
|
|
* Use but DON'T TOUCH
|
|
*/
|
|
package siprp.data;
|
|
|
|
import java.util.HashMap;
|
|
import com.evolute.utils.jdo.*;
|
|
|
|
public final class MarcacaoEstabelecimentoData extends Marcacao
|
|
{
|
|
public static final String ID = "id";
|
|
public static final String DATA = "data";
|
|
public static final String REALIZADA = "realizada";
|
|
public static final String ESTADO = "estado";
|
|
public static final String TECNICO_HST = "tecnico_hst";
|
|
public static final String DATA_EMAIL = "data_email";
|
|
public static final String DATA_RELATORIO = "data_relatorio";
|
|
public static final String ESTABELECIMENTO = "estabelecimento";
|
|
public static final String OBSERVACOES = "observacoes";
|
|
|
|
public static final String FIELD_NAMES[] = new String[]{
|
|
DATA, REALIZADA, ESTADO, TECNICO_HST, DATA_EMAIL, DATA_RELATORIO, ESTABELECIMENTO,
|
|
OBSERVACOES, };
|
|
|
|
|
|
protected static final String ALL_FIELD_NAMES[] = new String[]{
|
|
ID, DATA, REALIZADA, ESTADO, TECNICO_HST, DATA_EMAIL, DATA_RELATORIO,
|
|
ESTABELECIMENTO, OBSERVACOES, };
|
|
|
|
private HashMap dataHash;
|
|
|
|
public MarcacaoEstabelecimentoData()
|
|
{
|
|
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 MarcacaoEstabelecimento.class;
|
|
}
|
|
}
|