I do not like openweathermap
authorgu.martinm@gmail.com <gu.martinm@gmail.com>
Mon, 14 Apr 2014 03:05:49 +0000 (05:05 +0200)
committergu.martinm@gmail.com <gu.martinm@gmail.com>
Mon, 14 Apr 2014 03:05:49 +0000 (05:05 +0200)
commit05ec2ad762285c9c394200fa34e0b55bc8753f37
tree8035405d15045522bcc3bfd879e3228f187a1303
parent20eb79c6aa0c0ec8ea28d7eb972eaac6e3a6b250
I do not like openweathermap
33 files changed:
Android/WeatherInformation/res/values/strings.xml
Android/WeatherInformation/src/de/example/exampletdd/WeatherInformationActivity.java
Android/WeatherInformation/src/de/example/exampletdd/WeatherInformationMapActivity.java
Android/WeatherInformation/src/de/example/exampletdd/activityinterface/GetWeather.java
Android/WeatherInformation/src/de/example/exampletdd/fragment/overview/WeatherInformationOverviewFragment.java
Android/WeatherInformation/src/de/example/exampletdd/fragment/overview/WeatherOverviewAdapter.java
Android/WeatherInformation/src/de/example/exampletdd/fragment/overview/WeatherOverviewEntry.java
Android/WeatherInformation/src/de/example/exampletdd/fragment/specific/WeatherInformationSpecificDataFragment.java
Android/WeatherInformation/src/de/example/exampletdd/httpclient/Consts.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/httpclient/ContentType.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/httpclient/CustomHTTPClient.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/httpclient/WeatherHTTPClient.java [deleted file]
Android/WeatherInformation/src/de/example/exampletdd/model/WeatherData.java [deleted file]
Android/WeatherInformation/src/de/example/exampletdd/model/currentweather/Clouds.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/currentweather/Coord.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/currentweather/CurrentWeatherData.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/currentweather/Main.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/currentweather/Rain.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/currentweather/Snow.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/currentweather/Sys.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/currentweather/Weather.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/currentweather/Wind.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/forecastweather/City.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/forecastweather/Coord.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/forecastweather/ForecastWeatherData.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/forecastweather/List.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/forecastweather/Temp.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/model/forecastweather/Weather.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/parser/IJPOSWeatherParser.java
Android/WeatherInformation/src/de/example/exampletdd/parser/JPOSWeatherParser.java
Android/WeatherInformation/src/de/example/exampletdd/service/WeatherService.java [deleted file]
Android/WeatherInformation/src/de/example/exampletdd/service/WeatherServiceParser.java [new file with mode: 0644]
Android/WeatherInformation/src/de/example/exampletdd/service/WeatherServicePersistenceFile.java