| Package | Description |
|---|---|
| javax.swing.plaf |
Provides one interface and many abstract classes that Swing uses to provide its pluggable look-and-feel capabilities.
|
| javax.swing.plaf.basic |
Provides user interface objects built according to the Basic look and feel.
|
| javax.swing.plaf.multi |
Provides user interface objects that combine two or more look and feels.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Rectangle |
TabbedPaneUI.getTabBounds(JTabbedPane
|
abstract int |
TabbedPaneUI.getTabRunCount(JTabbedPane
|
abstract int |
TabbedPaneUI.tabForCoordinate(JTabbedPane
|
| Modifier and Type | Field and Description |
|---|---|
protected JTabbedPane |
BasicTabbedPaneUI.tabPane
|
| Modifier and Type | Method and Description |
|---|---|
Rectangle |
BasicTabbedPaneUI.getTabBounds(JTabbedPane
Returns the bounds of the specified tab index.
|
int |
BasicTabbedPaneUI.getTabRunCount(JTabbedPane
|
int |
BasicTabbedPaneUI.tabForCoordinate(JTabbedPane
Returns the tab index which intersects the specified point in the JTabbedPane's coordinate space.
|
| Modifier and Type | Method and Description |
|---|---|
Rectangle |
MultiTabbedPaneUI.getTabBounds(JTabbedPane
Invokes the
getTabBounds method on each UI handled by this object.
|
int |
MultiTabbedPaneUI.getTabRunCount(JTabbedPane
Invokes the
getTabRunCount method on each UI handled by this object.
|
int |
MultiTabbedPaneUI.tabForCoordinate(JTabbedPane
Invokes the
tabForCoordinate method on each UI handled by this object.
|