Back to project page final_year_frontend.
The source code is released under:
MIT License
If you think the Android project final_year_frontend listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.james.erebus.networking; // w w w . j a va 2 s . c om import java.net.UnknownHostException; import java.util.TimerTask; /** * A {@link java.util.TimerTask} for getting tournament information from the server * @author james * */ public class GetTournamentsTask extends TimerTask{ @Override public void run() { TournamentRetriever t = new TournamentRetriever(); try { t.forceRetrieveFromServer(t.getURI(), t.getTournamentsFilename()); } catch (UnknownHostException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }