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
						
					
					
						
							628 B
						
					
					
				
			
		
		
	
	
							27 lines
						
					
					
						
							628 B
						
					
					
				| /*
 | |
|  * LembretesConstants.java
 | |
|  *
 | |
|  * Created on February 12, 2007, 4:44 PM
 | |
|  *
 | |
|  * To change this template, choose Tools | Template Manager
 | |
|  * and open the template in the editor.
 | |
|  */
 | |
| 
 | |
| package siprp.lembretes;
 | |
| 
 | |
| /**
 | |
|  *
 | |
|  * @author fpalma
 | |
|  */
 | |
| public interface LembretesConstants
 | |
| {
 | |
| 	public static final String CODE_EXTERNO = "EXTERNO";
 | |
| 	public static final String CODE_REMARCACOES = "REMARCACOES";
 | |
| 	public static final String CODE_MARCACOES = "MARCACOES";
 | |
| 	public static final String CODE_OUTROS = "OUTROS";
 | |
| 	
 | |
| 	public static final String CODES[] =
 | |
| 		new String[]{ CODE_EXTERNO, CODE_REMARCACOES, CODE_MARCACOES,
 | |
| 						CODE_OUTROS };
 | |
| }
 |