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 EnvironmentExplorer.java

class IntEvent extends EventObject {

    int value;

    IntEvent(Object source, int newValue) {
        super(source);

From source file ViewProj.java

class FloatEvent extends EventObject {

    float value;

    FloatEvent(Object source, float newValue) {
        super(source);

From source file AppearanceExplorer.java

class IntEvent extends EventObject {

    int value;

    IntEvent(Object source, int newValue) {
        super(source);