Class Cell<T>
- Type Parameters:
 T- The type of the item contained within the Cell.
- All Implemented Interfaces:
 LayoutMeasurable,LayoutMeasurableMixin,HasAlignmentProperty,HasBackgroundProperty,HasBlendModeProperty,HasBorderProperty,HasClipProperty,HasEffectProperty,HasFontProperty,HasGraphicProperty,HasHeightProperty,HasImageUrlProperty,HasLayoutXProperty,HasLayoutYProperty,HasManagedProperty,HasMaxHeightProperty,HasMaxWidthProperty,HasMinHeightProperty,HasMinWidthProperty,HasMouseTransparentProperty,HasOnMouseClickedProperty,HasOpacityProperty,HasPaddingProperty,HasParentProperty,HasPrefHeightProperty,HasPrefWidthProperty,HasSnapToPixelProperty,HasTextAlignmentProperty,HasTextFillProperty,HasTextProperty,HasVisibleProperty,HasWidthProperty,Styleable,EventTarget,Skinnable,INode,PreferenceResizableNode
ListView,
 TreeView, and TableView.
 A Cell is a Labeled Control, and is used to render a single
 "row" inside  a ListView, TreeView or TableView. Cells are also used for each
 individual 'cell' inside a TableView (i.e. each row/column intersection). See
 the JavaDoc for each control separately for more detail.
 
 Every Cell is associated with a single data item (represented by the
 item property). The Cell is responsible for
 rendering that item and, where appropriate, for editing the item. An item
 within a Cell may be represented by text or some other control such as a
 CheckBox, ChoiceBox or any other 
invalid @link
Nodeinvalid @link
HBoxinvalid @link
GridPaneinvalid @link
Rectangle
Because TreeView, ListView, TableView and other such controls can potentially be used for displaying incredibly large amounts of data, it is not feasible to create an actual Cell for every single item in the control. We represent extremely large data sets using only very few Cells. Each Cell is "recycled", or reused. This is what we mean when we say that these controls are virtualized.
Since Cell is a Control, it is essentially a "model". Its Skin is responsible for defining the look and layout, while the Behavior is responsible for handling all input events and using that information to modify the Control state. Also, the Cell is styled from CSS just like any other Control. However, it is not necessary to implement a Skin for most uses of a Cell. This is because a cell factory can be set - this is detailed more shortly.
 Because by far the most common use case for cells is to show text to a user,
 this use case is specially optimized for within Cell. This is done by Cell
 extending from Labeled. This means that subclasses of Cell need only
 set the text property, rather than create a separate
 Label and set that within the Cell. However, for situations where
 something more than just plain text is called for, it is possible to place
 any 
invalid @link
Nodegraphic property.
 Despite the term, a graphic can be any Node, and will be fully interactive.
 For example, a ListCell might be configured with a Button as its
 graphic. The Button text could then be bound to the cells
 item property. In this way, whenever the item in the
 Cell changes, the Button text is automatically updated.
 
Cell sets focusTraversable to false.
Cell Factories
 The default representation of the Cell item is up to the various
 virtualized container's skins to render. For example, the ListView by default
 will convert the item to a String and call HasTextProperty.setText(java.lang.String)
 with this value. If you want to specialize the Cell used for the
 ListView (for example), then you must provide an implementation of the
 cellFactory callback function defined
 on the ListView. Similar API exists on most controls that use Cells (for example,
 TreeView,
 TableView,
 TableColumn and
 ListView.
 
The cell factory is called by the platform whenever it determines that a new cell needs to be created. For example, perhaps your ListView has 10 million items. Creating all 10 million cells would be prohibitively expensive. So instead the ListView skin implementation might only create just enough cells to fit the visual space. If the ListView is resized to be larger, the system will determine that it needs to create some additional cells. In this case it will call the cellFactory callback function (if one is provided) to create the Cell implementation that should be used. If no cell factory is provided, the built-in default implementation will be used.
The implementation of the cell factory is then responsible not just for creating a Cell instance, but also configuring that Cell such that it reacts to changes in its state. For example, if I were to create a custom Cell which formatted Numbers such that they would appear as currency types, I might do so like this:
 public class MoneyFormatCell extends ListCell<Number> {
     public MoneyFormatCell() {    }
     @Override protected void updateItem(Number item, boolean empty) {
         // calling super here is very important - don't skip this!
         super.updateItem(item, empty);
         // format the number as if it were a monetary value using the
         // formatting relevant to the current locale. This would format
         // 43.68 as "$43.68", and -23.67 as "-$23.67"
         setText(item == null ? "" : NumberFormat.getCurrencyInstance().format(item));
         // change the text fill based on whether it is positive (green)
         // or negative (red). If the cell is selected, the text will
         // always be white (so that it can be read against the blue
         // background), and if the value is zero, we'll make it black.
         if (item != null) {
             double value = item.doubleValue();
             setTextFill(isSelected() ? Color.WHITE :
                 value == 0 ? Color.BLACK :
                 value invalid input: '<' 0 ? Color.RED : Color.GREEN);
         }
     }
 }
 This class could then be used inside a ListView as such:
 
 ObservableList<Number> money = ...;
 final ListView<Number> listView = new ListView<Number>(money);
 listView.setCellFactory(new Callback<ListView<Number>, ListCell<Number>>() {
     @Override public ListCell<Number> call(ListView<Number> list) {
         return new MoneyFormatCell();
     }
 });
 In this example an anonymous inner class is created, that simply returns
 instances of MoneyFormatCell whenever it is called. The MoneyFormatCell class
 extends ListCell, overriding the
 updateItem method. This method
 is called whenever the item in the cell changes, for example when the user
 scrolls the ListView or the content of the underlying data model changes
 (and the cell is reused to represent some different item in the ListView).
 Because of this, there is no need to manage bindings - simply react to the
 change in items when this method occurs. In the example above, whenever the
 item changes, we update the cell text property, and also modify the text fill
 to ensure that we get the correct visuals. In addition, if the cell is "empty"
 (meaning it is used to fill out space in the ListView but doesn't have any
 data associated with it), then we just use the empty String.
 Note that there are additional methods prefixed with 'update' that may be of interest, so be sure to read the API documentation for Cell, and subclasses of Cell, closely.
Of course, we can also use the binding API rather than overriding the 'update' methods. Shown below is a very trivial example of how this could be achieved.
 public class BoundLabelCell extends ListCell<String> {
     public BoundLabelCell() {
         textProperty().bind(itemProperty());
     }
 }
 
 Key Design Goals
- Both time and memory efficient for large data sets
 - Easy to build and use libraries for custom cells
 - Easy to customize cell visuals
 - Easy to customize display formatting (12.34 as $12.34 or 1234% etc)
 - Easy to extend for custom visuals
 - Easy to have "panels" of data for the visuals
 - Easy to animate the cell size or other properties
 
Key Use Cases
Following are a number of key use cases used to drive the Cell API design, along with code examples showing how those use cases are satisfied by this API. This is by no means to be considered the definitive list of capabilities or features supported, but rather, to provide some guidance as to how to use the Cell API. The examples below are focused on the ListView, but the same philosophy applies to TreeCells or other kinds of cells.Changing the Cell's Colors
This should be extraordinarily simple in JavaFX. Each Cell can be styled directly from CSS. So for example, if you wanted to change the default background of every cell in a ListView to be WHITE you could do the following CSS:
 .list-cell {
   -fx-padding: 3 3 3 3;
   -fx-background-color: white;
 }
 If you wanted to set the color of selected ListView cells to be blue, you
 could add this to your CSS file:
 
 .list-cell:selected {
   -fx-background-color: blue;
 }
 Most Cell implementations extend from IndexedCell rather than Cell.
 IndexedCell adds two other pseudoclass states: "odd" and "even". Using this
 you can get alternate row striping by doing something like this in your CSS
 file:
 
 .list-cell:odd {
   -fx-background-color: grey;
 }
 Each of these examples require no code changes. Simply update your CSS
 file to alter the colors. You can also use the "hover" and other
 pseudoclasses in CSS the same as with other controls.
 
 Another approach to the first example above (formatting a list of numbers) would
 be to use style classes. Suppose you had an ObservableList of Numbers
 to display in a ListView and wanted to color all of the negative values red
 and all positive or 0 values black.
 One way to achieve this is with a custom cellFactory which changes the
 styleClass of the Cell based on whether the value is negative or positive. This
 is as simple as adding code to test if the number in the cell is negative,
 and adding a "negative" styleClass. If the number is not negative, the "negative"
 string should be removed. This approach allows for the colors to be defined
 from CSS, allowing for simple customization. The CSS file would then include
 something like the following:
 
 .list-cell {
   -fx-text-fill: black;
 }
 .list-cell .negative {
   -fx-text-fill: red;
 }
 Editing
Most virtualized controls that use the Cell architecture (e.g. ListView,
 TreeView, TableView and TreeTableView) all support
 the notion of editing values directly via the cell. You can learn more about
 the control-specific details by going to the 'editing' section in the class
 documentation for the controls linked above. The remainder of this section
 will cover some of the finer details of editing with cells.
The general flow of editing is as follows (note that in these steps the
 ListView control is used as an example, but similar API exists for
 all controls mentioned above, and the process is exactly the same in general):
- User requests a cell enter editing mode (via keyboard or mouse commands),
     or the developer requests that a cell enter editing mode (by calling a
     method such as the ListView 
editmethod. Note: If the user double-clicks or fires an appropriate keyboard command to initiate editing, then they are effectively calling the appropriate edit method on the control (i.e. the entry method for user-initiated and developer-initiated editing is the same). - Each cell in the visible region of the control is notified that the
     current 
editing cellhas changed, and checks to see if it is itself. At this point one of three things can happen:- If the editing index is the same index as the cell,
             
startEdit()will be called on this cell. Some pointers:- It is recommended that subclasses of Cell override the 
startEdit()method to update the visuals of the cell when enters the editing state. Note however that it is very important that subclasses that override thestartEdit()method continue to callsuper.startEdit()so that parent classes can update additional state that is necessary for editing to be successful. - Within the 
startEdit()method is an ideal time to change the visuals of the cell. For example (and note that this example is more fleshed out in the UI control javadocs forListView, etc), you may set theLabeled.graphicProperty()of the cell to aTextFieldand set theLabeled.textProperty()to null. This would allow end users to then type in input and make changes to your data model. - When the user has completed editing, they will want
                     to commit or cancel their change. This is your responsibility
                     to handle (e.g. by having the Enter key
                     
commit the editand the ESC keycancel the edit). You do this by attaching the appropriate event listeners to the nodes you show whilst in the editing state. 
 - It is recommended that subclasses of Cell override the 
 - If the editing index is not the same index as the cell, and
             if the cell is currently in the 
editing state,cancelEdit()will be called on this cell. As with thestartEdit()method, you should override this method to clean up the visuals of the cell (and most probably return theLabeled.graphicProperty()back to null and set theLabeled.textProperty()to its (possibly new) value. Again, be sure to always callsuper.cancelEdit()to make sure all state is correctly updated. - If the editing index is not the same index as the cell, and
             if the cell is not currently in the 
isEditing()editing state}, then nothing will happen on this cell. 
 - If the editing index is the same index as the cell,
             
 
- Since:
 - JavaFX 2.0
 
- 
Property Summary
PropertiesTypePropertyDescriptionA property representing whether this cell is allowed to be put into an editing state.final ReadOnlyProperty<Boolean>Property representing whether this cell is currently in its editing state.final ReadOnlyProperty<Boolean>A property used to represent whether the cell has any contents.final ObjectProperty<T>The data value associated with this Cell.final ReadOnlyProperty<Boolean>Indicates whether or not this cell has been selected.Properties inherited from class javafx.scene.control.Labeled
alignment, contentDisplay, ellipsisString, font, graphic, graphicTextGap, imageUrl, labelPadding, lineSpacing, textAlignment, textFill, textOverrun, text, wrapTextProperties inherited from class javafx.scene.control.Control
contextMenu, skin, tooltipProperties inherited from class javafx.scene.layout.Region
background, border, height, insets, maxHeight, maxWidth, minHeight, minWidth, padding, prefHeight, prefWidth, snapToPixel, widthProperties inherited from class javafx.scene.Parent
needsLayoutProperties inherited from class javafx.scene.Node
blendMode, cacheHint, cache, clip, cursor, disabled, disable, effect, eventDispatcher, focused, focusTraversable, hover, id, layoutBounds, layoutX, layoutY, managed, mouseTransparent, onContextMenuRequested, onDragDetected, onDragDone, onDragDropped, onDragEntered, onDragExited, onDragOver, onKeyPressed, onKeyReleased, onKeyTyped, onMouseClicked, onMouseDragged, onMouseEntered, onMouseExited, onMouseMoved, onMousePressed, onMouseReleased, onScroll, onSwipeDown, onSwipeLeft, onSwipeRight, onSwipeUp, onTouchMoved, onTouchPressed, onTouchReleased, onTouchStationary, opacity, parent, pressed, rotate, scaleX, scaleY, scaleZ, scene, style, translateX, translateY, visibleProperties inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasBlendModeProperty
blendModeProperties inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasClipProperty
clipProperties inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasEffectProperty
effectProperties inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasLayoutXProperty
layoutXProperties inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasLayoutYProperty
layoutYProperties inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasManagedProperty
managedProperties inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasMouseTransparentProperty
mouseTransparentProperties inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasOnMouseClickedProperty
onMouseClickedProperties inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasOpacityProperty
opacityProperties inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasParentProperty
parentProperties inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasVisibleProperty
visible - 
Field Summary
Fields inherited from interface javafx.scene.INode
BASELINE_OFFSET_SAME_AS_HEIGHTFields inherited from interface javafx.scene.layout.PreferenceResizableNode
USE_COMPUTED_SIZE, USE_PREF_SIZE - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionvoidCall this function to transition from an editing state into a non-editing state, without saving any user input.voidcommitEdit(T newValue) Call this function when appropriate (based on the user interaction requirements of your cell editing user interface) to do two things: Fire the appropriate events back to the backing UI control (e.g.A property representing whether this cell is allowed to be put into an editing state.final ReadOnlyProperty<Boolean>Property representing whether this cell is currently in its editing state.final ReadOnlyProperty<Boolean>A property used to represent whether the cell has any contents.final TgetItem()Returns the data value associated with this Cell.final booleanReturns whether this cell is allowed to be put into an editing state.final booleanRepresents whether the cell is currently in its editing state or not.final booleanisEmpty()Returns a boolean representing whether the cell is considered to be empty or not.protected booleanisItemChanged(T oldItem, T newItem) This method is called by Cell subclasses so that certain CPU-intensive actions (specifically, callingupdateItem(Object, boolean)) are only performed when necessary (that is, they are only performed when the currently setitemis considered to be different than the proposed new item that could be set).final booleanReturns whether this cell is currently selected or not.final ObjectProperty<T>The data value associated with this Cell.final ReadOnlyProperty<Boolean>Indicates whether or not this cell has been selected.final voidsetEditable(boolean value) Allows for certain cells to not be able to be edited.final voidSets the item to the given value - should not be called directly as the item is managed by the virtualized control.voidCall this function to transition from a non-editing state into an editing state, if the cell is editable.protected voidupdateItem(T item, boolean empty) The updateItem method should not be called by developers, but it is the best method for developers to override to allow for them to customise the visuals of the cell.voidupdateSelected(boolean selected) Updates whether this cell is in a selected state or not.Methods inherited from class javafx.scene.control.Labeled
alignmentProperty, contentDisplayProperty, ellipsisStringProperty, fontProperty, getContentBias, getContentDisplay, getEllipsisString, getGraphicTextGap, getLabelPadding, getLineSpacing, getTextOverrun, graphicProperty, graphicTextGapProperty, imageUrlProperty, isWrapText, labelPaddingProperty, lineSpacingProperty, setContentDisplay, setEllipsisString, setGraphicTextGap, setLineSpacing, setScene, setTextOverrun, setWrapText, textAlignmentProperty, textFillProperty, textOverrunProperty, textProperty, wrapTextPropertyMethods inherited from class javafx.scene.control.Control
computeMaxHeight, computeMaxWidth, computeMinHeight, computeMinWidth, computePrefHeight, computePrefWidth, contextMenuProperty, createDefaultSkin, getBaselineOffset, getContextMenu, getSkin, getTooltip, layoutChildren, setContextMenu, setSkin, setTooltip, shouldUseLayoutMeasurable, skinProperty, tooltipPropertyMethods inherited from class javafx.scene.layout.Region
backgroundProperty, borderProperty, boundedSize, getInsets, heightProperty, impl_computeGeomBounds, impl_computeLayoutBounds, impl_maxHeight, impl_maxWidth, impl_minHeight, impl_minWidth, impl_prefHeight, impl_prefWidth, insetsProperty, layoutInArea, layoutInArea, layoutInArea, layoutInArea, maxHeightProperty, maxWidthProperty, minHeightProperty, minWidthProperty, paddingProperty, positionInArea, positionInArea, prefHeightProperty, prefWidthProperty, resize, setMaxSize, setMinSize, setPrefSize, snappedBottomInset, snappedLeftInset, snappedRightInset, snappedTopInset, snapPosition, snapPositionX, snapPositionY, snapSize, snapSizeX, snapSizeY, snapSpace, snapSpaceX, snapSpaceY, snapToPixelProperty, widthPropertyMethods inherited from class javafx.scene.Parent
getChildren, getChildrenUnmodifiable, getManagedChildren, isNeedsLayout, layout, needsLayoutProperty, requestLayout, requestParentLayout, setLayoutFlag, setNeedsLayout, setSceneRootMethods inherited from class javafx.scene.Node
addEventFilter, addEventHandler, autosize, blendModeProperty, buildEventDispatchChain, cacheHintProperty, cacheProperty, clipProperty, createLayoutMeasurable, cursorProperty, disabledProperty, disableProperty, effectProperty, eventDispatcherProperty, fireEvent, focusedProperty, focusTraversableProperty, getAllNodeTransforms, getBoundsInLocal, getCacheHint, getCursor, getEventDispatcher, getId, getLayoutMeasurable, getNodePeer, getOnContextMenuRequested, getOnDragDetected, getOnDragDone, getOnDragDropped, getOnDragEntered, getOnDragExited, getOnDragOver, getOnKeyPressed, getOnKeyReleased, getOnKeyTyped, getOnMouseDragged, getOnMouseEntered, getOnMouseExited, getOnMouseMoved, getOnMousePressed, getOnMouseReleased, getOnScroll, getOnSwipeDown, getOnSwipeLeft, getOnSwipeRight, getOnSwipeUp, getOnTouchMoved, getOnTouchPressed, getOnTouchReleased, getOnTouchStationary, getOrCreateAndBindNodePeer, getProperties, getRotate, getScaleX, getScaleY, getScaleZ, getScene, getStyle, getStyleClass, getTransforms, getTranslateX, getTranslateY, getUserData, hasProperties, hoverProperty, idProperty, impl_getLayoutBounds, impl_isTreeVisible, impl_traverse, isCache, isDisable, isDisabled, isFocused, isFocusTraversable, isHover, isPressed, layoutBoundsProperty, layoutXProperty, layoutYProperty, localToParent, localToParent, localToParent, localToScene, localToScene, localToScreen, localToScreen, localToScreen, localToScreen, managedProperty, mouseTransparentProperty, onContextMenuRequestedProperty, onDragDetectedProperty, onDragDoneProperty, onDragDroppedProperty, onDragEnteredProperty, onDragExitedProperty, onDragOverProperty, onKeyPressedProperty, onKeyReleasedProperty, onKeyTypedProperty, onMouseClickedProperty, onMouseDraggedProperty, onMouseEnteredProperty, onMouseExitedProperty, onMouseMovedProperty, onMousePressedProperty, onMouseReleasedProperty, onNodePeerReady, onPeerSizeChanged, onScrollProperty, onSwipeDownProperty, onSwipeLeftProperty, onSwipeRightProperty, onSwipeUpProperty, onTouchMovedProperty, onTouchPressedProperty, onTouchReleasedProperty, onTouchStationaryProperty, opacityProperty, parentProperty, parentToLocal, pressedProperty, removeEventFilter, removeEventHandler, requestFocus, requestPeerFocus, rotateProperty, scaleXProperty, scaleYProperty, scaleZProperty, sceneProperty, sceneToLocal, sceneToLocal, sceneToLocal, setCache, setCacheHint, setCursor, setDisable, setDisabled, setEventDispatcher, setEventHandler, setFocused, setFocusTraversable, setHover, setId, setNodePeer, setOnContextMenuRequested, setOnDragDetected, setOnDragDone, setOnDragDropped, setOnDragEntered, setOnDragExited, setOnDragOver, setOnKeyPressed, setOnKeyReleased, setOnKeyTyped, setOnMouseDragged, setOnMouseEntered, setOnMouseExited, setOnMouseMoved, setOnMousePressed, setOnMouseReleased, setOnScroll, setOnSwipeDown, setOnSwipeLeft, setOnSwipeRight, setOnSwipeUp, setOnTouchMoved, setOnTouchPressed, setOnTouchReleased, setOnTouchStationary, setPressed, setRotate, setScaleX, setScaleY, setScaleZ, setStyle, setTranslateX, setTranslateY, setUserData, snapshot, startDragAndDrop, styleProperty, toBack, toFront, translateXProperty, translateYProperty, visiblePropertyMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasAlignmentProperty
getAlignment, setAlignmentMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasBackgroundProperty
getBackground, setBackgroundMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasBlendModeProperty
blendModeProperty, getBlendMode, setBlendModeMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasBorderProperty
getBorder, setBorderMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasClipProperty
clipProperty, getClip, setClipMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasEffectProperty
effectProperty, getEffect, setEffectMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasFontProperty
getFont, setFontMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasGraphicProperty
getGraphic, setGraphicMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasHeightProperty
getHeight, setHeightMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasImageUrlProperty
getImageUrl, setImageUrlMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasLayoutXProperty
getLayoutX, layoutXProperty, setLayoutXMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasLayoutYProperty
getLayoutY, layoutYProperty, setLayoutYMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasManagedProperty
isManaged, managedProperty, setManagedMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasMaxHeightProperty
getMaxHeight, setMaxHeightMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasMaxWidthProperty
getMaxWidth, setMaxWidthMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasMinHeightProperty
getMinHeight, setMinHeightMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasMinWidthProperty
getMinWidth, setMinWidthMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasMouseTransparentProperty
isMouseTransparent, mouseTransparentProperty, setMouseTransparentMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasOnMouseClickedProperty
getOnMouseClicked, onMouseClickedProperty, setOnMouseClickedMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasOpacityProperty
getOpacity, opacityProperty, setOpacityMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasPaddingProperty
getPadding, setPaddingMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasParentProperty
getParent, parentProperty, setParentMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasPrefHeightProperty
getPrefHeight, setPrefHeightMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasPrefWidthProperty
getPrefWidth, setPrefWidthMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasSnapToPixelProperty
isSnapToPixel, setSnapToPixelMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasTextAlignmentProperty
getTextAlignment, setTextAlignmentMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasTextFillProperty
getTextFill, setTextFillMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasTextProperty
getText, setTextMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasVisibleProperty
isVisible, setVisible, visiblePropertyMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.markers.HasWidthProperty
getWidth, setWidthMethods inherited from interface javafx.scene.INode
autosize, getAllNodeTransforms, getNodePeer, getOrCreateAndBindNodePeer, getProperties, getScene, getTransforms, hasProperties, relocate, resizeRelocateMethods inherited from interface dev.webfx.kit.mapper.peers.javafxgraphics.emul_coupling.LayoutMeasurableMixin
clearCache, getLayoutBounds, getLayoutMeasurable, maxHeight, maxWidth, minHeight, minWidth, prefHeight, prefWidthMethods inherited from interface javafx.scene.layout.PreferenceResizableNode
isResizable 
- 
Property Details
- 
item
The data value associated with this Cell. This value is set by the virtualized Control when the Cell is created or updated. This represents the raw data value.This value should only be set in subclasses of Cell by the virtualised user interface controls that know how to properly work with the Cell class.
- See Also:
 
 - 
empty
A property used to represent whether the cell has any contents. If true, then the Cell contains no data and is not associated with any data item in the virtualized Control.When a cell is empty, it can be styled differently via the 'empty' CSS pseudo class state. For example, it may not receive any alternate row highlighting, or it may not receive hover background fill when hovered.
- See Also:
 
 - 
selected
Indicates whether or not this cell has been selected. For example, a ListView defines zero or more cells as being the "selected" cells.- See Also:
 
 - 
editing
Property representing whether this cell is currently in its editing state.- See Also:
 
 - 
editable
A property representing whether this cell is allowed to be put into an editing state. By default editable is set to true in Cells (although for a subclass of Cell to be allowed to enter its editing state, it may have to satisfy additional criteria. For example, ListCell requires that the ListVieweditableproperty is also true.- See Also:
 
 
 - 
 - 
Constructor Details
- 
Cell
public Cell()Creates a default Cell with the default style class of 'cell'. 
 - 
 - 
Method Details
- 
itemProperty
The data value associated with this Cell. This value is set by the virtualized Control when the Cell is created or updated. This represents the raw data value.This value should only be set in subclasses of Cell by the virtualised user interface controls that know how to properly work with the Cell class.
 - 
setItem
Sets the item to the given value - should not be called directly as the item is managed by the virtualized control. - 
getItem
Returns the data value associated with this Cell. - 
emptyProperty
A property used to represent whether the cell has any contents. If true, then the Cell contains no data and is not associated with any data item in the virtualized Control.When a cell is empty, it can be styled differently via the 'empty' CSS pseudo class state. For example, it may not receive any alternate row highlighting, or it may not receive hover background fill when hovered.
- Returns:
 - the 
emptyproperty 
 - 
isEmpty
public final boolean isEmpty()Returns a boolean representing whether the cell is considered to be empty or not. - 
selectedProperty
Indicates whether or not this cell has been selected. For example, a ListView defines zero or more cells as being the "selected" cells.- Returns:
 - the 
selectedproperty 
 - 
isSelected
public final boolean isSelected()Returns whether this cell is currently selected or not.- Returns:
 - True if the cell is selected, false otherwise.
 
 - 
isEditing
public final boolean isEditing()Represents whether the cell is currently in its editing state or not. - 
editingProperty
Property representing whether this cell is currently in its editing state.- Returns:
 - the 
editingproperty 
 - 
setEditable
public final void setEditable(boolean value) Allows for certain cells to not be able to be edited. This is useful in cases where, say, a List has 'header rows' - it does not make sense for the header rows to be editable, so they should have editable set to false.- Parameters:
 value- A boolean representing whether the cell is editable or not. If true, the cell is editable, and if it is false, the cell can not be edited.
 - 
isEditable
public final boolean isEditable()Returns whether this cell is allowed to be put into an editing state. - 
editableProperty
A property representing whether this cell is allowed to be put into an editing state. By default editable is set to true in Cells (although for a subclass of Cell to be allowed to enter its editing state, it may have to satisfy additional criteria. For example, ListCell requires that the ListVieweditableproperty is also true.- Returns:
 - the 
editableproperty - See Also:
 
 - 
startEdit
public void startEdit()Call this function to transition from a non-editing state into an editing state, if the cell is editable. If this cell is already in an editing state, it will stay in it. - 
cancelEdit
public void cancelEdit()Call this function to transition from an editing state into a non-editing state, without saving any user input. - 
commitEdit
Call this function when appropriate (based on the user interaction requirements of your cell editing user interface) to do two things:- Fire the appropriate events back to the backing UI control (e.g.
     
ListView). This will begin the process of pushing this edit back to the relevant data source / property (although it does not guarantee that this will be successful - that is dependent upon the specific edit commit handler being used). Refer to the UI control class javadoc for more detail. - Begin the transition from an editing state into a non-editing state.
 
In general there is no need to override this method in custom cell implementations - it should be sufficient to simply call this method when appropriate (e.g. when the user pressed the Enter key, you may do something like
cell.commitEdit(converter.fromString(textField.getText()));- Parameters:
 newValue- The value as input by the end user, which should be persisted in the relevant way given the data source underpinning the user interface and the install edit commit handler of the UI control.
 - Fire the appropriate events back to the backing UI control (e.g.
     
 - 
updateItem
The updateItem method should not be called by developers, but it is the best method for developers to override to allow for them to customise the visuals of the cell. To clarify, developers should never call this method in their code (they should leave it up to the UI control, such as theListViewcontrol) to call this method. However, the purpose of having the updateItem method is so that developers, when specifying custom cell factories (again, like the ListViewcell factory), the updateItem method can be overridden to allow for complete customisation of the cell.It is very important that subclasses of Cell override the updateItem method properly, as failure to do so will lead to issues such as blank cells or cells with unexpected content appearing within them. Here is an example of how to properly override the updateItem method:
protected void updateItem(T item, boolean empty) { super.updateItem(item, empty); if (empty || item == null) { setText(null); setGraphic(null); } else { setText(item.toString()); } }Note in this code sample two important points:
- We call the super.updateItem(T, boolean) method. If this is not done, the item and empty properties are not correctly set, and you are likely to end up with graphical issues.
 - We test for the 
emptycondition, and if true, we set the text and graphic properties to null. If we do not do this, it is almost guaranteed that end users will see graphical artifacts in cells unexpectedly. 
- Parameters:
 item- The new item for the cell.empty- whether or not this cell represents data from the list. If it is empty, then it does not represent any domain data, but is a cell being used to render an "empty" row.
 - 
updateSelected
public void updateSelected(boolean selected) Updates whether this cell is in a selected state or not.- Parameters:
 selected- whether or not to select this cell.
 - 
isItemChanged
This method is called by Cell subclasses so that certain CPU-intensive actions (specifically, callingupdateItem(Object, boolean)) are only performed when necessary (that is, they are only performed when the currently setitemis considered to be different than the proposed new item that could be set).The default implementation of this method tests against equality, but developers are able to override this method to perform checks in other ways that are specific to their domain.
- Parameters:
 oldItem- The currently-set item contained within the cell (i.e. it is the same as what is available viagetItem()).newItem- The item that will be set in the cell, if this method returns true. If this method returns false, it may not be set.- Returns:
 - Returns true if the new item is considered to be different than the old item. By default this method tests against equality, but subclasses may alter the implementation to test appropriate to their needs.
 - Since:
 - JavaFX 8u40
 
 
 -