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.
66 lines
1.5 KiB
66 lines
1.5 KiB
/*
|
|
* TrabalhadoresProcessoData.java
|
|
*
|
|
* Generated by com.evutils.codegen.JDOObjectGenerator on Jan 16, 2008
|
|
*
|
|
* Use but DON'T TOUCH
|
|
*/
|
|
package siprp.medicina.processo.data;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import com.evolute.utils.jdo.JDOObject;
|
|
|
|
public final class TrabalhadoresProcessoData extends JDOObject
|
|
{
|
|
public static final String ID = "id";
|
|
public static final String TRABALHADOR_ID = "trabalhador_id";
|
|
public static final String ESTADO = "estado";
|
|
public static final String DATA_INICIO = "data_inicio";
|
|
public static final String DATA_FIM = "data_fim";
|
|
public static final String MOTIVO = "motivo";
|
|
public static final String SUB_MOTIVO = "sub_motivo";
|
|
public static final String ACTIVO = "activo";
|
|
|
|
public static final String FIELD_NAMES[] = new String[]{
|
|
TRABALHADOR_ID, ESTADO, DATA_INICIO, DATA_FIM, MOTIVO, SUB_MOTIVO, ACTIVO, };
|
|
|
|
|
|
protected static final String ALL_FIELD_NAMES[] = new String[]{
|
|
ID, TRABALHADOR_ID, ESTADO, DATA_INICIO, DATA_FIM, MOTIVO, SUB_MOTIVO, ACTIVO, };
|
|
|
|
private HashMap dataHash;
|
|
|
|
public TrabalhadoresProcessoData()
|
|
{
|
|
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 TrabalhadoresProcesso.class;
|
|
}
|
|
}
|