All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.monte.media.StateEvent Maven / Gradle / Ivy

The newest version!

package org.monte.media;

import java.util.EventObject;

public class StateEvent
extends EventObject {

    private int state_;

    public StateEvent(Object source, int state) {
        super(source);
        state_ = state;
    }

    public int getNewState() {
        return state_;
    }

    public String toString() {
        return getClass().getName() + "[source=" + getSource() + ",state=" + state_ + "]";

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy