Package org.springframework.osgi.samples.weather.dao

Examples of org.springframework.osgi.samples.weather.dao.WeatherData


  public void setWeatherDao(WeatherDao weatherDao) {
    this.weatherDao = weatherDao;
  }

  public Double getHistoricalHigh(Date date) {
    WeatherData wd = weatherDao.find(date);
    if (wd != null)
      return new Double(wd.getHigh());
    return null;
  }
View Full Code Here

TOP

Related Classes of org.springframework.osgi.samples.weather.dao.WeatherData

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.