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.
		
		
		
		
		
			
		
			
				
					
					
						
							27 lines
						
					
					
						
							838 B
						
					
					
				
			
		
		
	
	
							27 lines
						
					
					
						
							838 B
						
					
					
				| /*
 | |
|  * MedicinaConstants.java
 | |
|  *
 | |
|  * Created on 6 de Julho de 2006, 15:22
 | |
|  *
 | |
|  * To change this template, choose Tools | Template Manager
 | |
|  * and open the template in the editor.
 | |
|  */
 | |
| 
 | |
| package siprp.medicina;
 | |
| 
 | |
| /**
 | |
|  *
 | |
|  * @author fpalma
 | |
|  */
 | |
| public interface MedicinaConstants
 | |
| {
 | |
| 	public static final int MOTIVO_ADMISSAO = 1;
 | |
| 	public static final Integer MOTIVO_ADMISSAO_INTEGER = new Integer( MOTIVO_ADMISSAO );
 | |
| 	public static final int MOTIVO_PERIODICO = 2;
 | |
| 	public static final Integer MOTIVO_PERIODICO_INTEGER = new Integer( MOTIVO_PERIODICO );
 | |
| 	public static final int MOTIVO_OCASIONAL = 3;
 | |
| 	public static final Integer MOTIVO_OCASIONAL_INTEGER = new Integer( MOTIVO_OCASIONAL );
 | |
| 	public static final int MOTIVO_PERIODICO_INICIAL = 5;
 | |
| 	public static final Integer MOTIVO_PERIODICO_INICIAL_INTEGER = new Integer( MOTIVO_PERIODICO_INICIAL );
 | |
| }
 |