Search in sources :

Example 1 with Curren_weather

use of com.octo.android.robospice.springandroid.test.model.xml.Curren_weather in project robospice by stephanenicolas.

the class InFileWeatherPersisterTest method buildWeather.

private Weather buildWeather(Curren_weather curren_weather) {
    Weather weather = new Weather();
    List<Curren_weather> currents = new ArrayList<Curren_weather>();
    currents.add(curren_weather);
    weather.setListWeather(currents);
    weather.setListForecast(null);
    return weather;
}
Also used : Weather(com.octo.android.robospice.springandroid.test.model.xml.Weather) ArrayList(java.util.ArrayList) Curren_weather(com.octo.android.robospice.springandroid.test.model.xml.Curren_weather)

Aggregations

Curren_weather (com.octo.android.robospice.springandroid.test.model.xml.Curren_weather)1 Weather (com.octo.android.robospice.springandroid.test.model.xml.Weather)1 ArrayList (java.util.ArrayList)1