Back to project page ls-vertretungsplan.
The source code is released under:
GNU General Public License
If you think the Android project ls-vertretungsplan listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* Vertretungsplan - Android-App fr Vertretungsplne von Schulen Copyright (C) 2014 Johan v. Forstner /*from ww w . j a v a2s. c o m*/ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see [http://www.gnu.org/licenses/]. */ package com.johan.vertretungsplan.parser; import java.io.IOException; import java.util.List; import org.json.JSONException; import com.joejernst.http.Request; import com.joejernst.http.Response; import com.johan.vertretungsplan.objects.Schule; import com.johan.vertretungsplan.objects.Vertretungsplan; /** * Ein Parser fr einen Vertretungsplan. Er erhlt Informationen aus der * JSON-Datei fr eine Schule und liefert den abgerufenen und geparsten * Vertretungsplan zurck. */ public abstract class BaseParser { /** * Die Schule, deren Vertretungsplan geparst werden soll */ protected Schule schule; public BaseParser(Schule schule) { this.schule = schule; } /** * Ruft den Vertretungsplan ab und parst ihn. Wird immer asynchron * ausgefhrt. * * @return Der geparste {@link Vertretungsplan} * @throws IOException * @throws JSONException * @throws VersionException */ public abstract Vertretungsplan getVertretungsplan() throws IOException, JSONException, VersionException, UnauthorizedException; /** * Gibt eine Liste aller verfgbaren Klassen zurck. Wird immer asynchron * ausgefhrt. * * @return Eine Liste aller verfgbaren Klassen fr diese Schule (auch die, * die nicht aktuell vom Vertretungsplan betroffen sind) * @throws IOException * @throws JSONException */ public abstract List<String> getAllClasses() throws IOException, JSONException; protected static String httpGet(String url, String encoding) throws IOException { Response response = new Request(url).getResource(encoding); return response.getBody(); } @SuppressWarnings("serial") public class VersionException extends Exception { } @SuppressWarnings("serial") public class UnauthorizedException extends Exception { } }