Package org.eclipse.gef.mvc.fx.parts
Class DefaultHoverFeedbackPartFactory
java.lang.Object
org.eclipse.gef.mvc.fx.parts.DefaultHoverFeedbackPartFactory
- All Implemented Interfaces:
IFeedbackPartFactory
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionList<IFeedbackPart<? extends Node>>
createFeedbackParts
(List<? extends IVisualPart<? extends Node>> targets, Map<Object, Object> contextMap) Creates specificIFeedbackPart
s for the given targets.
-
Field Details
-
HOVER_FEEDBACK_COLOR_PROVIDER
The binding name for the primary selection color.- See Also:
-
HOVER_FEEDBACK_GEOMETRY_PROVIDER
The role name for theProvider<IGeometry>
that will be used to generate hover feedback.- See Also:
-
DEFAULT_HOVER_FEEDBACK_COLOR
Defines the defaultColor
for hover feedback.
-
-
Constructor Details
-
DefaultHoverFeedbackPartFactory
public DefaultHoverFeedbackPartFactory()
-
-
Method Details
-
createFeedbackParts
public List<IFeedbackPart<? extends Node>> createFeedbackParts(List<? extends IVisualPart<? extends Node>> targets, Map<Object, Object> contextMap) Description copied from interface:IFeedbackPartFactory
Creates specificIFeedbackPart
s for the given targets. As additional information might be needed by theIFeedbackPartFactory
to identify the creation context, an additional contextMap is passed in upon creation.- Specified by:
createFeedbackParts
in interfaceIFeedbackPartFactory
- Parameters:
targets
- The targetIVisualPart
s for which feedback is to be created.contextMap
- A map in which additional context information for the creation process can be placed.- Returns:
- A list of
IFeedbackPart
s that are to be used to indicate feedback for the given targets.
-