| java.awt.event.ActionEvent org.netbeans.swing.tabcontrol.event.TabActionEvent
TabActionEvent | final public class TabActionEvent extends ActionEvent (Code) | | An action event which may be consumed by a listener. These are fired by
TabControl and TabbedContainer to determine if outside code wants to handle
an event, such as clicking the close button (which might be vetoed), or if
the control should handle it itself.
author: Tim Boudreau |
TabActionEvent | public TabActionEvent(Object source, String command, int tabIndex)(Code) | | Creates a new instance of TabActionEvent
|
consume | public void consume()(Code) | | Consume this event - any changes that should be performed as a result
will be done by external code by manipulating the models or other means
|
getMouseEvent | public MouseEvent getMouseEvent()(Code) | | If the action event was triggered by a mouse event, get the mouse event
in question
The mouse event, or null |
getTabIndex | public int getTabIndex()(Code) | | |
isConsumed | public boolean isConsumed()(Code) | | Determine if the event has been consumed
|
|
|