Back to project page android-project.
The source code is released under:
GNU General Public License
If you think the Android project android-project 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 pl.wroc.pwr.patryk; /*from w w w.jav a 2 s . co m*/ import java.util.EventObject; public class RunningChangeEvent extends EventObject { /** * */ private static final long serialVersionUID = 1L; private boolean running; public RunningChangeEvent(Object source){ super(source); } /** * @return the running */ public boolean isRunning() { return running; } /** * @param running the running to set */ public void setRunning(boolean running) { this.running = running; } }