Package org.springframework.springfaces.traveladvisor.domain

Examples of org.springframework.springfaces.traveladvisor.domain.Rating


  @Value("#{review}")
  private ReviewDetails review;

  public Double getValue() {
    Rating rating = review.getRating();
    return (rating == null ? null : (double) rating.ordinal());
  }
View Full Code Here


    Rating rating = review.getRating();
    return (rating == null ? null : (double) rating.ordinal());
  }

  public void setValue(Double value) {
    Rating rating = value == null ? null : Rating.values()[value.intValue()];
    review.setRating(rating);
  }
View Full Code Here

TOP

Related Classes of org.springframework.springfaces.traveladvisor.domain.Rating

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.