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

@ -7,13 +7,25 @@ import android.widget.Toast;
import com.uncc.gameday.R;
// TODO: Auto-generated Javadoc
/**
* The Class Alerts.
*/
public class Alerts extends MenuActivity {
/* (non-Javadoc)
* @see com.uncc.gameday.activities.MenuActivity#onCreate(android.os.Bundle)
*/
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_alerts);
}
/**
* On click timed alerts.
*
* @param view the view
*/
public void onClickTimedAlerts(View view) {
int toastDuration = Toast.LENGTH_SHORT;
if (((CheckBox) view).isChecked())
@ -24,6 +36,11 @@ public class Alerts extends MenuActivity {
Toast.makeText(this, "Timed alerts disabled.", toastDuration).show();
}
/**
* On click organization alerts.
*
* @param view the view
*/
public void onClickOrganizationAlerts(View view) {
int toastDuration = Toast.LENGTH_SHORT;
if (((CheckBox) view).isChecked())
@ -34,6 +51,11 @@ public class Alerts extends MenuActivity {
Toast.makeText(this, "Organization alerts disabled.", toastDuration).show();
}
/**
* On click university alerts.
*
* @param view the view
*/
public void onClickUniversityAlerts(View view) {
int toastDuration = Toast.LENGTH_SHORT;
if (((CheckBox) view).isChecked())