ControlChangeEventpublic class ControlChangeEvent extends Object This event contains information about which Control has changed. |
Fields Summary |
---|
private Control | c |
Constructors Summary |
---|
public ControlChangeEvent(Control c)Creates a ControlChangeEvent with the specified control.
this.c = c;
|
Methods Summary |
---|
public javax.media.Control | getControl()Returns the Control that generated this event.
return c;
|
|