Class Tab
- All Implemented Interfaces:
- Styleable,- EventTarget
Tabs are placed within a TabPane, where each tab represents a single
 'page'.
Tabs can contain any Node such as UI controls or groups
 of nodes added to a layout container.
When the user clicks on a Tab in the TabPane the Tab content becomes visible to the user.
- Since:
- JavaFX 2.0
- 
Property SummaryPropertiesTypePropertyDescriptionfinal BooleanPropertyThe closable state for this tab.final ObjectProperty<Node>The content associated with the tab.final ReadOnlyBooleanPropertyIndicates whether or not thisTabis disabled.final BooleanPropertySets the disabled state of this tab.final ObjectProperty<Node>The graphic in the tab.final StringPropertyThe id of this tab.final ObjectProperty<EventHandler<Event>>The event handler that is associated with the tab when the tab is closed.final ObjectProperty<EventHandler<Event>>Called when there is an external request to close thisTab.final ObjectProperty<EventHandler<Event>>The event handler that is associated with a selection on the tab.final ReadOnlyBooleanPropertyThe currently selected tab.final StringPropertyThe CSS style string associated to this tab.final ReadOnlyObjectProperty<TabPane>The TabPane that contains this tab.final StringPropertyThe text shown in the tab.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionCalled when a user closes this tab.Called when the tab becomes selected or unselected.Called when there is an external request to close thisTab.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal BooleanPropertyThe closable state for this tab.final ObjectProperty<Node>The content associated with the tab.final ReadOnlyBooleanPropertyIndicates whether or not thisTabis disabled.final BooleanPropertySets the disabled state of this tab.final NodeThe content associated with the tab.final NodeThe graphic shown in the tab.final StringgetId()The id of this tab.final EventHandler<Event>The event handler that is associated with the tab when the tab is closed.Gets the value of theonCloseRequestproperty.final EventHandler<Event>The event handler that is associated with a selection on the tab.final ObservableMap<Object,Object> Returns an observable map of properties on this Tab for use primarily by application developers.final StringgetStyle()The CSS style string associated to this tab.A list of String identifiers which can be used to logically group Nodes, specifically for an external style engine.final TabPaneA reference to the TabPane that contains this tab instance.final StringgetText()The text shown in the tab.Returns a previously set Object property, or null if no such property has been set using thesetUserData(java.lang.Object)method.final ObjectProperty<Node>The graphic in the tab.booleanTests if this Tab has properties.final StringPropertyThe id of this tab.final booleanReturnstrueif this tab is closable.final booleanReturnstrueif this tab is disable.final booleanfinal booleanRepresents whether this tab is the currently selected tab, To change the selected Tab usetabPane.getSelectionModel().select()final ObjectProperty<EventHandler<Event>>The event handler that is associated with the tab when the tab is closed.final ObjectProperty<EventHandler<Event>>Called when there is an external request to close thisTab.final ObjectProperty<EventHandler<Event>>The event handler that is associated with a selection on the tab.final ReadOnlyBooleanPropertyThe currently selected tab.final voidsetClosable(boolean value) Setstrueif the tab is closable.final voidsetContent(Node value) The content to show within the main TabPane area.final voidsetDisable(boolean value) Sets the disabled state of this tab.final voidsetGraphic(Node value) Sets the graphic to show in the tab to allow the user to differentiate between the function of each tab.final voidSets the id of this tab.final voidsetOnClosed(EventHandler<Event> value) Defines a function to be called when the tab is closed.voidsetOnCloseRequest(EventHandler<Event> value) Sets the value of theonCloseRequestproperty.final voidsetOnSelectionChanged(EventHandler<Event> value) Defines a function to be called when a selection changed has occurred on the tab.final voidA string representation of the CSS style associated with this tab.final voidSets the text to show in the tab to allow the user to differentiate between the function of each tab.voidsetUserData(Object value) Convenience method for setting a single Object property that can be retrieved at a later date.final StringPropertyThe CSS style string associated to this tab.final ReadOnlyObjectProperty<TabPane>The TabPane that contains this tab.final StringPropertyThe text shown in the tab.
- 
Property Details- 
idThe id of this tab.- See Also:
 
- 
styleThe CSS style string associated to this tab.- See Also:
 
- 
selectedThe currently selected tab.- See Also:
 
- 
tabPaneThe TabPane that contains this tab.- See Also:
 
- 
textThe text shown in the tab.- See Also:
 
- 
graphicThe graphic in the tab.- See Also:
 
- 
contentThe content associated with the tab. - See Also:
 
- 
closableThe closable state for this tab.- See Also:
 
- 
onSelectionChangedThe event handler that is associated with a selection on the tab.
- 
onClosedThe event handler that is associated with the tab when the tab is closed.
- 
disableSets the disabled state of this tab. A disable tab is no longer interactive or traversable, but the contents remain interactive. A disable tab can be selected usingTabPane.getSelectionModel().- Default value:
- false
- Since:
- JavaFX 2.2
- See Also:
 
- 
disabledIndicates whether or not thisTabis disabled. ATabwill become disabled ifdisableis set totrueon either itself or if theTabPaneis disabled.- Default value:
- false
- Since:
- JavaFX 2.2
- See Also:
 
- 
onCloseRequestCalled when there is an external request to close thisTab. The installed event handler can prevent tab closing by consuming the received event.- Since:
- JavaFX 8.0
- See Also:
 
 
- 
- 
Field Details- 
SELECTION_CHANGED_EVENTCalled when the tab becomes selected or unselected. 
- 
CLOSED_EVENTCalled when a user closes this tab. This is useful for freeing up memory. 
- 
TAB_CLOSE_REQUEST_EVENTCalled when there is an external request to close thisTab. The installed event handler can prevent tab closing by consuming the received event.- Since:
- JavaFX 8.0
 
 
- 
- 
Constructor Details- 
Tabpublic Tab()Creates a tab with no title.
- 
TabCreates a tab with a text title.- Parameters:
- text- The title of the tab.
 
- 
TabCreates a tab with a text title and the specified content node.- Parameters:
- text- The title of the tab.
- content- The content of the tab.
- Since:
- JavaFX 8u40
 
 
- 
- 
Method Details- 
setIdSets the id of this tab. This simple string identifier is useful for finding a specific Tab within theTabPane. The default value isnull.
- 
getIdThe id of this tab.
- 
idPropertyThe id of this tab.
- 
setStyleA string representation of the CSS style associated with this tab. This is analogous to the "style" attribute of an HTML element. Note that, like the HTML style attribute, this variable contains style properties and values and not the selector portion of a style rule.Parsing this style might not be supported on some limited platforms. It is recommended to use a standalone CSS file instead. 
- 
getStyleThe CSS style string associated to this tab.
- 
stylePropertyThe CSS style string associated to this tab.- Returns:
- the styleproperty
- See Also:
 
- 
isSelectedpublic final boolean isSelected()Represents whether this tab is the currently selected tab, To change the selected Tab use tabPane.getSelectionModel().select()
- 
selectedPropertyThe currently selected tab.- Returns:
- the selectedproperty
- See Also:
 
- 
getTabPaneA reference to the TabPane that contains this tab instance. 
- 
tabPanePropertyThe TabPane that contains this tab.- Returns:
- the tabPaneproperty
- See Also:
 
- 
setTextSets the text to show in the tab to allow the user to differentiate between the function of each tab. The text is always visible 
- 
getTextThe text shown in the tab.- Returns:
- The text shown in the tab.
 
- 
textPropertyThe text shown in the tab.- Returns:
- the textproperty
- See Also:
 
- 
setGraphicSets the graphic to show in the tab to allow the user to differentiate between the function of each tab. By default the graphic does not rotate based on the TabPane.tabPosition value, but it can be set to rotate by setting TabPane.rotateGraphic to true. 
- 
getGraphicThe graphic shown in the tab.- Returns:
- The graphic shown in the tab.
 
- 
graphicPropertyThe graphic in the tab.- Returns:
- The graphic in the tab.
- See Also:
 
- 
setContentThe content to show within the main TabPane area. The content can be any Node such as UI controls or groups of nodes added to a layout container. 
- 
getContentThe content associated with the tab. - Returns:
- The content associated with the tab.
 
- 
contentPropertyThe content associated with the tab. - Returns:
- the contentproperty
- See Also:
 
- 
setClosablepublic final void setClosable(boolean value) Sets trueif the tab is closable. If this is set tofalse, then regardless of the TabClosingPolicy, it will not be possible for the user to close this tab. Therefore, when this property isfalse, no 'close' button will be shown on the tab. The default istrue.
- 
isClosablepublic final boolean isClosable()Returnstrueif this tab is closable.- Returns:
- trueif the tab is closable.
 
- 
closablePropertyThe closable state for this tab.
- 
setOnSelectionChangedDefines a function to be called when a selection changed has occurred on the tab.
- 
getOnSelectionChangedThe event handler that is associated with a selection on the tab.- Returns:
- The event handler that is associated with a tab selection.
 
- 
onSelectionChangedPropertyThe event handler that is associated with a selection on the tab.- Returns:
- the onSelectionChangedproperty
- See Also:
 
- 
setOnClosedDefines a function to be called when the tab is closed.
- 
getOnClosedThe event handler that is associated with the tab when the tab is closed.- Returns:
- The event handler that is associated with the tab when the tab is closed.
 
- 
onClosedPropertyThe event handler that is associated with the tab when the tab is closed.- Returns:
- the onClosedproperty
- See Also:
 
- 
setDisablepublic final void setDisable(boolean value) Sets the disabled state of this tab.- Default value:
- false
- Parameters:
- value- the state to set this tab
- Since:
- JavaFX 2.2
 
- 
isDisablepublic final boolean isDisable()Returnstrueif this tab is disable.- Since:
- JavaFX 2.2
 
- 
disablePropertySets the disabled state of this tab. A disable tab is no longer interactive or traversable, but the contents remain interactive. A disable tab can be selected usingTabPane.getSelectionModel().- Default value:
- false
- Returns:
- the disableproperty
- Since:
- JavaFX 2.2
- See Also:
 
- 
isDisabledpublic final boolean isDisabled()- Since:
- JavaFX 2.2
 
- 
disabledPropertyIndicates whether or not thisTabis disabled. ATabwill become disabled ifdisableis set totrueon either itself or if theTabPaneis disabled.- Default value:
- false
- Returns:
- the disabledproperty
- Since:
- JavaFX 2.2
- See Also:
 
- 
onCloseRequestPropertyCalled when there is an external request to close thisTab. The installed event handler can prevent tab closing by consuming the received event.- Returns:
- the onCloseRequestproperty
- Since:
- JavaFX 8.0
- See Also:
 
- 
getOnCloseRequestGets the value of theonCloseRequestproperty.- Property description:
- Called when there is an external request to close this Tab. The installed event handler can prevent tab closing by consuming the received event.
- Returns:
- the value of the onCloseRequestproperty
- Since:
- JavaFX 8.0
- See Also:
 
- 
setOnCloseRequestSets the value of theonCloseRequestproperty.- Property description:
- Called when there is an external request to close this Tab. The installed event handler can prevent tab closing by consuming the received event.
- Parameters:
- value- the value for the- onCloseRequestproperty
- Since:
- JavaFX 8.0
- See Also:
 
- 
getPropertiesReturns an observable map of properties on this Tab for use primarily by application developers.- Returns:
- an observable map of properties on this Tab for use primarily by application developers
- Since:
- JavaFX 2.2
 
- 
hasPropertiespublic boolean hasProperties()Tests if this Tab has properties.- Returns:
- true if this tab has properties.
- Since:
- JavaFX 2.2
 
- 
setUserDataConvenience method for setting a single Object property that can be retrieved at a later date. This is functionally equivalent to calling the getProperties().put(Object key, Object value) method. This can later be retrieved by callinggetUserData().- Parameters:
- value- The value to be stored - this can later be retrieved by calling- getUserData().
- Since:
- JavaFX 2.2
 
- 
getUserDataReturns a previously set Object property, or null if no such property has been set using thesetUserData(java.lang.Object)method.- Returns:
- The Object that was previously set, or null if no property has been set or if null was set.
- Since:
- JavaFX 2.2
 
- 
getStyleClassA list of String identifiers which can be used to logically group Nodes, specifically for an external style engine. This variable is analogous to the "class" attribute on an HTML element and, as such, each element of the list is a style class to which this Node belongs.- Specified by:
- getStyleClassin interface- Styleable
- See Also:
 
 
-