Package healthwatcher.model.complaint.state

Examples of healthwatcher.model.complaint.state.ComplaintStateOpen


  private ComplaintState state;

  private List<Observer> subscribers = new ArrayList<Observer>();

  public Complaint() {
    state= new ComplaintStateOpen();
  }
View Full Code Here


  public Complaint(String solicitante, String descricao, String observacao, String email,
      Employee atendente, int situacao, Date dataParecer, Date dataQueixa,
      Address enderecoSolicitante, long timestamp) {

    if(situacao==Situation.QUEIXA_ABERTA)
      state= new ComplaintStateOpen((long) 0,solicitante, descricao,
          observacao, email, atendente,
          dataParecer, dataQueixa,
          enderecoSolicitante, timestamp);
    else if(situacao==Situation.QUEIXA_FECHADA)
      state= new ComplaintStateClosed((long) 0,solicitante, descricao,
View Full Code Here

TOP

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

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.