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.
		
		
		
		
		
			
		
			
				
					
					
						
							64 lines
						
					
					
						
							1.3 KiB
						
					
					
				
			
		
		
	
	
							64 lines
						
					
					
						
							1.3 KiB
						
					
					
				| /*
 | |
| * TecnicoHSTData.java
 | |
| *
 | |
| * Generated by com.evutils.codegen.JDOObjectGenerator on Feb 1, 2006
 | |
| *
 | |
| * Use but DON'T TOUCH
 | |
| */
 | |
| package siprp.data;
 | |
| 
 | |
| import java.util.HashMap;
 | |
| import com.evolute.utils.jdo.*;
 | |
| 
 | |
| public final class TecnicoHSTData extends JDOObject
 | |
| 	implements DisableDeleteable
 | |
| {
 | |
| 	public static final String ID = "id";
 | |
| 	public static final String NOME = "nome";
 | |
| 	public static final String NOME_PLAIN = "nome_plain";
 | |
| 	public static final String INICIAIS = "iniciais";
 | |
| 	public static final String IDENTIFICADOR = "identificador";
 | |
| 	public static final String INACTIVO = "inactivo";
 | |
| 
 | |
| 	public static final String FIELD_NAMES[] = new String[]{
 | |
| 		NOME, NOME_PLAIN, INICIAIS, IDENTIFICADOR, };
 | |
| 
 | |
| 
 | |
| 	protected static final String ALL_FIELD_NAMES[] = new String[]{
 | |
| 		ID, NOME, NOME_PLAIN, INICIAIS, IDENTIFICADOR, INACTIVO, };
 | |
| 
 | |
| 	private HashMap dataHash;
 | |
| 
 | |
| 	public TecnicoHSTData()
 | |
| 	{
 | |
| 		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 TecnicoHST.class;
 | |
| 	}
 | |
| }
 |