/* * 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 TIPO_ECDS = 0; public static final int TIPO_CONSULTA = 1; 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 ); public static final int ESTADO_POR_REALIZAR = 0; public static final int ESTADO_PARCIALMENTE_REALIZADO = 1; public static final int ESTADO_REALIZADO = 2; public static final int ESTADO_DESMARCADO_TRABALHADOR = 3; public static final int ESTADO_DESMARCADO_EMPRESA = 4; public static final int ESTADO_FALTOU = 5; public static final String ESTADOS_CONSULTA_STR[] = new String[]{ "Por Realizar", "Parcialmente Realizada", "Realizada", "Desmarcada pelo Trabalhador", "Desmarcada pela SIPRP", "Trabalhador Faltou" }; public static final String ESTADOS_ECDS_STR[] = new String[]{ "Por Realizar", "Parcialmente Realizados", "Realizados", "Desmarcados pelo Trabalhador", "Desmarcados pela SIPRP", "Trabalhador Faltou" }; public static final String ESTADOS_STR[][] = new String[][]{ ESTADOS_ECDS_STR, ESTADOS_CONSULTA_STR }; }