Package healthwatcher.model.complaint.state

Examples of healthwatcher.model.complaint.state.SpecialComplaintStateOpen


    private SpecialComplaintState state;

  //construtor vazio
    public SpecialComplaint() {
      super();
      state= new SpecialComplaintStateOpen();
    }
View Full Code Here


    //inicializar tambem o tipo da queixa
       super(solicitante, descricao, observacao,email, atendente, situacao, dataParecer,dataQueixa, enderecoSolicitante,0);

          if(situacao==Situation.QUEIXA_ABERTA)
              state= new SpecialComplaintStateOpen(idade,instrucao, ocupacao,enderecoOcorrencia);
              else if(situacao==Situation.QUEIXA_FECHADA)
                state= new SpecialComplaintStateClosed(idade,instrucao, ocupacao,enderecoOcorrencia);
  }
View Full Code Here

TOP

Related Classes of healthwatcher.model.complaint.state.SpecialComplaintStateOpen

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.