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.
		
		
		
		
		
			
		
			
				
					
					
						
							71 lines
						
					
					
						
							1.8 KiB
						
					
					
				
			
		
		
	
	
							71 lines
						
					
					
						
							1.8 KiB
						
					
					
				| /*
 | |
| * PrestadoresData.java
 | |
| *
 | |
| * Generated by com.evutils.codegen.JDOObjectGenerator on Feb 21, 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 ACTIVO = "activo";
 | |
| 	public static final String FAZ_CONSULTAS = "faz_consultas";
 | |
| 	public static final String FAZ_ECDS = "faz_ecds";
 | |
| 	public static final String CONTRIBUINTE = "contribuinte";
 | |
| 
 | |
| 	public static final String FIELD_NAMES[] = new String[]{
 | |
| 		NOME, NOME_PLAIN, MORADA, CODIGO_POSTAL, LOCALIDADE, LOCALIDADE_CP, CONTACTO_ID, 
 | |
| 		ACTIVO, FAZ_CONSULTAS, FAZ_ECDS, CONTRIBUINTE, };
 | |
| 
 | |
| 
 | |
| 	protected static final String ALL_FIELD_NAMES[] = new String[]{
 | |
| 		ID, NOME, NOME_PLAIN, MORADA, CODIGO_POSTAL, LOCALIDADE, LOCALIDADE_CP, CONTACTO_ID, 
 | |
| 		ACTIVO, FAZ_CONSULTAS, FAZ_ECDS, CONTRIBUINTE, };
 | |
| 
 | |
| 	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;
 | |
| 	}
 | |
| }
 |