Back to project page android-job-queue-exemple.
The source code is released under:
GNU General Public License
If you think the Android project android-job-queue-exemple 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.example.testpathlib.events; /*from ww w . j a v a 2 s .c o m*/ /** * Created by Julien Quivreux on 23/12/13. */ public class Event { public static class TextDataReceived{ private String data; public TextDataReceived(String data) {this.data = data;} public String getData() { return data; } }; public static class ErrorTextDataReceived extends TextDataReceived{ public ErrorTextDataReceived(String data) { super(data); } }; }