If you think the Android project Timetable listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package com.timetable.android;
//www.java2s.com/*
* Class that contains all actions, that can be broadcasted inside of application.
*/publicclass BroadcastActions {
/*
* Action to broadcast, when application is started
*/publicstaticfinal String ACTION_APP_STARTED = "com.timetable.android.ACTION_APP_STARTED";
/*
* Action to broadcast, when new event is added to database
*/publicstaticfinal String ACTION_EVENT_ADDED = "com.timetable.android.ACTION_EVENT_ADDED";
/*
* Action to broadcast, when event is updated.
*/publicstaticfinal String ACTION_EVENT_UPDATED = "com.timetable.android.ACTION_EVENT_UPDATED";
/*
* Action to broadcast, when event is deleted.
*/publicstaticfinal String ACTION_EVENT_DELETED = "com.timetable.android.ACTION_EVENT_DELETED";
/*
* Action to broadcast, when event is started
*/publicstaticfinal String ACTION_EVENT_STARTED = "com.timetable.android.ACTION_EVENT_STARTED";
/*
* Action to broadcast, when event is ended
*/publicstaticfinal String ACTION_EVENT_ENDED = "com.timetable.android.ACTION_EVENT_ENDED";
}