mirror of
https://github.com/bspeice/UNCCGameDay
synced 2025-07-15 20:55:08 -04:00
Add template Javadocs. Needs actual documentation yet.
This commit is contained in:
@ -5,13 +5,25 @@ import java.util.List;
|
||||
import android.app.IntentService;
|
||||
import android.content.Intent;
|
||||
|
||||
// TODO: Auto-generated Javadoc
|
||||
/**
|
||||
* The Class AlertService.
|
||||
*/
|
||||
public class AlertService extends IntentService {
|
||||
|
||||
/** The Constant name. */
|
||||
private static final String name = "AlertService";
|
||||
|
||||
/**
|
||||
* Instantiates a new alert service.
|
||||
*/
|
||||
public AlertService() {
|
||||
super(name);
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see android.app.IntentService#onHandleIntent(android.content.Intent)
|
||||
*/
|
||||
@Override
|
||||
protected void onHandleIntent(Intent intent) {
|
||||
// Go fetch all the alerts!
|
||||
|
Reference in New Issue
Block a user