- java.lang.Object
-
- javafx.scene.control.SkinBase<ListSelectionView<T>>
-
- impl.org.controlsfx.skin.ListSelectionViewSkin<T>
-
- All Implemented Interfaces:
javafx.scene.control.Skin<ListSelectionView<T>>
public class ListSelectionViewSkin<T> extends javafx.scene.control.SkinBase<ListSelectionView<T>>
-
-
Constructor Summary
Constructors Constructor Description ListSelectionViewSkin(ListSelectionView<T> view)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected javafx.scene.control.ListView<T>
createSourceListView()
Creates theListView
instance used on the left-hand side as the source list.protected javafx.scene.control.ListView<T>
createTargetListView()
Creates theListView
instance used on the right-hand side as the target list.javafx.scene.control.ListView<T>
getSourceListView()
Returns the source list view (shown on the left-hand side).javafx.scene.control.ListView<T>
getTargetListView()
Returns the target list view (shown on the right-hand side).-
Methods inherited from class javafx.scene.control.SkinBase
computeBaselineOffset, computeMaxHeight, computeMaxWidth, computeMinHeight, computeMinWidth, computePrefHeight, computePrefWidth, consumeMouseEvents, dispose, executeAccessibleAction, getChildren, getClassCssMetaData, getCssMetaData, getNode, getSkinnable, layoutChildren, layoutInArea, layoutInArea, layoutInArea, positionInArea, positionInArea, pseudoClassStateChanged, queryAccessibleAttribute, registerChangeListener, registerInvalidationListener, registerListChangeListener, snappedBottomInset, snappedLeftInset, snappedRightInset, snappedTopInset, snapPosition, snapPositionX, snapPositionY, snapSize, snapSizeX, snapSizeY, snapSpace, snapSpaceX, snapSpaceY, unregisterChangeListeners, unregisterInvalidationListeners, unregisterListChangeListeners
-
-
-
-
Constructor Detail
-
ListSelectionViewSkin
public ListSelectionViewSkin(ListSelectionView<T> view)
-
-
Method Detail
-
getSourceListView
public final javafx.scene.control.ListView<T> getSourceListView()
Returns the source list view (shown on the left-hand side).- Returns:
- the source list view
-
getTargetListView
public final javafx.scene.control.ListView<T> getTargetListView()
Returns the target list view (shown on the right-hand side).- Returns:
- the target list view
-
createSourceListView
protected javafx.scene.control.ListView<T> createSourceListView()
Creates theListView
instance used on the left-hand side as the source list. This method can be overridden to provide a customized list view control.- Returns:
- the source list view
-
createTargetListView
protected javafx.scene.control.ListView<T> createTargetListView()
Creates theListView
instance used on the right-hand side as the target list. This method can be overridden to provide a customized list view control.- Returns:
- the target list view
-
-