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.
73 lines
1.9 KiB
73 lines
1.9 KiB
/*
|
|
* PrestadoresData.java
|
|
*
|
|
* Generated by com.evutils.codegen.JDOObjectGenerator on Feb 2, 2007
|
|
*
|
|
* Use but DON'T TOUCH
|
|
*/
|
|
package siprp.medicina.prestadores.data;
|
|
|
|
import java.util.HashMap;
|
|
import com.evolute.utils.jdo.*;
|
|
|
|
public final class PrestadoresData extends JDOObject
|
|
{
|
|
public static final String ID = "id";
|
|
public static final String NOME = "nome";
|
|
public static final String NOME_PLAIN = "nome_plain";
|
|
public static final String MORADA = "morada";
|
|
public static final String CODIGO_POSTAL = "codigo_postal";
|
|
public static final String LOCALIDADE = "localidade";
|
|
public static final String LOCALIDADE_CP = "localidade_cp";
|
|
public static final String CONTACTO_ID = "contacto_id";
|
|
public static final String INICIO = "inicio";
|
|
public static final String FIM = "fim";
|
|
public static final String ORDEM = "ordem";
|
|
public static final String ACTIVO = "activo";
|
|
public static final String FAZ_CONSULTAS = "faz_consultas";
|
|
public static final String FAZ_ECDS = "faz_ecds";
|
|
|
|
public static final String FIELD_NAMES[] = new String[]{
|
|
NOME, NOME_PLAIN, MORADA, CODIGO_POSTAL, LOCALIDADE, LOCALIDADE_CP, CONTACTO_ID,
|
|
INICIO, FIM, ORDEM, ACTIVO, FAZ_CONSULTAS, FAZ_ECDS, };
|
|
|
|
|
|
protected static final String ALL_FIELD_NAMES[] = new String[]{
|
|
ID, NOME, NOME_PLAIN, MORADA, CODIGO_POSTAL, LOCALIDADE, LOCALIDADE_CP, CONTACTO_ID,
|
|
INICIO, FIM, ORDEM, ACTIVO, FAZ_CONSULTAS, FAZ_ECDS, };
|
|
|
|
private HashMap dataHash;
|
|
|
|
public PrestadoresData()
|
|
{
|
|
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 Prestadores.class;
|
|
}
|
|
}
|