Package org.growersnation.site.model.weather

Examples of org.growersnation.site.model.weather.WeatherData


    // Assume that the DAOs are perfectly accurate for their APIs
    List<TemperatureLocation> temperatureLocations = temperatureLocationDao.getTemperatureLocationData(lat, lng);

    // Build some weather data
    WeatherData weatherData = new WeatherData();
    weatherData.setTemperatureLocations(temperatureLocations);

    return weatherData;

  }
View Full Code Here

TOP

Related Classes of org.growersnation.site.model.weather.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.