Add template Javadocs. Needs actual documentation yet.

This commit is contained in:
bspeice
2013-11-20 11:55:39 -05:00
parent 6ee303e123
commit c6e0587f1d
23 changed files with 693 additions and 0 deletions

View File

@ -3,14 +3,28 @@ package com.uncc.gameday;
import android.app.Application;
import android.content.Context;
// TODO: Auto-generated Javadoc
/**
* The Class GameDay.
*/
public class GameDay extends Application{
/** The context. */
private static Context context;
/* (non-Javadoc)
* @see android.app.Application#onCreate()
*/
public void onCreate(){
super.onCreate();
GameDay.context = getApplicationContext();
}
/**
* Gets the app context.
*
* @return the app context
*/
public static Context getAppContext() {
return GameDay.context;
}