Android Open Source - android-job-queue-exemple Event






From Project

Back to project page android-job-queue-exemple.

License

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.

Java Source Code

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);
        }
    };
}




Java Source Code List

com.example.testpathlib.PathApplication.java
com.example.testpathlib.Utils.java
com.example.testpathlib.events.Event.java
com.example.testpathlib.jobs.GetDataJob.java
com.example.testpathlib.view.activity.MainActivity.java
com.example.testpathlib.view.fragment.ErrorDialogFragment.java
com.example.testpathlib.view.fragment.PlaceholderFragment.java