Back to project page marriagenda.
The source code is released under:
MIT License
If you think the Android project marriagenda 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 marriagenda.controller; // w w w . j av a 2 s. com import java.util.ArrayList; import marriagenda.controller.utilities.Event; import marriagenda.controller.utilities.User; public class EventController { private ArrayList<Event> events; public EventController() { } public void createEvent() { } public boolean isGuest(User u, Event e) { // returns true if e contains u in guestList return true; } public boolean isAdmin(User u, Event e) { // returns true if e contains u in AdminList return true; } }