Back to project page tapad-android-sdk.
The source code is released under:
MIT License
If you think the Android project tapad-android-sdk 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.tapad.tracking; //from w ww .j a v a 2 s . c om /** * A wrapper for all event information. */ class Event { private String id; private String extraParameters; protected Event(String id, String extraParameters) { this.id = id; this.extraParameters = extraParameters; } protected Event(String id) { this(id, null); } public String getId() { return id; } public String getExtraParameters() { return extraParameters; } @Override public String toString() { return "Event[id=" + id + ", extraParams=" + extraParameters + "]"; } }