Uses of Interface
org.fxmisc.flowless.TargetPosition
-
-
Uses of TargetPosition in org.fxmisc.flowless
Classes in org.fxmisc.flowless that implement TargetPosition Modifier and Type Class Description (package private) class
EndOffEnd
ATargetPosition
that instructs itsTargetPositionVisitor
to use the cell atEndOffEnd.itemIndex
as the anchor cell, showing it at the "bottom" of the viewport and to offset it byEndOffEnd.offsetFromEnd
.(package private) class
MinDistanceTo
(package private) class
StartOffStart
ATargetPosition
that instructs itsTargetPositionVisitor
to use the cell atStartOffStart.itemIndex
as the anchor cell, showing it at the "top" of the viewport and to offset it byStartOffStart.offsetFromStart
.Fields in org.fxmisc.flowless declared as TargetPosition Modifier and Type Field Description static TargetPosition
TargetPosition. BEGINNING
private TargetPosition
Navigator. currentPosition
private TargetPosition
Navigator. targetPosition
Methods in org.fxmisc.flowless that return TargetPosition Modifier and Type Method Description TargetPosition
EndOffEnd. clamp(int size)
TargetPosition
MinDistanceTo. clamp(int size)
TargetPosition
StartOffStart. clamp(int size)
TargetPosition
TargetPosition. clamp(int size)
Insures this position's item index is between 0 andsize
private TargetPosition
Navigator. getCurrentPosition()
TargetPosition
EndOffEnd. scrollBy(double delta)
TargetPosition
MinDistanceTo. scrollBy(double delta)
TargetPosition
StartOffStart. scrollBy(double delta)
TargetPosition
TargetPosition. scrollBy(double delta)
TargetPosition
EndOffEnd. transformByChange(int pos, int removedSize, int addedSize)
TargetPosition
MinDistanceTo. transformByChange(int pos, int removedSize, int addedSize)
TargetPosition
StartOffStart. transformByChange(int pos, int removedSize, int addedSize)
TargetPosition
TargetPosition. transformByChange(int pos, int removedSize, int addedSize)
When the list of items, those displayed in the viewport, and those that are not, are modified, transforms this change to account for those modifications.Methods in org.fxmisc.flowless with parameters of type TargetPosition Modifier and Type Method Description void
Navigator. setTargetPosition(TargetPosition targetPosition)
Sets theTargetPosition
used to layout the anchor node and re-lays out the viewport
-