Back to project page cost-tracker.
The source code is released under:
GNU General Public License
If you think the Android project cost-tracker 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 com.helpguest.droid.tracker; /* w w w .j a va 2 s .c om*/ public class TrackerEvent { public enum Type {CREATED, UPDATED, MODIFIED, DELETED}; private String message; private Type eventType; public TrackerEvent(String message, Type type) { this.message = message; this.eventType = type; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public Type getEventType() { return eventType; } public void setEventType(Type eventType) { this.eventType = eventType; } }