Example usage for java.util EventObject subclass-usage

List of usage examples for java.util EventObject subclass-usage

Introduction

In this page you can find the example usage for java.util EventObject subclass-usage.

Usage

From source file MyEvent.java

class MyEvent extends EventObject {
    public MyEvent(Object source) {
        super(source);
    }
}

From source file org.dawnsci.common.richbeans.event.BoundsEvent.java

/**
 * @author Matthew Gerring
 *
 */
public class BoundsEvent extends EventObject {

From source file io.cloudslang.lang.tools.build.tester.parallel.testcaseevents.SlangTestCaseEvent.java

public class SlangTestCaseEvent extends EventObject {

    private SlangTestCase slangTestCase;

    public SlangTestCaseEvent(SlangTestCase slangTestCase) {
        super(slangTestCase.getName());

From source file org.bigmouth.nvwa.zookeeper.listener.ChangeEventObject.java

/**
 * 
 * @author Allen Hu 2015-6-1
 */
public class ChangeEventObject extends EventObject {

From source file org.eredlab.g4.ccl.net.ProtocolCommandEvent.java

/***
 * There exists a large class of IETF protocols that work by sending an
 * ASCII text command and arguments to a server, and then receiving an
 * ASCII text reply.  For debugging and other purposes, it is extremely
 * useful to log or keep track of the contents of the protocol messages.
 * The ProtocolCommandEvent class coupled with the

From source file org.polymap.kaps.ui.InterEditorPropertyChangeEvent.java

/**
 * @author <a href="http://www.polymap.de">Steffen Stundzig</a>
 */
public class InterEditorPropertyChangeEvent extends EventObject {

    private static final long serialVersionUID = 1L;

From source file org.polymap.core.data.FeatureChangeEvent.java

/**
 * 
 *
 * @author <a href="http://www.polymap.de">Falko Brutigam</a>
 */
public class FeatureChangeEvent extends EventObject {

From source file fr.ritaly.dungeonmaster.event.ItemEvent.java

/**
 * An item event fired to notify when an item is dropped or picked.
 *
 * @author <a href="mailto:francois.ritaly@gmail.com">Francois RITALY</a>
 */
public class ItemEvent extends EventObject {

From source file com.anrisoftware.prefdialog.miscswing.docks.api.LayoutWorkerEvent.java

/**
 * Event of changes in the layout.
 *
 * @author Erwin Mueller, erwin.mueller@deventm.org
 * @since 1.0
 */

From source file de.kaiserpfalzEdv.vaadin.event.BaseEvent.java

/**
 * @author klenkes
 * @version 2015Q1
 * @since 09.09.15 19:57
 */
public abstract class BaseEvent<T extends Serializable> extends EventObject {