Top Fields Constructors Methods
com.sun.javafx.scene.control

public abstract Class InputField

extends Control
Class Inheritance
Known Direct Subclasses
com.sun.javafx.scene.control.IntegerField, com.sun.javafx.scene.control.WebColorField, com.sun.javafx.scene.control.DoubleField
Imports
javafx.beans.property.*, javafx.event.ActionEvent, .EventHandler, javafx.scene.control.Control

Field Summary

Modifier and TypeField and Description
public static final int
private BooleanProperty
editable

Indicates whether this InputField can be edited by the user.

private ObjectProperty<EventHandler<ActionEvent>>
onAction

The action handler associated with this InputField, or null if no action handler is assigned.

private IntegerProperty
prefColumnCount

The preferred number of text columns.

private StringProperty
promptText

The InputField's prompt text to display, or null if no prompt text is displayed.

Constructor Summary

AccessConstructor and Description
public
InputField()

Creates a new InputField.

Method Summary

Modifier and TypeMethod and Description
public final BooleanProperty
public final EventHandler<ActionEvent>
public final int
public final String
public final boolean
public final ObjectProperty<EventHandler<ActionEvent>>
public final IntegerProperty
public final StringProperty
public final void
setEditable(boolean value)

public final void
public final void
setPrefColumnCount(int value)

public final void
Inherited from javafx.scene.control.Control:
computeMaxHeightcomputeMaxWidthcomputeMinHeightcomputeMinWidthcomputePrefHeightcomputePrefWidthcontextMenuPropertycreateDefaultSkinexecuteAccessibleActiongetBaselineOffsetgetClassCssMetaDatagetContextMenugetControlCssMetaDatagetCssMetaDatagetInitialFocusTraversablegetSkingetTooltipisResizablelayoutChildrenqueryAccessibleAttributesetContextMenusetSkinsetTooltipskinPropertytooltipProperty

Field Detail

DEFAULT_PREF_COLUMN_COUNTback to summary
public static final int DEFAULT_PREF_COLUMN_COUNT

The default value for prefColumnCount.

editableback to summary
private BooleanProperty editable

Indicates whether this InputField can be edited by the user. If true, the "readonly" pseudo class will be false, but if false, the "readonly" pseudo class will be true.

onActionback to summary
private ObjectProperty<EventHandler<ActionEvent>> onAction

The action handler associated with this InputField, or null if no action handler is assigned. The action handler is normally called when the user types the ENTER key.

prefColumnCountback to summary
private IntegerProperty prefColumnCount

The preferred number of text columns. This is used for calculating the InputField's preferred width.

promptTextback to summary
private StringProperty promptText

The InputField's prompt text to display, or null if no prompt text is displayed.

Constructor Detail

InputFieldback to summary
public InputField()

Creates a new InputField. The style class is set to "money-field".

Method Detail

editablePropertyback to summary
public final BooleanProperty editableProperty()
getOnActionback to summary
public final EventHandler<ActionEvent> getOnAction()
getPrefColumnCountback to summary
public final int getPrefColumnCount()
getPromptTextback to summary
public final String getPromptText()
isEditableback to summary
public final boolean isEditable()
onActionPropertyback to summary
public final ObjectProperty<EventHandler<ActionEvent>> onActionProperty()
prefColumnCountPropertyback to summary
public final IntegerProperty prefColumnCountProperty()
promptTextPropertyback to summary
public final StringProperty promptTextProperty()
setEditableback to summary
public final void setEditable(boolean value)
setOnActionback to summary
public final void setOnAction(EventHandler<ActionEvent> value)
setPrefColumnCountback to summary
public final void setPrefColumnCount(int value)
setPromptTextback to summary
public final void setPromptText(String value)