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

net.sf.fmj.media.control.ControlChangeEvent Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package net.sf.fmj.media.control;

import javax.media.*;

/**
 * This event contains information about which Control has changed.
 */
public class ControlChangeEvent
{
    private Control c;

    /**
     * Creates a ControlChangeEvent with the specified control.
     */
    public ControlChangeEvent(Control c)
    {
        this.c = c;
    }

    /**
     * Returns the Control that generated this event.
     */
    public Control getControl()
    {
        return c;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy