Search in sources :

Example 1 with CurrenWeather

use of com.octo.android.robospice.googlehttpclient.test.model.CurrenWeather in project robospice by stephanenicolas.

the class JsonObjectPersisterFactoryTest method buildWeather.

private WeatherResult buildWeather(String temp, String tempUnit) {
    WeatherResult weatherRequestStatus = new WeatherResult();
    Weather weather = new Weather();
    List<CurrenWeather> currents = new ArrayList<CurrenWeather>();
    CurrenWeather current_weather = new CurrenWeather();
    current_weather.setTemp(temp);
    current_weather.setTemp_unit(tempUnit);
    currents.add(current_weather);
    weather.setCurren_weather(currents);
    weatherRequestStatus.setWeather(weather);
    return weatherRequestStatus;
}
Also used : CurrenWeather(com.octo.android.robospice.googlehttpclient.test.model.CurrenWeather) Weather(com.octo.android.robospice.googlehttpclient.test.model.Weather) CurrenWeather(com.octo.android.robospice.googlehttpclient.test.model.CurrenWeather) WeatherResult(com.octo.android.robospice.googlehttpclient.test.model.WeatherResult) ArrayList(java.util.ArrayList)

Aggregations

CurrenWeather (com.octo.android.robospice.googlehttpclient.test.model.CurrenWeather)1 Weather (com.octo.android.robospice.googlehttpclient.test.model.Weather)1 WeatherResult (com.octo.android.robospice.googlehttpclient.test.model.WeatherResult)1 ArrayList (java.util.ArrayList)1