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.
70 lines
1.6 KiB
70 lines
1.6 KiB
/*
|
|
* MarcacaoTrabalhadorData.java
|
|
*
|
|
* Generated by com.evutils.codegen.JDOObjectGenerator on Jan 28, 2006
|
|
*
|
|
* Use but DON'T TOUCH
|
|
*/
|
|
package siprp.data;
|
|
|
|
import java.util.HashMap;
|
|
import com.evolute.utils.jdo.*;
|
|
|
|
public final class MarcacaoTrabalhadorData extends Marcacao
|
|
implements MarcacaoTrabalhadorConstants
|
|
{
|
|
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 MOTIVO = "motivo";
|
|
public static final String DATA_EMAIL = "data_email";
|
|
public static final String DATA_RELATORIO = "data_relatorio";
|
|
public static final String TIPO = "tipo";
|
|
public static final String TRABALHADOR = "trabalhador";
|
|
public static final String OBSERVACOES = "observacoes";
|
|
|
|
public static final String FIELD_NAMES[] = new String[]{
|
|
DATA, REALIZADA, ESTADO, MOTIVO, DATA_EMAIL, DATA_RELATORIO, TIPO, TRABALHADOR,
|
|
OBSERVACOES, };
|
|
|
|
|
|
protected static final String ALL_FIELD_NAMES[] = new String[]{
|
|
ID, DATA, REALIZADA, ESTADO, MOTIVO, DATA_EMAIL, DATA_RELATORIO, TIPO, TRABALHADOR,
|
|
OBSERVACOES, };
|
|
|
|
private HashMap dataHash;
|
|
|
|
public MarcacaoTrabalhadorData()
|
|
{
|
|
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 MarcacaoTrabalhador.class;
|
|
}
|
|
}
|