JTabbedPane (Java 2 Platform SE 5.0) (original) (raw)


javax.swing

Class JTabbedPane

java.lang.Object extended by java.awt.Component extended by java.awt.Container extended by javax.swing.JComponent extended by javax.swing.JTabbedPane

All Implemented Interfaces:

ImageObserver, MenuContainer, Serializable, Accessible, SwingConstants


public class JTabbedPane

extends JComponent

implements Serializable, Accessible, SwingConstants

A component that lets the user switch between a group of components by clicking on a tab with a given title and/or icon. For examples and information on using tabbed panes seeHow to Use Tabbed Panes, a section in The Java Tutorial.

Tabs/components are added to a TabbedPane object by using theaddTab and insertTab methods. A tab is represented by an index corresponding to the position it was added in, where the first tab has an index equal to 0 and the last tab has an index equal to the tab count minus 1.

The TabbedPane uses a SingleSelectionModel to represent the set of tab indices and the currently selected index. If the tab count is greater than 0, then there will always be a selected index, which by default will be initialized to the first tab. If the tab count is 0, then the selected index will be -1.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeansTM has been added to the java.beans package. Please see XMLEncoder.

See Also:

SingleSelectionModel


Nested Class Summary
protected class JTabbedPane.AccessibleJTabbedPane This class implements accessibility support for the JTabbedPane class.
protected class JTabbedPane.ModelListener We pass ModelChanged events along to the listeners with the tabbedpane (instead of the model itself) as the event source.
Nested classes/interfaces inherited from class javax.swing.JComponent
JComponent.AccessibleJComponent
Nested classes/interfaces inherited from class java.awt.Container
Container.AccessibleAWTContainer
Nested classes/interfaces inherited from class java.awt.Component
Component.AccessibleAWTComponent, Component.BltBufferStrategy, Component.FlipBufferStrategy
Field Summary
protected ChangeEvent changeEvent Only one ChangeEvent is needed per TabPane instance since the event's only (read-only) state is the source property.
protected ChangeListener changeListener The changeListener is the listener we add to the model.
protected SingleSelectionModel model The default selection model
static int SCROLL_TAB_LAYOUT Tab layout policy for providing a subset of available tabs when all the tabs will not fit within a single run.
protected int tabPlacement Where the tabs are placed.
static int WRAP_TAB_LAYOUT The tab layout policy for wrapping tabs in multiple runs when all tabs will not fit within a single run.
Fields inherited from class javax.swing.JComponent
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW
Fields inherited from class java.awt.Component
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT
Fields inherited from interface javax.swing.SwingConstants
BOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST
Fields inherited from interface java.awt.image.ImageObserver
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH
Constructor Summary
JTabbedPane() Creates an empty TabbedPane with a default tab placement of JTabbedPane.TOP.
JTabbedPane(int tabPlacement) Creates an empty TabbedPane with the specified tab placement of either: JTabbedPane.TOP, JTabbedPane.BOTTOM,JTabbedPane.LEFT, or JTabbedPane.RIGHT.
[JTabbedPane](../../javax/swing/JTabbedPane.html#JTabbedPane%28int, int%29)(int tabPlacement, int tabLayoutPolicy) Creates an empty TabbedPane with the specified tab placement and tab layout policy.
Method Summary
Component add(Component component) Adds a component with a tab title defaulting to the name of the component which is the result of callingcomponent.getName.
Component [add](../../javax/swing/JTabbedPane.html#add%28java.awt.Component, int%29)(Component component, int index) Adds a component at the specified tab index with a tab title defaulting to the name of the component.
void [add](../../javax/swing/JTabbedPane.html#add%28java.awt.Component, java.lang.Object%29)(Component component,Object constraints) Adds a component to the tabbed pane.
void [add](../../javax/swing/JTabbedPane.html#add%28java.awt.Component, java.lang.Object, int%29)(Component component,Object constraints, int index) Adds a component at the specified tab index.
Component [add](../../javax/swing/JTabbedPane.html#add%28java.lang.String, java.awt.Component%29)(String title,Component component) Adds a component with the specified tab title.
void addChangeListener(ChangeListener l) Adds a ChangeListener to this tabbedpane.
void [addTab](../../javax/swing/JTabbedPane.html#addTab%28java.lang.String, java.awt.Component%29)(String title,Component component) Adds a component represented by a title and no icon.
void [addTab](../../javax/swing/JTabbedPane.html#addTab%28java.lang.String, javax.swing.Icon, java.awt.Component%29)(String title,Icon icon,Component component) Adds a component represented by a title and/or icon, either of which can be null.
void [addTab](../../javax/swing/JTabbedPane.html#addTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String%29)(String title,Icon icon,Component component,String tip) Adds a component and tip represented by a title and/or icon, either of which can be null.
protected ChangeListener createChangeListener() Subclasses that want to handle ChangeEvents differently can override this to return a subclass of ModelListener or another ChangeListener implementation.
protected void fireStateChanged() Sends a ChangeEvent, whose source is this tabbedpane, to each listener.
AccessibleContext getAccessibleContext() Gets the AccessibleContext associated with this JTabbedPane.
Color getBackgroundAt(int index) Returns the tab background color at index.
Rectangle getBoundsAt(int index) Returns the tab bounds at index.
ChangeListener[] getChangeListeners() Returns an array of all the ChangeListeners added to this JTabbedPane with addChangeListener.
Component getComponentAt(int index) Returns the component at index.
Icon getDisabledIconAt(int index) Returns the tab disabled icon at index.
int getDisplayedMnemonicIndexAt(int tabIndex) Returns the character, as an index, that the look and feel should provide decoration for as representing the mnemonic character.
Color getForegroundAt(int index) Returns the tab foreground color at index.
Icon getIconAt(int index) Returns the tab icon at index.
int getMnemonicAt(int tabIndex) Returns the keyboard mnemonic for accessing the specified tab.
SingleSelectionModel getModel() Returns the model associated with this tabbedpane.
Component getSelectedComponent() Returns the currently selected component for this tabbedpane.
int getSelectedIndex() Returns the currently selected index for this tabbedpane.
int getTabCount() Returns the number of tabs in this tabbedpane.
int getTabLayoutPolicy() Returns the policy used by the tabbedpane to layout the tabs when all the tabs will not fit within a single run.
int getTabPlacement() Returns the placement of the tabs for this tabbedpane.
int getTabRunCount() Returns the number of tab runs currently used to display the tabs.
String getTitleAt(int index) Returns the tab title at index.
String getToolTipText(MouseEvent event) Returns the tooltip text for the component determined by the mouse event location.
String getToolTipTextAt(int index) Returns the tab tooltip text at index.
TabbedPaneUI getUI() Returns the UI object which implements the L&F for this component.
String getUIClassID() Returns the name of the UI class that implements the L&F for this component.
int [indexAtLocation](../../javax/swing/JTabbedPane.html#indexAtLocation%28int, int%29)(int x, int y) Returns the tab index corresponding to the tab whose bounds intersect the specified location.
int indexOfComponent(Component component) Returns the index of the tab for the specified component.
int indexOfTab(Icon icon) Returns the first tab index with a given icon, or -1 if no tab has this icon.
int indexOfTab(String title) Returns the first tab index with a given title, or -1 if no tab has this title.
void [insertTab](../../javax/swing/JTabbedPane.html#insertTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int%29)(String title,Icon icon,Component component,String tip, int index) Inserts a component, at index, represented by a title and/or icon, either of which may be null.
boolean isEnabledAt(int index) Returns whether or not the tab at index is currently enabled.
protected String paramString() Returns a string representation of this JTabbedPane.
void remove(Component component) Removes the specified Component from theJTabbedPane.
void remove(int index) Removes the tab and component which corresponds to the specified index.
void removeAll() Removes all the tabs and their corresponding components from the tabbedpane.
void removeChangeListener(ChangeListener l) Removes a ChangeListener from this tabbedpane.
void removeTabAt(int index) Removes the tab at index.
void [setBackgroundAt](../../javax/swing/JTabbedPane.html#setBackgroundAt%28int, java.awt.Color%29)(int index,Color background) Sets the background color at index tobackground which can be null, in which case the tab's background color will default to the background color of the tabbedpane.
void [setComponentAt](../../javax/swing/JTabbedPane.html#setComponentAt%28int, java.awt.Component%29)(int index,Component component) Sets the component at index to component.
void [setDisabledIconAt](../../javax/swing/JTabbedPane.html#setDisabledIconAt%28int, javax.swing.Icon%29)(int index,Icon disabledIcon) Sets the disabled icon at index to icon which can be null.
void [setDisplayedMnemonicIndexAt](../../javax/swing/JTabbedPane.html#setDisplayedMnemonicIndexAt%28int, int%29)(int tabIndex, int mnemonicIndex) Provides a hint to the look and feel as to which character in the text should be decorated to represent the mnemonic.
void [setEnabledAt](../../javax/swing/JTabbedPane.html#setEnabledAt%28int, boolean%29)(int index, boolean enabled) Sets whether or not the tab at index is enabled.
void [setForegroundAt](../../javax/swing/JTabbedPane.html#setForegroundAt%28int, java.awt.Color%29)(int index,Color foreground) Sets the foreground color at index toforeground which can benull, in which case the tab's foreground color will default to the foreground color of this tabbedpane.
void [setIconAt](../../javax/swing/JTabbedPane.html#setIconAt%28int, javax.swing.Icon%29)(int index,Icon icon) Sets the icon at index to icon which can benull.
void [setMnemonicAt](../../javax/swing/JTabbedPane.html#setMnemonicAt%28int, int%29)(int tabIndex, int mnemonic) Sets the keyboard mnemonic for accessing the specified tab.
void setModel(SingleSelectionModel model) Sets the model to be used with this tabbedpane.
void setSelectedComponent(Component c) Sets the selected component for this tabbedpane.
void setSelectedIndex(int index) Sets the selected index for this tabbedpane.
void setTabLayoutPolicy(int tabLayoutPolicy) Sets the policy which the tabbedpane will use in laying out the tabs when all the tabs will not fit within a single run.
void setTabPlacement(int tabPlacement) Sets the tab placement for this tabbedpane.
void [setTitleAt](../../javax/swing/JTabbedPane.html#setTitleAt%28int, java.lang.String%29)(int index,String title) Sets the title at index to title which can be null.
void [setToolTipTextAt](../../javax/swing/JTabbedPane.html#setToolTipTextAt%28int, java.lang.String%29)(int index,String toolTipText) Sets the tooltip text at index to toolTipText which can be null.
void setUI(TabbedPaneUI ui) Sets the UI object which implements the L&F for this component.
void updateUI() Resets the UI property to a value from the current look and feel.
Methods inherited from class javax.swing.JComponent
addAncestorListener, addNotify, addVetoableChangeListener, computeVisibleRect, [contains](../../javax/swing/JComponent.html#contains%28int, int%29), createToolTip, disable, enable, [firePropertyChange](../../javax/swing/JComponent.html#firePropertyChange%28java.lang.String, boolean, boolean%29), [firePropertyChange](../../javax/swing/JComponent.html#firePropertyChange%28java.lang.String, char, char%29), [firePropertyChange](../../javax/swing/JComponent.html#firePropertyChange%28java.lang.String, int, int%29), [fireVetoableChange](../../javax/swing/JComponent.html#fireVetoableChange%28java.lang.String, java.lang.Object, java.lang.Object%29), getActionForKeyStroke, getActionMap, getAlignmentX, getAlignmentY, getAncestorListeners, getAutoscrolls, getBorder, getBounds, getClientProperty, getComponentGraphics, getComponentPopupMenu, getConditionForKeyStroke, getDebugGraphicsOptions, getDefaultLocale, getFontMetrics, getGraphics, getHeight, getInheritsPopupMenu, getInputMap, getInputMap, getInputVerifier, getInsets, getInsets, getListeners, getLocation, getMaximumSize, getMinimumSize, getNextFocusableComponent, getPopupLocation, getPreferredSize, getRegisteredKeyStrokes, getRootPane, getSize, getToolTipLocation, getToolTipText, getTopLevelAncestor, getTransferHandler, getVerifyInputWhenFocusTarget, getVetoableChangeListeners, getVisibleRect, getWidth, getX, getY, grabFocus, isDoubleBuffered, isLightweightComponent, isManagingFocus, isOpaque, isOptimizedDrawingEnabled, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paint, paintBorder, paintChildren, paintComponent, [paintImmediately](../../javax/swing/JComponent.html#paintImmediately%28int, int, int, int%29), paintImmediately, print, printAll, printBorder, printChildren, printComponent, processComponentKeyEvent, [processKeyBinding](../../javax/swing/JComponent.html#processKeyBinding%28javax.swing.KeyStroke, java.awt.event.KeyEvent, int, boolean%29), processKeyEvent, processMouseEvent, processMouseMotionEvent, [putClientProperty](../../javax/swing/JComponent.html#putClientProperty%28java.lang.Object, java.lang.Object%29), [registerKeyboardAction](../../javax/swing/JComponent.html#registerKeyboardAction%28java.awt.event.ActionListener, javax.swing.KeyStroke, int%29), [registerKeyboardAction](../../javax/swing/JComponent.html#registerKeyboardAction%28java.awt.event.ActionListener, java.lang.String, javax.swing.KeyStroke, int%29), removeAncestorListener, removeNotify, removeVetoableChangeListener, [repaint](../../javax/swing/JComponent.html#repaint%28long, int, int, int, int%29), repaint, requestDefaultFocus, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resetKeyboardActions, [reshape](../../javax/swing/JComponent.html#reshape%28int, int, int, int%29), revalidate, scrollRectToVisible, setActionMap, setAlignmentX, setAlignmentY, setAutoscrolls, setBackground, setBorder, setComponentPopupMenu, setDebugGraphicsOptions, setDefaultLocale, setDoubleBuffered, setEnabled, [setFocusTraversalKeys](../../javax/swing/JComponent.html#setFocusTraversalKeys%28int, java.util.Set%29), setFont, setForeground, setInheritsPopupMenu, [setInputMap](../../javax/swing/JComponent.html#setInputMap%28int, javax.swing.InputMap%29), setInputVerifier, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, setTransferHandler, setUI, setVerifyInputWhenFocusTarget, setVisible, unregisterKeyboardAction, update
Methods inherited from class java.awt.Container
addContainerListener, [addImpl](../../java/awt/Container.html#addImpl%28java.awt.Component, java.lang.Object, int%29), addPropertyChangeListener, [addPropertyChangeListener](../../java/awt/Container.html#addPropertyChangeListener%28java.lang.String, java.beans.PropertyChangeListener%29), applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, [findComponentAt](../../java/awt/Container.html#findComponentAt%28int, int%29), findComponentAt, getComponent, [getComponentAt](../../java/awt/Container.html#getComponentAt%28int, int%29), getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getLayout, getMousePosition, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, [list](../../java/awt/Container.html#list%28java.io.PrintStream, int%29), [list](../../java/awt/Container.html#list%28java.io.PrintWriter, int%29), [locate](../../java/awt/Container.html#locate%28int, int%29), minimumSize, paintComponents, preferredSize, printComponents, processContainerEvent, processEvent, removeContainerListener, [setComponentZOrder](../../java/awt/Container.html#setComponentZOrder%28java.awt.Component, int%29), setFocusCycleRoot, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setLayout, transferFocusBackward, transferFocusDownCycle, validate, validateTree
Methods inherited from class java.awt.Component
[action](../../java/awt/Component.html#action%28java.awt.Event, java.lang.Object%29), add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, [checkImage](../../java/awt/Component.html#checkImage%28java.awt.Image, java.awt.image.ImageObserver%29), [checkImage](../../java/awt/Component.html#checkImage%28java.awt.Image, int, int, java.awt.image.ImageObserver%29), [coalesceEvents](../../java/awt/Component.html#coalesceEvents%28java.awt.AWTEvent, java.awt.AWTEvent%29), contains, createImage, [createImage](../../java/awt/Component.html#createImage%28int, int%29), [createVolatileImage](../../java/awt/Component.html#createVolatileImage%28int, int%29), [createVolatileImage](../../java/awt/Component.html#createVolatileImage%28int, int, java.awt.ImageCapabilities%29), disableEvents, dispatchEvent, enable, enableEvents, enableInputMethods, [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, byte, byte%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, double, double%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, float, float%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, long, long%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, java.lang.Object, java.lang.Object%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, short, short%29), getBackground, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getForeground, getGraphicsConfiguration, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getToolkit, getTreeLock, [gotFocus](../../java/awt/Component.html#gotFocus%28java.awt.Event, java.lang.Object%29), handleEvent, hasFocus, hide, [imageUpdate](../../java/awt/Component.html#imageUpdate%28java.awt.Image, int, int, int, int, int%29), [inside](../../java/awt/Component.html#inside%28int, int%29), isBackgroundSet, isCursorSet, isDisplayable, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isShowing, isValid, isVisible, [keyDown](../../java/awt/Component.html#keyDown%28java.awt.Event, int%29), [keyUp](../../java/awt/Component.html#keyUp%28java.awt.Event, int%29), list, list, list, location, [lostFocus](../../java/awt/Component.html#lostFocus%28java.awt.Event, java.lang.Object%29), [mouseDown](../../java/awt/Component.html#mouseDown%28java.awt.Event, int, int%29), [mouseDrag](../../java/awt/Component.html#mouseDrag%28java.awt.Event, int, int%29), [mouseEnter](../../java/awt/Component.html#mouseEnter%28java.awt.Event, int, int%29), [mouseExit](../../java/awt/Component.html#mouseExit%28java.awt.Event, int, int%29), [mouseMove](../../java/awt/Component.html#mouseMove%28java.awt.Event, int, int%29), [mouseUp](../../java/awt/Component.html#mouseUp%28java.awt.Event, int, int%29), [move](../../java/awt/Component.html#move%28int, int%29), nextFocus, paintAll, postEvent, [prepareImage](../../java/awt/Component.html#prepareImage%28java.awt.Image, java.awt.image.ImageObserver%29), [prepareImage](../../java/awt/Component.html#prepareImage%28java.awt.Image, int, int, java.awt.image.ImageObserver%29), processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, [removePropertyChangeListener](../../java/awt/Component.html#removePropertyChangeListener%28java.lang.String, java.beans.PropertyChangeListener%29), repaint, [repaint](../../java/awt/Component.html#repaint%28int, int, int, int%29), repaint, resize, [resize](../../java/awt/Component.html#resize%28int, int%29), [setBounds](../../java/awt/Component.html#setBounds%28int, int, int, int%29), setBounds, setComponentOrientation, setCursor, setDropTarget, setFocusable, setFocusTraversalKeysEnabled, setIgnoreRepaint, setLocale, [setLocation](../../java/awt/Component.html#setLocation%28int, int%29), setLocation, setName, setSize, [setSize](../../java/awt/Component.html#setSize%28int, int%29), show, show, size, toString, transferFocus, transferFocusUpCycle
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, [wait](../../java/lang/Object.html#wait%28long, int%29)
Field Detail

WRAP_TAB_LAYOUT

public static final int WRAP_TAB_LAYOUT

The tab layout policy for wrapping tabs in multiple runs when all tabs will not fit within a single run.

See Also:

Constant Field Values


SCROLL_TAB_LAYOUT

public static final int SCROLL_TAB_LAYOUT

Tab layout policy for providing a subset of available tabs when all the tabs will not fit within a single run. If all the tabs do not fit within a single run the look and feel will provide a way to navigate to hidden tabs.

See Also:

Constant Field Values


tabPlacement

protected int tabPlacement

Where the tabs are placed.

See Also:

setTabPlacement(int)


model

protected SingleSelectionModel model

The default selection model


changeListener

protected ChangeListener changeListener

The changeListener is the listener we add to the model.


changeEvent

protected transient ChangeEvent changeEvent

Only one ChangeEvent is needed per TabPane instance since the event's only (read-only) state is the source property. The source of events generated here is always "this".

Constructor Detail

JTabbedPane

public JTabbedPane()

Creates an empty TabbedPane with a default tab placement of JTabbedPane.TOP.

See Also:

[addTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String)](../../javax/swing/JTabbedPane.html#addTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String%29)


JTabbedPane

public JTabbedPane(int tabPlacement)

Creates an empty TabbedPane with the specified tab placement of either: JTabbedPane.TOP, JTabbedPane.BOTTOM,JTabbedPane.LEFT, or JTabbedPane.RIGHT.

Parameters:

tabPlacement - the placement for the tabs relative to the content

See Also:

[addTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String)](../../javax/swing/JTabbedPane.html#addTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String%29)


JTabbedPane

public JTabbedPane(int tabPlacement, int tabLayoutPolicy)

Creates an empty TabbedPane with the specified tab placement and tab layout policy. Tab placement may be either: JTabbedPane.TOP, JTabbedPane.BOTTOM,JTabbedPane.LEFT, or JTabbedPane.RIGHT. Tab layout policy may be either: JTabbedPane.WRAP_TAB_LAYOUT or JTabbedPane.SCROLL_TAB_LAYOUT.

Parameters:

tabPlacement - the placement for the tabs relative to the content

tabLayoutPolicy - the policy for laying out tabs when all tabs will not fit on one run

Throws:

[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang") - if tab placement or tab layout policy are not one of the above supported values

Since:

1.4

See Also:

[addTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String)](../../javax/swing/JTabbedPane.html#addTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String%29)

Method Detail

getUI

public TabbedPaneUI getUI()

Returns the UI object which implements the L&F for this component.

Returns:

a TabbedPaneUI object

See Also:

setUI(javax.swing.plaf.TabbedPaneUI)


setUI

public void setUI(TabbedPaneUI ui)

Sets the UI object which implements the L&F for this component.

Parameters:

ui - the new UI object

See Also:

UIDefaults.getUI(javax.swing.JComponent)


updateUI

public void updateUI()

Resets the UI property to a value from the current look and feel.

Overrides:

[updateUI](../../javax/swing/JComponent.html#updateUI%28%29) in class [JComponent](../../javax/swing/JComponent.html "class in javax.swing")

See Also:

JComponent.updateUI()


getUIClassID

public String getUIClassID()

Returns the name of the UI class that implements the L&F for this component.

Overrides:

[getUIClassID](../../javax/swing/JComponent.html#getUIClassID%28%29) in class [JComponent](../../javax/swing/JComponent.html "class in javax.swing")

Returns:

the string "TabbedPaneUI"

See Also:

JComponent.getUIClassID(), UIDefaults.getUI(javax.swing.JComponent)


createChangeListener

protected ChangeListener createChangeListener()

Subclasses that want to handle ChangeEvents differently can override this to return a subclass of ModelListener or another ChangeListener implementation.

See Also:

fireStateChanged()


addChangeListener

public void addChangeListener(ChangeListener l)

Adds a ChangeListener to this tabbedpane.

Parameters:

l - the ChangeListener to add

See Also:

fireStateChanged(), removeChangeListener(javax.swing.event.ChangeListener)


removeChangeListener

public void removeChangeListener(ChangeListener l)

Removes a ChangeListener from this tabbedpane.

Parameters:

l - the ChangeListener to remove

See Also:

fireStateChanged(), addChangeListener(javax.swing.event.ChangeListener)


getChangeListeners

public ChangeListener[] getChangeListeners()

Returns an array of all the ChangeListeners added to this JTabbedPane with addChangeListener.

Returns:

all of the ChangeListeners added or an empty array if no listeners have been added

Since:

1.4


fireStateChanged

protected void fireStateChanged()

Sends a ChangeEvent, whose source is this tabbedpane, to each listener. This method method is called each time a ChangeEvent is received from the model.

See Also:

addChangeListener(javax.swing.event.ChangeListener), EventListenerList


getModel

public SingleSelectionModel getModel()

Returns the model associated with this tabbedpane.

See Also:

setModel(javax.swing.SingleSelectionModel)


setModel

public void setModel(SingleSelectionModel model)

Sets the model to be used with this tabbedpane.

Parameters:

model - the model to be used

See Also:

getModel()


getTabPlacement

public int getTabPlacement()

Returns the placement of the tabs for this tabbedpane.

See Also:

setTabPlacement(int)


setTabPlacement

public void setTabPlacement(int tabPlacement)

Sets the tab placement for this tabbedpane. Possible values are:

Parameters:

tabPlacement - the placement for the tabs relative to the content

Throws:

[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang") - if tab placement value isn't one of the above valid values


getTabLayoutPolicy

public int getTabLayoutPolicy()

Returns the policy used by the tabbedpane to layout the tabs when all the tabs will not fit within a single run.

Since:

1.4

See Also:

setTabLayoutPolicy(int)


setTabLayoutPolicy

public void setTabLayoutPolicy(int tabLayoutPolicy)

Sets the policy which the tabbedpane will use in laying out the tabs when all the tabs will not fit within a single run. Possible values are:

Some look and feels might only support a subset of the possible layout policies, in which case the value of this property may be ignored.

Parameters:

tabLayoutPolicy - the policy used to layout the tabs

Throws:

[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang") - if layoutPolicy value isn't one of the above valid values

Since:

1.4

See Also:

getTabLayoutPolicy()


getSelectedIndex

public int getSelectedIndex()

Returns the currently selected index for this tabbedpane. Returns -1 if there is no currently selected tab.

Returns:

the index of the selected tab

See Also:

setSelectedIndex(int)


setSelectedIndex

public void setSelectedIndex(int index)

Sets the selected index for this tabbedpane. The index must be a valid tab index or -1, which indicates that no tab should be selected (can also be used when there are no tabs in the tabbedpane). If a -1 value is specified when the tabbedpane contains one or more tabs, then the results will be implementation defined.

Parameters:

index - the index to be selected

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < -1 || index >= tab count)

See Also:

getSelectedIndex(), SingleSelectionModel.setSelectedIndex(int)


getSelectedComponent

public Component getSelectedComponent()

Returns the currently selected component for this tabbedpane. Returns null if there is no currently selected tab.

Returns:

the component corresponding to the selected tab

See Also:

setSelectedComponent(java.awt.Component)


setSelectedComponent

public void setSelectedComponent(Component c)

Sets the selected component for this tabbedpane. This will automatically set the selectedIndex to the index corresponding to the specified component.

Throws:

[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang") - if component not found in tabbed pane

See Also:

getSelectedComponent()


insertTab

public void insertTab(String title, Icon icon, Component component, String tip, int index)

Inserts a component, at index, represented by a title and/or icon, either of which may be null. Uses java.util.Vector internally, see insertElementAt for details of insertion conventions.

Parameters:

title - the title to be displayed in this tab

icon - the icon to be displayed in this tab

component - The component to be displayed when this tab is clicked.

tip - the tooltip to be displayed for this tab

index - the position to insert this new tab

See Also:

[addTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String)](../../javax/swing/JTabbedPane.html#addTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String%29), removeTabAt(int)


addTab

public void addTab(String title, Icon icon, Component component, String tip)

Adds a component and tip represented by a title and/or icon, either of which can be null. Cover method for insertTab.

Parameters:

title - the title to be displayed in this tab

icon - the icon to be displayed in this tab

component - the component to be displayed when this tab is clicked

tip - the tooltip to be displayed for this tab

See Also:

[insertTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int)](../../javax/swing/JTabbedPane.html#insertTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int%29), removeTabAt(int)


addTab

public void addTab(String title, Icon icon, Component component)

Adds a component represented by a title and/or icon, either of which can be null. Cover method for insertTab.

Parameters:

title - the title to be displayed in this tab

icon - the icon to be displayed in this tab

component - the component to be displayed when this tab is clicked

See Also:

[insertTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int)](../../javax/swing/JTabbedPane.html#insertTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int%29), removeTabAt(int)


addTab

public void addTab(String title, Component component)

Adds a component represented by a title and no icon. Cover method for insertTab.

Parameters:

title - the title to be displayed in this tab

component - the component to be displayed when this tab is clicked

See Also:

[insertTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int)](../../javax/swing/JTabbedPane.html#insertTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int%29), removeTabAt(int)


add

public Component add(Component component)

Adds a component with a tab title defaulting to the name of the component which is the result of callingcomponent.getName. Cover method for insertTab.

Overrides:

[add](../../java/awt/Container.html#add%28java.awt.Component%29) in class [Container](../../java/awt/Container.html "class in java.awt")

Parameters:

component - the component to be displayed when this tab is clicked

Returns:

the component

See Also:

[insertTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int)](../../javax/swing/JTabbedPane.html#insertTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int%29), removeTabAt(int)


add

public Component add(String title, Component component)

Adds a component with the specified tab title. Cover method for insertTab.

Overrides:

[add](../../java/awt/Container.html#add%28java.lang.String, java.awt.Component%29) in class [Container](../../java/awt/Container.html "class in java.awt")

Parameters:

title - the title to be displayed in this tab

component - the component to be displayed when this tab is clicked

Returns:

the component

See Also:

[insertTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int)](../../javax/swing/JTabbedPane.html#insertTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int%29), removeTabAt(int)


add

public Component add(Component component, int index)

Adds a component at the specified tab index with a tab title defaulting to the name of the component. Cover method for insertTab.

Overrides:

[add](../../java/awt/Container.html#add%28java.awt.Component, int%29) in class [Container](../../java/awt/Container.html "class in java.awt")

Parameters:

component - the component to be displayed when this tab is clicked

index - the position to insert this new tab

Returns:

the component

See Also:

[insertTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int)](../../javax/swing/JTabbedPane.html#insertTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int%29), removeTabAt(int)


add

public void add(Component component, Object constraints)

Adds a component to the tabbed pane. If constraints is a String or anIcon, it will be used for the tab title, otherwise the component's name will be used as the tab title. Cover method for insertTab.

Overrides:

[add](../../java/awt/Container.html#add%28java.awt.Component, java.lang.Object%29) in class [Container](../../java/awt/Container.html "class in java.awt")

Parameters:

component - the component to be displayed when this tab is clicked

constraints - the object to be displayed in the tab

See Also:

[insertTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int)](../../javax/swing/JTabbedPane.html#insertTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int%29), removeTabAt(int)


add

public void add(Component component, Object constraints, int index)

Adds a component at the specified tab index. If constraints is a String or anIcon, it will be used for the tab title, otherwise the component's name will be used as the tab title. Cover method for insertTab.

Overrides:

[add](../../java/awt/Container.html#add%28java.awt.Component, java.lang.Object, int%29) in class [Container](../../java/awt/Container.html "class in java.awt")

Parameters:

component - the component to be displayed when this tab is clicked

constraints - the object to be displayed in the tab

index - the position to insert this new tab

See Also:

[insertTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int)](../../javax/swing/JTabbedPane.html#insertTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int%29), removeTabAt(int)


removeTabAt

public void removeTabAt(int index)

Removes the tab at index. After the component associated with index is removed, its visibility is reset to true to ensure it will be visible if added to other containers.

Parameters:

index - the index of the tab to be removed

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

[addTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String)](../../javax/swing/JTabbedPane.html#addTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String%29), [insertTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int)](../../javax/swing/JTabbedPane.html#insertTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String, int%29)


remove

public void remove(Component component)

Removes the specified Component from theJTabbedPane. The method does nothing if the component is null.

Overrides:

[remove](../../java/awt/Container.html#remove%28java.awt.Component%29) in class [Container](../../java/awt/Container.html "class in java.awt")

Parameters:

component - the component to remove from the tabbedpane

See Also:

[addTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String)](../../javax/swing/JTabbedPane.html#addTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String%29), removeTabAt(int)


remove

public void remove(int index)

Removes the tab and component which corresponds to the specified index.

Overrides:

[remove](../../java/awt/Container.html#remove%28int%29) in class [Container](../../java/awt/Container.html "class in java.awt")

Parameters:

index - the index of the component to remove from the tabbedpane

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

[addTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String)](../../javax/swing/JTabbedPane.html#addTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String%29), removeTabAt(int)


removeAll

public void removeAll()

Removes all the tabs and their corresponding components from the tabbedpane.

Overrides:

[removeAll](../../java/awt/Container.html#removeAll%28%29) in class [Container](../../java/awt/Container.html "class in java.awt")

See Also:

[addTab(java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String)](../../javax/swing/JTabbedPane.html#addTab%28java.lang.String, javax.swing.Icon, java.awt.Component, java.lang.String%29), removeTabAt(int)


getTabCount

public int getTabCount()

Returns the number of tabs in this tabbedpane.

Returns:

an integer specifying the number of tabbed pages


getTabRunCount

public int getTabRunCount()

Returns the number of tab runs currently used to display the tabs.

Returns:

an integer giving the number of rows if the tabPlacement is TOP or BOTTOM and the number of columns if tabPlacement is LEFT or RIGHT, or 0 if there is no UI set on this tabbedpane


getTitleAt

public String getTitleAt(int index)

Returns the tab title at index.

Parameters:

index - the index of the item being queried

Returns:

the title at index

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

[setTitleAt(int, java.lang.String)](../../javax/swing/JTabbedPane.html#setTitleAt%28int, java.lang.String%29)


getIconAt

public Icon getIconAt(int index)

Returns the tab icon at index.

Parameters:

index - the index of the item being queried

Returns:

the icon at index

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

[setIconAt(int, javax.swing.Icon)](../../javax/swing/JTabbedPane.html#setIconAt%28int, javax.swing.Icon%29)


getDisabledIconAt

public Icon getDisabledIconAt(int index)

Returns the tab disabled icon at index. If the tab disabled icon doesn't exist at index this will forward the call to the look and feel to construct an appropriate disabled Icon from the corresponding enabled Icon. Some look and feels might not render the disabled Icon, in which case it won't be created.

Parameters:

index - the index of the item being queried

Returns:

the icon at index

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

[setDisabledIconAt(int, javax.swing.Icon)](../../javax/swing/JTabbedPane.html#setDisabledIconAt%28int, javax.swing.Icon%29)


getToolTipTextAt

public String getToolTipTextAt(int index)

Returns the tab tooltip text at index.

Parameters:

index - the index of the item being queried

Returns:

a string containing the tool tip text at index

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

[setToolTipTextAt(int, java.lang.String)](../../javax/swing/JTabbedPane.html#setToolTipTextAt%28int, java.lang.String%29)


getBackgroundAt

public Color getBackgroundAt(int index)

Returns the tab background color at index.

Parameters:

index - the index of the item being queried

Returns:

the Color of the tab background atindex

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

[setBackgroundAt(int, java.awt.Color)](../../javax/swing/JTabbedPane.html#setBackgroundAt%28int, java.awt.Color%29)


getForegroundAt

public Color getForegroundAt(int index)

Returns the tab foreground color at index.

Parameters:

index - the index of the item being queried

Returns:

the Color of the tab foreground atindex

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

[setForegroundAt(int, java.awt.Color)](../../javax/swing/JTabbedPane.html#setForegroundAt%28int, java.awt.Color%29)


isEnabledAt

public boolean isEnabledAt(int index)

Returns whether or not the tab at index is currently enabled.

Parameters:

index - the index of the item being queried

Returns:

true if the tab at index is enabled; false otherwise

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

[setEnabledAt(int, boolean)](../../javax/swing/JTabbedPane.html#setEnabledAt%28int, boolean%29)


getComponentAt

public Component getComponentAt(int index)

Returns the component at index.

Parameters:

index - the index of the item being queried

Returns:

the Component at index

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

[setComponentAt(int, java.awt.Component)](../../javax/swing/JTabbedPane.html#setComponentAt%28int, java.awt.Component%29)


getMnemonicAt

public int getMnemonicAt(int tabIndex)

Returns the keyboard mnemonic for accessing the specified tab. The mnemonic is the key which when combined with the look and feel's mouseless modifier (usually Alt) will activate the specified tab.

Parameters:

tabIndex - the index of the tab that the mnemonic refers to

Returns:

the key code which represents the mnemonic; -1 if a mnemonic is not specified for the tab

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (tabIndex < 0 ||tabIndex >= tab count)

Since:

1.4

See Also:

[setDisplayedMnemonicIndexAt(int,int)](../../javax/swing/JTabbedPane.html#setDisplayedMnemonicIndexAt%28int, int%29), [setMnemonicAt(int,int)](../../javax/swing/JTabbedPane.html#setMnemonicAt%28int, int%29)


getDisplayedMnemonicIndexAt

public int getDisplayedMnemonicIndexAt(int tabIndex)

Returns the character, as an index, that the look and feel should provide decoration for as representing the mnemonic character.

Parameters:

tabIndex - the index of the tab that the mnemonic refers to

Returns:

index representing mnemonic character if one exists; otherwise returns -1

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (tabIndex < 0 ||tabIndex >= tab count)

Since:

1.4

See Also:

[setDisplayedMnemonicIndexAt(int,int)](../../javax/swing/JTabbedPane.html#setDisplayedMnemonicIndexAt%28int, int%29), [setMnemonicAt(int,int)](../../javax/swing/JTabbedPane.html#setMnemonicAt%28int, int%29)


getBoundsAt

public Rectangle getBoundsAt(int index)

Returns the tab bounds at index. If the tab at this index is not currently visible in the UI, then returns null. If there is no UI set on this tabbedpane, then returns null.

Parameters:

index - the index to be queried

Returns:

a Rectangle containing the tab bounds atindex, or null if tab atindex is not currently visible in the UI, or if there is no UI set on this tabbedpane

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)


setTitleAt

public void setTitleAt(int index, String title)

Sets the title at index to title which can be null. An internal exception is raised if there is no tab at that index.

Parameters:

index - the tab index where the title should be set

title - the title to be displayed in the tab

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

getTitleAt(int)


setIconAt

public void setIconAt(int index, Icon icon)

Sets the icon at index to icon which can benull. This does not set disabled icon at icon. If the new Icon is different than the current Icon and disabled icon is not explicitly set, the LookAndFeel will be asked to generate a disabled Icon. To explicitly set disabled icon, use setDisableIconAt(). An internal exception is raised if there is no tab at that index.

Parameters:

index - the tab index where the icon should be set

icon - the icon to be displayed in the tab

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

[setDisabledIconAt(int, javax.swing.Icon)](../../javax/swing/JTabbedPane.html#setDisabledIconAt%28int, javax.swing.Icon%29), getIconAt(int), getDisabledIconAt(int)


setDisabledIconAt

public void setDisabledIconAt(int index, Icon disabledIcon)

Sets the disabled icon at index to icon which can be null. An internal exception is raised if there is no tab at that index.

Parameters:

index - the tab index where the disabled icon should be set

disabledIcon - the icon to be displayed in the tab when disabled

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

getDisabledIconAt(int)


setToolTipTextAt

public void setToolTipTextAt(int index, String toolTipText)

Sets the tooltip text at index to toolTipText which can be null. An internal exception is raised if there is no tab at that index.

Parameters:

index - the tab index where the tooltip text should be set

toolTipText - the tooltip text to be displayed for the tab

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

getToolTipTextAt(int)


setBackgroundAt

public void setBackgroundAt(int index, Color background)

Sets the background color at index tobackground which can be null, in which case the tab's background color will default to the background color of the tabbedpane. An internal exception is raised if there is no tab at that index.

Parameters:

index - the tab index where the background should be set

background - the color to be displayed in the tab's background

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

getBackgroundAt(int)


setForegroundAt

public void setForegroundAt(int index, Color foreground)

Sets the foreground color at index toforeground which can benull, in which case the tab's foreground color will default to the foreground color of this tabbedpane. An internal exception is raised if there is no tab at that index.

Parameters:

index - the tab index where the foreground should be set

foreground - the color to be displayed as the tab's foreground

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

getForegroundAt(int)


setEnabledAt

public void setEnabledAt(int index, boolean enabled)

Sets whether or not the tab at index is enabled. An internal exception is raised if there is no tab at that index.

Parameters:

index - the tab index which should be enabled/disabled

enabled - whether or not the tab should be enabled

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

isEnabledAt(int)


setComponentAt

public void setComponentAt(int index, Component component)

Sets the component at index to component. An internal exception is raised if there is no tab at that index.

Parameters:

index - the tab index where this component is being placed

component - the component for the tab

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if index is out of range (index < 0 || index >= tab count)

See Also:

getComponentAt(int)


setDisplayedMnemonicIndexAt

public void setDisplayedMnemonicIndexAt(int tabIndex, int mnemonicIndex)

Provides a hint to the look and feel as to which character in the text should be decorated to represent the mnemonic. Not all look and feels may support this. A value of -1 indicates either there is no mnemonic for this tab, or you do not wish the mnemonic to be displayed for this tab.

The value of this is updated as the properties relating to the mnemonic change (such as the mnemonic itself, the text...). You should only ever have to call this if you do not wish the default character to be underlined. For example, if the text at tab index 3 was 'Apple Price', with a mnemonic of 'p', and you wanted the 'P' to be decorated, as 'Apple Price', you would have to invokesetDisplayedMnemonicIndex(3, 6) after invokingsetMnemonicAt(3, KeyEvent.VK_P).

Note that it is the programmer's responsibility to ensure that each tab has a unique mnemonic or unpredictable results may occur.

Parameters:

tabIndex - the index of the tab that the mnemonic refers to

mnemonicIndex - index into the String to underline

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if tabIndex is out of range (tabIndex < 0 || tabIndex >= tab count)

[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang") - will be thrown if mnemonicIndex is >= length of the tab title , or < -1

Since:

1.4

See Also:

[setMnemonicAt(int,int)](../../javax/swing/JTabbedPane.html#setMnemonicAt%28int, int%29), getDisplayedMnemonicIndexAt(int)


setMnemonicAt

public void setMnemonicAt(int tabIndex, int mnemonic)

Sets the keyboard mnemonic for accessing the specified tab. The mnemonic is the key which when combined with the look and feel's mouseless modifier (usually Alt) will activate the specified tab.

A mnemonic must correspond to a single key on the keyboard and should be specified using one of the VK_XXX keycodes defined in java.awt.event.KeyEvent. Mnemonics are case-insensitive, therefore a key event with the corresponding keycode would cause the button to be activated whether or not the Shift modifier was pressed.

This will update the displayed mnemonic property for the specified tab.

Parameters:

tabIndex - the index of the tab that the mnemonic refers to

mnemonic - the key code which represents the mnemonic

Throws:

[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang") - if tabIndex is out of range (tabIndex < 0 || tabIndex >= tab count)

Since:

1.4

See Also:

getMnemonicAt(int), [setDisplayedMnemonicIndexAt(int,int)](../../javax/swing/JTabbedPane.html#setDisplayedMnemonicIndexAt%28int, int%29)


indexOfTab

public int indexOfTab(String title)

Returns the first tab index with a given title, or -1 if no tab has this title.

Parameters:

title - the title for the tab

Returns:

the first tab index which matches title, or -1 if no tab has this title


indexOfTab

public int indexOfTab(Icon icon)

Returns the first tab index with a given icon, or -1 if no tab has this icon.

Parameters:

icon - the icon for the tab

Returns:

the first tab index which matches icon, or -1 if no tab has this icon


indexOfComponent

public int indexOfComponent(Component component)

Returns the index of the tab for the specified component. Returns -1 if there is no tab for this component.

Parameters:

component - the component for the tab

Returns:

the first tab which matches this component, or -1 if there is no tab for this component


indexAtLocation

public int indexAtLocation(int x, int y)

Returns the tab index corresponding to the tab whose bounds intersect the specified location. Returns -1 if no tab intersects the location.

Parameters:

x - the x location relative to this tabbedpane

y - the y location relative to this tabbedpane

Returns:

the tab index which intersects the location, or -1 if no tab intersects the location

Since:

1.4


getToolTipText

public String getToolTipText(MouseEvent event)

Returns the tooltip text for the component determined by the mouse event location.

Overrides:

[getToolTipText](../../javax/swing/JComponent.html#getToolTipText%28java.awt.event.MouseEvent%29) in class [JComponent](../../javax/swing/JComponent.html "class in javax.swing")

Parameters:

event - the MouseEvent that tells where the cursor is lingering

Returns:

the String containing the tooltip text


paramString

protected String paramString()

Returns a string representation of this JTabbedPane. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations. The returned string may be empty but may not be null.

Overrides:

[paramString](../../javax/swing/JComponent.html#paramString%28%29) in class [JComponent](../../javax/swing/JComponent.html "class in javax.swing")

Returns:

a string representation of this JTabbedPane.


getAccessibleContext

public AccessibleContext getAccessibleContext()

Gets the AccessibleContext associated with this JTabbedPane. For tabbed panes, the AccessibleContext takes the form of an AccessibleJTabbedPane. A new AccessibleJTabbedPane instance is created if necessary.

Specified by:

[getAccessibleContext](../../javax/accessibility/Accessible.html#getAccessibleContext%28%29) in interface [Accessible](../../javax/accessibility/Accessible.html "interface in javax.accessibility")

Overrides:

[getAccessibleContext](../../javax/swing/JComponent.html#getAccessibleContext%28%29) in class [JComponent](../../javax/swing/JComponent.html "class in javax.swing")

Returns:

an AccessibleJTabbedPane that serves as the AccessibleContext of this JTabbedPane



Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.

Copyright © 2004, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.