
com.sun.tv.media.controls.ControlChangeEvent Maven / Gradle / Ivy
The newest version!
/*
* @(#)ControlChangeEvent.java 1.4 98/03/28
*
* Copyright 1996-1998 by Sun Microsystems, Inc.,
* 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
* All rights reserved.
*
* This software is the confidential and proprietary information
* of Sun Microsystems, Inc. ("Confidential Information"). You
* shall not disclose such Confidential Information and shall use
* it only in accordance with the terms of the license agreement
* you entered into with Sun.
*/
package com.sun.tv.media.controls;
import javax.media.*;
import com.sun.tv.media.*;
/**
* This class is a part of the porting layer implementation for JavaTV.
* 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 - 2025 Weber Informatics LLC | Privacy Policy