| java.lang.Object java.util.EventObject org.underworldlabs.swing.plaf.TabRolloverEvent
TabRolloverEvent | public class TabRolloverEvent extends EventObject (Code) | | Defines a tab rectangle rollover event.
author: Takis Diakoumis version: $Revision: 1.4 $ |
Constructor Summary | |
public | TabRolloverEvent(Object source, int index) Creates a new instance of TabRolloverEvent with the
specified object as the source of this event. | public | TabRolloverEvent(Object source, int index, int x, int y) Creates a new instance of TabRolloverEvent with the
specified object as the source of this event. |
Method Summary | |
public int | getIndex() Returns the tab index where this event originated. | public int | getX() The x-coord of the underlying mouse event. | public int | getY() The y-coord of the underlying mouse event. |
TabRolloverEvent | public TabRolloverEvent(Object source, int index)(Code) | | Creates a new instance of TabRolloverEvent with the
specified object as the source of this event.
Parameters: the - source object |
TabRolloverEvent | public TabRolloverEvent(Object source, int index, int x, int y)(Code) | | Creates a new instance of TabRolloverEvent with the
specified object as the source of this event.
Parameters: the - source object |
getIndex | public int getIndex()(Code) | | Returns the tab index where this event originated.
the tab index |
getX | public int getX()(Code) | | The x-coord of the underlying mouse event.
the x-coord |
getY | public int getY()(Code) | | The y-coord of the underlying mouse event.
the y-coord |
|
|