Uses of Class
org.eclipse.gef.mvc.fx.models.SnappingModel.SnappingLocation
-
Packages that use SnappingModel.SnappingLocation Package Description org.eclipse.gef.mvc.fx.behaviors This package contains JavaFX/MVC.FX-specificIBehavior
implementations.org.eclipse.gef.mvc.fx.models org.eclipse.gef.mvc.fx.parts This package contains all JavaFX-specificIContentPart
,IVisualPart
,IFeedbackPart
, andIHandlePart
implementations and related classes.org.eclipse.gef.mvc.fx.providers -
-
Uses of SnappingModel.SnappingLocation in org.eclipse.gef.mvc.fx.behaviors
Method parameters in org.eclipse.gef.mvc.fx.behaviors with type arguments of type SnappingModel.SnappingLocation Modifier and Type Method Description protected void
SnappingBehavior. onSnappingLocationsChanged(java.util.List<? extends SnappingModel.SnappingLocation> oldValue, java.util.List<? extends SnappingModel.SnappingLocation> newValue)
Callback method that is called in response toSnappingModel
changes. -
Uses of SnappingModel.SnappingLocation in org.eclipse.gef.mvc.fx.models
Methods in org.eclipse.gef.mvc.fx.models that return SnappingModel.SnappingLocation Modifier and Type Method Description SnappingModel.SnappingLocation
SnappingModel.SnappingLocation. getCopy()
Returns a copy of thisSnappingModel.SnappingLocation
.Methods in org.eclipse.gef.mvc.fx.models that return types with arguments of type SnappingModel.SnappingLocation Modifier and Type Method Description java.util.List<SnappingModel.SnappingLocation>
SnappingModel. getSnappingLocations()
Returns aList
containing theSnappingModel.SnappingLocation
s currently stored in thisSnappingModel
.java.util.List<SnappingModel.SnappingLocation>
SnappingModel. getSnappingLocationsFor(IContentPart<? extends javafx.scene.Node> part)
Returns aList
containing theSnappingModel.SnappingLocation
s that were derived from the givenIContentPart
.javafx.beans.property.ReadOnlyListProperty<SnappingModel.SnappingLocation>
SnappingModel. snappingLocationsProperty()
A read-only property containing the currentSnappingModel.SnappingLocation
s.Method parameters in org.eclipse.gef.mvc.fx.models with type arguments of type SnappingModel.SnappingLocation Modifier and Type Method Description void
SnappingModel. setSnappingLocations(java.util.List<? extends SnappingModel.SnappingLocation> snappingLocations)
Replaces theSnappingModel.SnappingLocation
s that are stored in thisSnappingModel
by the givenList
ofSnappingModel.SnappingLocation
s. -
Uses of SnappingModel.SnappingLocation in org.eclipse.gef.mvc.fx.parts
Methods in org.eclipse.gef.mvc.fx.parts that return SnappingModel.SnappingLocation Modifier and Type Method Description SnappingModel.SnappingLocation
SnappingFeedbackPart. getSnappingLocation()
Returns theSnappingModel.SnappingLocation
for which feedback is visualized by thisSnappingFeedbackPart
.Methods in org.eclipse.gef.mvc.fx.parts with parameters of type SnappingModel.SnappingLocation Modifier and Type Method Description void
SnappingFeedbackPart. setSnappingLocation(SnappingModel.SnappingLocation snappingLocation)
Sets theSnappingModel.SnappingLocation
for this feedback part to the given value. -
Uses of SnappingModel.SnappingLocation in org.eclipse.gef.mvc.fx.providers
Methods in org.eclipse.gef.mvc.fx.providers that return types with arguments of type SnappingModel.SnappingLocation Modifier and Type Method Description java.util.List<SnappingModel.SnappingLocation>
BoundsSnappingLocationProvider. getHorizontalSnappingLocations(IContentPart<? extends javafx.scene.Node> part)
java.util.List<SnappingModel.SnappingLocation>
CenterSnappingLocationProvider. getHorizontalSnappingLocations(IContentPart<? extends javafx.scene.Node> part)
java.util.List<SnappingModel.SnappingLocation>
ConnectionSnappingLocationProvider. getHorizontalSnappingLocations(IContentPart<? extends javafx.scene.Node> part)
java.util.List<SnappingModel.SnappingLocation>
ISnappingLocationProvider. getHorizontalSnappingLocations(IContentPart<? extends javafx.scene.Node> part)
Returns the horizontalSnappingModel.SnappingLocation
s for the givenIContentPart
.java.util.List<SnappingModel.SnappingLocation>
TopLeftSnappingLocationProvider. getHorizontalSnappingLocations(IContentPart<? extends javafx.scene.Node> part)
protected java.util.List<SnappingModel.SnappingLocation>
BoundsSnappingLocationProvider. getSnappingLocations(IContentPart<? extends javafx.scene.Node> part, javafx.geometry.Orientation orient, double... ratios)
Iterates over the given ratios and interpolates positions within the bounds for the individual ratios.protected java.util.List<SnappingModel.SnappingLocation>
ConnectionSnappingLocationProvider. getSnappingLocations(IContentPart<? extends javafx.scene.Node> part, javafx.geometry.Orientation orientation)
ReturnsSnappingModel.SnappingLocation
s with givenOrientation
for theConnectionSnappingLocationProvider.getConnection(IContentPart)
of the givenIContentPart
.java.util.List<SnappingModel.SnappingLocation>
BoundsSnappingLocationProvider. getVerticalSnappingLocations(IContentPart<? extends javafx.scene.Node> part)
java.util.List<SnappingModel.SnappingLocation>
CenterSnappingLocationProvider. getVerticalSnappingLocations(IContentPart<? extends javafx.scene.Node> part)
java.util.List<SnappingModel.SnappingLocation>
ConnectionSnappingLocationProvider. getVerticalSnappingLocations(IContentPart<? extends javafx.scene.Node> part)
java.util.List<SnappingModel.SnappingLocation>
ISnappingLocationProvider. getVerticalSnappingLocations(IContentPart<? extends javafx.scene.Node> part)
Returns the verticalSnappingModel.SnappingLocation
s for the givenIContentPart
.java.util.List<SnappingModel.SnappingLocation>
TopLeftSnappingLocationProvider. getVerticalSnappingLocations(IContentPart<? extends javafx.scene.Node> part)
-