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.
		
		
		
		
		
			
		
			
				
					
					
						
							102 lines
						
					
					
						
							2.2 KiB
						
					
					
				
			
		
		
	
	
							102 lines
						
					
					
						
							2.2 KiB
						
					
					
				| /*
 | |
| * TrabalhadoresEcdsDatas.java
 | |
| *
 | |
| * Generated by com.evutils.codegen.JDOObjectGenerator on May 14, 2007
 | |
| *
 | |
| * Use but DON'T TOUCH
 | |
| */
 | |
| package siprp.medicina.processo.data;
 | |
| 
 | |
| import java.util.Date;
 | |
| import com.evolute.utils.jdo.*;
 | |
| 
 | |
| public final class TrabalhadoresEcdsDatas implements JDOInnerObject
 | |
| {
 | |
| 	private Integer id;
 | |
| 	private Integer trabalhadores_ecds_id;
 | |
| 	private Date data;
 | |
| 	private Integer estado;
 | |
| 
 | |
| 	public TrabalhadoresEcdsDatas()
 | |
| 	{
 | |
| 	}
 | |
| 
 | |
| 	public Object getField( String fieldName )
 | |
| 	{
 | |
| 		if( fieldName == TrabalhadoresEcdsDatasData.ID )
 | |
| 		{
 | |
| 			return id;
 | |
| 		}
 | |
| 		else if( fieldName == TrabalhadoresEcdsDatasData.TRABALHADORES_ECDS_ID )
 | |
| 		{
 | |
| 			return trabalhadores_ecds_id;
 | |
| 		}
 | |
| 		else if( fieldName == TrabalhadoresEcdsDatasData.DATA )
 | |
| 		{
 | |
| 			return data;
 | |
| 		}
 | |
| 		else if( fieldName == TrabalhadoresEcdsDatasData.ESTADO )
 | |
| 		{
 | |
| 			return estado;
 | |
| 		}
 | |
| 		else if( fieldName.equals( TrabalhadoresEcdsDatasData.ID ) )
 | |
| 		{
 | |
| 			return id;
 | |
| 		}
 | |
| 		else if( fieldName.equals( TrabalhadoresEcdsDatasData.TRABALHADORES_ECDS_ID ) )
 | |
| 		{
 | |
| 			return trabalhadores_ecds_id;
 | |
| 		}
 | |
| 		else if( fieldName.equals( TrabalhadoresEcdsDatasData.DATA ) )
 | |
| 		{
 | |
| 			return data;
 | |
| 		}
 | |
| 		else if( fieldName.equals( TrabalhadoresEcdsDatasData.ESTADO ) )
 | |
| 		{
 | |
| 			return estado;
 | |
| 		}
 | |
| 		return null;
 | |
| 	}
 | |
| 
 | |
| 	public void setField( String fieldName, Object value )
 | |
| 	{
 | |
| 		if( fieldName == TrabalhadoresEcdsDatasData.ID )
 | |
| 		{
 | |
| 			id = ( Integer ) value;
 | |
| 		}
 | |
| 		else if( fieldName == TrabalhadoresEcdsDatasData.TRABALHADORES_ECDS_ID )
 | |
| 		{
 | |
| 			trabalhadores_ecds_id = ( Integer ) value;
 | |
| 		}
 | |
| 		else if( fieldName == TrabalhadoresEcdsDatasData.DATA )
 | |
| 		{
 | |
| 			data = ( Date ) value;
 | |
| 		}
 | |
| 		else if( fieldName == TrabalhadoresEcdsDatasData.ESTADO )
 | |
| 		{
 | |
| 			estado = ( Integer ) value;
 | |
| 		}
 | |
| 		else if( fieldName.equals( TrabalhadoresEcdsDatasData.ID ) )
 | |
| 		{
 | |
| 			id = ( Integer )  value;
 | |
| 		}
 | |
| 		else if( fieldName.equals( TrabalhadoresEcdsDatasData.TRABALHADORES_ECDS_ID ) )
 | |
| 		{
 | |
| 			trabalhadores_ecds_id = ( Integer )  value;
 | |
| 		}
 | |
| 		else if( fieldName.equals( TrabalhadoresEcdsDatasData.DATA ) )
 | |
| 		{
 | |
| 			data = ( Date )  value;
 | |
| 		}
 | |
| 		else if( fieldName.equals( TrabalhadoresEcdsDatasData.ESTADO ) )
 | |
| 		{
 | |
| 			estado = ( Integer )  value;
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	public Class getOuterClass()
 | |
| 	{
 | |
| 		return TrabalhadoresEcdsDatasData.class;
 | |
| 	}
 | |
| }
 |