| java.lang.Object java.util.EventObject net.mygwt.ui.client.viewer.CheckStateChangedEvent
CheckStateChangedEvent | public class CheckStateChangedEvent extends EventObject (Code) | | Event object describing a change to the checked state of a viewer element.
See Also: ICheckStateListener |
Method Summary | |
public ICheckable | getCheckable() Returns the checkable that is the source of this event. | public boolean | getChecked() Returns the checked state of the element. | public Object | getElement() Returns the element whose check state changed. |
CheckStateChangedEvent | public CheckStateChangedEvent(ICheckable source, Object element, boolean state)(Code) | | Creates a new event for the given source, element, and checked state.
Parameters: source - the source Parameters: element - the element Parameters: state - the checked state |
getCheckable | public ICheckable getCheckable()(Code) | | Returns the checkable that is the source of this event.
the originating checkable |
getChecked | public boolean getChecked()(Code) | | Returns the checked state of the element.
the checked state |
getElement | public Object getElement()(Code) | | Returns the element whose check state changed.
the element |
|
|