Package healthwatcher.model.complaint.state

Examples of healthwatcher.model.complaint.state.AnimalComplaintStateOpen


  @Persistent
  private String description;

  public AnimalComplaint() {
    super();
    state= new AnimalComplaintStateOpen();
  }
View Full Code Here


    super(solicitante, descricao, observacao,
        email, atendente, situacao, dataParecer,
        dataQueixa, enderecoSolicitante,0);

    if(situacao==Situation.QUEIXA_ABERTA)
      state= new AnimalComplaintStateOpen(animalQuantity, inconvenienceDate, animal, occurenceLocalAddress);
    else if(situacao==Situation.QUEIXA_FECHADA)
      state= new AnimalComplaintStateClosed(animalQuantity, inconvenienceDate, animal, occurenceLocalAddress);
  }
View Full Code Here

TOP

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

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.