Class TLcdGXYCompositeRingPainter
- All Implemented Interfaces:
ILcdCloneable,ILcdDeepCloneable,ILcdPropertyChangeSource,ILcdGXYEditor,ILcdGXYEditorProvider,ILcdGXYPainter,ILcdGXYPainterProvider,ILcdGXYPathPainter,Serializable,Cloneable
ILcdCompositeCurve and ILcdRing,
and enables visual editing of editable composite ring objects, i.e. objects that are of type
ILcdEditableCompositeCurve and
ILcdRing, in an ILcdGXYView.
Painting a composite ring
Body
This painter provides support for painting a composite ring object. For each curve of the composite ring,
a painter is retrieved via the set
painter provider.. The retrieved painter is then used
to paint the corresponding ILcdCurve object.
Note that this implementation assumes that a painter can be provided for each curve of the composite ring.
Also, the painter must implement ILcdGXYPathPainter.
Handles
This painter does not define a handle for composite ring objects. However, the handles for
each individual ILcdCurve object are defined by the corresponding painter for that curve.
Snap targets
This painter will process all ILcdCurve objects in the composite ring object
and tries to retrieve a snap target for each curve using the corresponding painter. The first snap target
that is found, is used as snap target for this TLcdGXYCompositeRingPainter.
Styling options
The visualization of the composite ring object is governed by the line style, fill style,
and painter provider set to this painter. The painter provider is responsible
for providing a painter to be used for painting each of the individual
ILcdCurve objects contained in the composite ring object.
Locating a composite ring in a view
Anchor point of a composite ring
When the composite ring object only contains one ILcdCurve object, the anchor
point of that object is used as anchor point for the composite ring. If more ILcdCurve objects
are available, the center point of the bounds, calculated by boundsSFCT, is used.
When is a composite ring touched
The composite ring object is touched when one of the ILcdCurve objects in the
composite ring is touched.
Visually editing and creating a composite ring
Modifying a composite ring
This implementation translates either the touched handle or the entire composite curve for
ILcdGXYEditor.TRANSLATED, and translates the touched sub curve if the user drags with
ILcdGXYEditor.RESHAPED. Note that this behavior relies on the sub curve painter's
isTouched method to distinguish between touching
the curve body and the handles.
Other edit operations are passed onto the first touched sub curve that is successfully edited.
For every shape that has to be edited, an
editor is retrieved via the set editor provider. The retrieved editor
is then used to edit the corresponding ILcdCurve object.
Similarly to the painter provider, the editor provider is responsible
for providing an editor to be used for editing the individual
ILcdCurve objects contained in the composite ring object.
Note that this implementation assumes that an editor can be provided for each shape of the composite ring.
Creating a composite ring
When initializing an composite ring object via interaction through the view, only the last curve
object is edited. The number of user interactions required to complete the initialization is defined by the
editor corresponding to the last ILcdCurve object.
Accepted snap targets
This painter accepts a snap target if at least one of the curve editors returned by the curve editor provider accepts the snap target.
- Since:
- 9.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intConstant value indicating that the anchor point should be chosen at the anchor point of the first possible ring.static final intConstant value indicating that the anchor point should be chosen as the focus point of the composite ring.static final intConstant value indicating that the anchor point should be chosen in the middle of the bounds, calculated byboundsSFCT.static final intConstant value indicating that the anchor point should be chosen as the anchor point of the only ring in the composite ring.Fields inherited from class com.luciad.view.gxy.painter.ALcdGXYAreaPainter
FILLED, OUTLINED, OUTLINED_FILLEDFields inherited from class com.luciad.view.gxy.ALcdGXYPainter
defaultCreationFillStyle, defaultCreationLineStyle, defaultFillStyle, defaultLineStyle, fWorkBoundsFields inherited from interface com.luciad.view.gxy.ILcdGXYEditor
CREATING, END_CREATION, RESHAPED, START_CREATION, TRANSLATEDFields inherited from interface com.luciad.view.gxy.ILcdGXYPainter
BODY, CREATING, DEFAULT, HANDLES, RESHAPING, SELECTED, SNAPS, TRANSLATING -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a defaultTLcdGXYCompositeRingPainterand sets the display name to "CompositeRing".TLcdGXYCompositeRingPainter(ILcdGXYPainterProvider<ILcdGXYPathPainter> aCurveGXYPainterProvider, ILcdGXYEditorProvider aCurveGXYEditorProvider) Constructs a defaultTLcdGXYCompositeRingPainterwith the specified painter and editor, and sets the display name to "CompositeRing".TLcdGXYCompositeRingPainter(ILcdGXYPainterProvider<ILcdGXYPathPainter> aCurveGXYPainterProvider, ILcdGXYEditorProvider aCurveGXYEditorProvider, ILcdCurveConnectorProvider aCurveConnectorProvider) Constructs a defaultTLcdGXYCompositeRingPainterwith the specified painter, editor and connector provider, and sets the display name to "CompositeRing". -
Method Summary
Modifier and TypeMethodDescriptionbooleanacceptSnapTarget(Graphics aGraphics, ILcdGXYContext aGXYContext) Determines whether a snap target should be accepted or not.voidanchorPointSFCT(Graphics aGraphics, int aRenderMode, ILcdGXYContext aGXYContext, Point aPointSFCT) Moves the specifiedaPointSFCTto the anchor point of theILcdRingobject.booleanappendAWTPath(ILcdGXYContext aGXYContext, int aRenderMode, ILcdAWTPath aAWTPathSFCT) Appends a discretized representation in view coordinates to the given path.booleanappendGeneralPath(ILcdGXYContext aGXYContext, int aRenderMode, ILcdGeneralPath aGeneralPathSFCT) Appends a discretized representation in world coordinates to the given path.voidboundsSFCT(Graphics aGraphics, int aRenderMode, ILcdGXYContext aGXYContext, ILcd2DEditableBounds aBoundsSFCT) Sets the supplied bounds (in view coordinates, pixels) so that it encompasses the representation of the object in the given mode taking into account the given context.clone()MakesObject.clone()public.Returns a deep clone of this Object.booleanedit(Graphics aGraphics, int aRenderMode, ILcdGXYContext aGXYContext) This implementation translates either the touched handle or the entire composite curve forILcdGXYEditor.TRANSLATED, and translates the touched sub curve if the user drags withILcdGXYEditor.RESHAPED.intReturns the location of the anchor point (by default: ONE_RING_ANCHOR_POINT).intReturns the number of user interactions required to complete the initialization of theILcdRingobject set to this editor.getCursor(Graphics aGraphics, int aRenderMode, ILcdGXYContext aGXYContext) Returns aCursorthat clarifies the render mode and context this painter is operating in.Returns the curve provider used to provider a curve connector for each shape inside the composite ring.Returns the editor provider used to provide an editor for each shape inside the composite ring.Returns the painter provider used to provide a painter for each shape inside the composite ring.getGXYEditor(Object aObject) Returns this instance as editor for editing the specifiedObject.Returns the Object for which the representation is currently being handled by this painter.booleanReturns whether caching is used when painting this painter's object.booleanisTouched(Graphics aGraphics, int aMode, ILcdGXYContext aGXYContext) Checks if the representation of the object in the given mode is touched at the location as defined in the supplied context.voidpaint(Graphics aGraphics, int aRenderMode, ILcdGXYContext aGXYContext) Displays the representation of the object in the given mode on the Graphics passed, taking into account the context passed.voidsetAnchorPointLocation(int aAnchorPointLocation) Sets the preferred anchor point location.voidsetCurveConnectorProvider(ILcdCurveConnectorProvider aCurveConnectorProvider) Sets a connector provider to ensure connectivity during editing operations.voidsetCurveGXYEditorProvider(ILcdGXYEditorProvider aCurveGXYEditorProvider) Sets the editor provider used to provide an editor for each shape inside the composite ring.voidsetCurveGXYPainterProvider(ILcdGXYPainterProvider<ILcdGXYPathPainter> aCurveGXYPainterProvider) Sets the painter provider used to provide a painter for each shape inside the composite ring.voidSets the Object for which the representation shall be handled by this painter.voidsetPaintCache(boolean aPaintCache) Turns caching of the representation of the object on or off.snapTarget(Graphics aGraphics, ILcdGXYContext aGXYContext) Returns the first snap target that was found by the painters of the shapes inside the composite ring object.booleansupportSnap(Graphics aGraphics, ILcdGXYContext aGXYContext) Supports snapping when at least one of the painters of the shapes inside the composite ring object supports snapping.Methods inherited from class com.luciad.view.gxy.painter.ALcdGXYAreaPainter
getEditMode, getFillStyle, getLineStyle, getMode, getSelectionMode, setEditMode, setFillStyle, setLineStyle, setMode, setSelectionModeMethods inherited from class com.luciad.view.gxy.ALcdGXYPainter
addPropertyChangeListener, firePropertyChangeEvent, firePropertyChangeEvent, getDisplayName, getGXYPainter, isTraceOn, removePropertyChangeListener, setClassTraceOn, setDisplayName, setTraceOnMethods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.luciad.view.gxy.ILcdGXYEditor
getDisplayNameMethods inherited from interface com.luciad.view.gxy.ILcdGXYPainter
getDisplayNameMethods inherited from interface com.luciad.util.ILcdPropertyChangeSource
addPropertyChangeListener, removePropertyChangeListener
-
Field Details
-
MIDDLE_OF_BOUNDS
public static final int MIDDLE_OF_BOUNDSConstant value indicating that the anchor point should be chosen in the middle of the bounds, calculated byboundsSFCT.- See Also:
-
FOCUS_POINT
public static final int FOCUS_POINTConstant value indicating that the anchor point should be chosen as the focus point of the composite ring. This focus point is first retrieved in model coordinates, and then transformed to view coordinates. If this point cannot be retrieved, theMIDDLE_OF_BOUNDSmethod is used.- See Also:
-
ONE_RING_ANCHOR_POINT
public static final int ONE_RING_ANCHOR_POINTConstant value indicating that the anchor point should be chosen as the anchor point of the only ring in the composite ring. If more than one ring exists in the composite ring, theMIDDLE_OF_BOUNDSmethod is used.- See Also:
-
FIRST_POSSIBLE_RING_ANCHOR_POINT
public static final int FIRST_POSSIBLE_RING_ANCHOR_POINTConstant value indicating that the anchor point should be chosen at the anchor point of the first possible ring. If this point is invalid, then the second ring is used, and so on... If no valid anchor point can be found, theMIDDLE_OF_BOUNDSmethod is used.- See Also:
-
-
Constructor Details
-
TLcdGXYCompositeRingPainter
public TLcdGXYCompositeRingPainter()Constructs a defaultTLcdGXYCompositeRingPainterand sets the display name to "CompositeRing". The painter provider and the editor provider are not initialized and are required to be set using the methodssetCurveGXYPainterProvider(com.luciad.view.gxy.ILcdGXYPainterProvider)andsetCurveGXYEditorProvider(com.luciad.view.gxy.ILcdGXYEditorProvider)respectively.To ensure connectivity of the composite ring during editing operations, an instance of
TLcdDefaultCurveConnectorProvideris used asILcdCurveConnectorProvider. Custom implementations can be set throughsetCurveConnectorProvider(com.luciad.shape.constraints.ILcdCurveConnectorProvider).- See Also:
-
TLcdGXYCompositeRingPainter
public TLcdGXYCompositeRingPainter(ILcdGXYPainterProvider<ILcdGXYPathPainter> aCurveGXYPainterProvider, ILcdGXYEditorProvider aCurveGXYEditorProvider) Constructs a defaultTLcdGXYCompositeRingPainterwith the specified painter and editor, and sets the display name to "CompositeRing".To ensure connectivity of the composite ring during editing operations, an instance of
TLcdDefaultCurveConnectorProvideris used asILcdCurveConnectorProvider. Custom implementations can be set throughsetCurveConnectorProvider(com.luciad.shape.constraints.ILcdCurveConnectorProvider).- Parameters:
aCurveGXYPainterProvider- the painter provider for theILcdCurveobjects inside the composite ring object.aCurveGXYEditorProvider- the editor provider for theILcdCurveobjects inside the composite ring object.
-
TLcdGXYCompositeRingPainter
public TLcdGXYCompositeRingPainter(ILcdGXYPainterProvider<ILcdGXYPathPainter> aCurveGXYPainterProvider, ILcdGXYEditorProvider aCurveGXYEditorProvider, ILcdCurveConnectorProvider aCurveConnectorProvider) Constructs a defaultTLcdGXYCompositeRingPainterwith the specified painter, editor and connector provider, and sets the display name to "CompositeRing".- Parameters:
aCurveGXYPainterProvider- the painter provider for theILcdCurveobjects inside the composite ring object.aCurveGXYEditorProvider- the editor provider for theILcdCurveobjects inside the composite ring object.aCurveConnectorProvider- the connector provider to ensure connectivity of the composite ring during editing operations.
-
-
Method Details
-
getAnchorPointLocation
public int getAnchorPointLocation()Returns the location of the anchor point (by default: ONE_RING_ANCHOR_POINT).- Returns:
- one of
MIDDLE_OF_BOUNDS,FOCUS_POINT,ONE_RING_ANCHOR_POINT,FIRST_POSSIBLE_RING_ANCHOR_POINT.
-
setAnchorPointLocation
public void setAnchorPointLocation(int aAnchorPointLocation) Sets the preferred anchor point location.- Parameters:
aAnchorPointLocation- one ofMIDDLE_OF_BOUNDS,FOCUS_POINT,ONE_RING_ANCHOR_POINT,FIRST_POSSIBLE_RING_ANCHOR_POINT.
-
paint
Displays the representation of the object in the given mode on the Graphics passed, taking into account the context passed.This implementation will retrieve a painter for all
ILcdCurveobjects inside the composite ring object using the setpainter providerand will use that painter to paint the corresponding shape.- Specified by:
paintin interfaceILcdGXYPainter- Parameters:
aGraphics- The graphics to paint the object on.aRenderMode- The mode to render the object in.aGXYContext- The context to render the object in.
-
isTouched
Description copied from interface:ILcdGXYPainterChecks if the representation of the object in the given mode is touched at the location as defined in the supplied context.The location that must be taken into account to check whether the representation is touched can be retrieved from the context passed with the methods
ILcdGXYContext.getX()andILcdGXYContext.getY(). If the check is part of an ongoing operation of user interaction, for example, when the mouse is being dragged, the location of the start of the operation can also be taken into account using the methodsILcdGXYContext.getDeltaX()andILcdGXYContext.getDeltaY(). The context contains the transformations required to convert this location into the equivalent location in model space. Implementations of this interface usually follow either of the following patterns:- transform the location of the interaction back to model space and compare the coordinates with the object in model space.
- transform the location to world space and compare with a world representation of the object. This forces the painter into caching a world representation of the object. Caching a view representation of an object is not very practical as it would have to change whenever the view's scale changes or when it is panned. A world representation of an object only changes when the view's XYWorldReference changes, which happens less frequently.
As the mode influences the way an object is represented, it must also be taken into account when checking whether that representation is being touched. When the mode contains CREATING, RESHAPING or TRANSLATING which indicate that the object must be represented in a state for an ongoing operation, the location of the start of the operation may be taken into account as mentioned above. The painting result can take into account multiple locations, to respond to, for example, multi-touch input. When the mode contains SELECTED, the painter should also check if the non-selected representation is touched, since these are always painted on top of each other.
The
boundsSFCTis often used to speed up the performance of this method as a location outside these bounds can never touch the representation of the object.Note that this method does not give an indication of what part of the object is touched. It is up to the painter implementations to provide methods to make this distinction. The method does also not indicate what sensitivity must be applied when checking if an object is touched. It is up to the implementation to decide what should be the maximum distance between the location given in the context and the closest relevant point or area of the representation of the object.
- Specified by:
isTouchedin interfaceILcdGXYPainter- Parameters:
aGraphics- the Graphics on which the representation of the object is paintedaMode- the mode the object is represented inaGXYContext- contains the location of the interaction and the transformations to convert this location into model coordinates- Returns:
- true if the representation of the object in the given mode is touched by the location as defined in the context passed, false otherwise
- See Also:
-
getCursor
Returns aCursorthat clarifies the render mode and context this painter is operating in. When no specificCursoris required,nullis returned.- Specified by:
getCursorin interfaceILcdGXYPainter- Overrides:
getCursorin classALcdGXYPainter- Parameters:
aGraphics- The graphics on which the object is painted.aRenderMode- The mode to render the object in.aGXYContext- The context in which the object is rendered.- Returns:
- a cursor to indicate the type of operating mode and context. Returns
nullif no particular cursor is required.
-
getGXYEditor
Returns this instance as editor for editing the specifiedObject. If thisObjectis not the same as theObjectset to this painter, thesetObject(Object)method is called to update the object set to the painter.- Specified by:
getGXYEditorin interfaceILcdGXYEditorProvider- Parameters:
aObject- the object to be edited.- Returns:
- this instance as editor for editing the specified
Object.
-
setObject
Description copied from interface:ILcdGXYPainterSets the Object for which the representation shall be handled by this painter.Setting the object on the painter may have an effect on the internal state of the painter, for example, the color to use.
When the object is set to a painter, the context parameter in subsequent calls to methods in this class must contain a layer that contains this object and for which the painter for this object is this painter.
- Specified by:
setObjectin interfaceILcdGXYEditor- Specified by:
setObjectin interfaceILcdGXYPainter- Parameters:
aObject- the object for which the representation shall be handled by this painter.- See Also:
-
getObject
Description copied from interface:ILcdGXYPainterReturns the Object for which the representation is currently being handled by this painter.- Specified by:
getObjectin interfaceILcdGXYEditor- Specified by:
getObjectin interfaceILcdGXYPainter- Returns:
- the Object for which the representation is currently being handled by this painter.
- See Also:
-
setCurveGXYPainterProvider
public void setCurveGXYPainterProvider(ILcdGXYPainterProvider<ILcdGXYPathPainter> aCurveGXYPainterProvider) Sets the painter provider used to provide a painter for each shape inside the composite ring.- Parameters:
aCurveGXYPainterProvider- the painter provider for theILcdCurveobjects inside the composite ring object.- See Also:
-
getCurveGXYPainterProvider
Returns the painter provider used to provide a painter for each shape inside the composite ring.- Returns:
- the painter provider used to provide a painter for each shape inside the composite ring.
- See Also:
-
setCurveGXYEditorProvider
Sets the editor provider used to provide an editor for each shape inside the composite ring.- Parameters:
aCurveGXYEditorProvider- the editor provider for theILcdCurveobjects inside the composite ring object.- See Also:
-
getCurveGXYEditorProvider
Returns the editor provider used to provide an editor for each shape inside the composite ring.- Returns:
- the editor provider used to provide an editor for each shape inside the composite ring.
- See Also:
-
setCurveConnectorProvider
Sets a connector provider to ensure connectivity during editing operations.- Parameters:
aCurveConnectorProvider- a connector provider that returns a connector for the curve types encountered in every composite ring.- See Also:
-
getCurveConnectorProvider
Returns the curve provider used to provider a curve connector for each shape inside the composite ring.- Returns:
- the curve provider used to provider a curve connector for each shape inside the composite ring.
- See Also:
-
setPaintCache
public void setPaintCache(boolean aPaintCache) Turns caching of the representation of the object on or off. Caching greatly reduces the time to paint an object but requires more memory. The representation of an object can only be cached for objects which implementILcdCache. By default, caching is turned on.- Parameters:
aPaintCache- A flag indicating whether to use caching when painting an object.- See Also:
-
getPaintCache
public boolean getPaintCache()Returns whether caching is used when painting this painter's object.- Returns:
trueif caching is used to paint this painter's object,falseotherwise.- See Also:
-
edit
This implementation translates either the touched handle or the entire composite curve for
ILcdGXYEditor.TRANSLATED, and translates the touched sub curve if the user drags withILcdGXYEditor.RESHAPED. Note that this behavior relies on the sub curve painter'sisTouchedmethod to distinguish between touching the curvebodyand thehandles. Other edit operations are passed onto the first touched sub curve that is successfully edited. For every shape that has to be edited, an editor is retrieved via the seteditor provider. The retrieved editor is then used to edit the correspondingILcdCurveobject.In the creation render modes, only the last
ILcdCurveobject is edited.- Specified by:
editin interfaceILcdGXYEditor- Parameters:
aGraphics- The graphics to edit the object on.aRenderMode- The mode to render the object in.aGXYContext- The context to render the object in.- Returns:
- true if the object has changed when this method returns, false otherwise.
- See Also:
-
anchorPointSFCT
public void anchorPointSFCT(Graphics aGraphics, int aRenderMode, ILcdGXYContext aGXYContext, Point aPointSFCT) throws TLcdNoBoundsException Moves the specified
aPointSFCTto the anchor point of theILcdRingobject. If the ring only contains one object, the anchor point of that object is used. When more shapes are available in the composite ring, the center point of the bounds, calculated byboundsSFCT, is used- Specified by:
anchorPointSFCTin interfaceILcdGXYPainter- Overrides:
anchorPointSFCTin classALcdGXYPainter- Parameters:
aGraphics- The graphics to paint the object on.aRenderMode- The mode to render the object in.aGXYContext- The context to render the object in.aPointSFCT- The point that needs to be updated.- Throws:
TLcdNoBoundsException- if the composite ring object doesn't have a valid anchor point, e.g. if it is always invisible in the current projection.- See Also:
-
supportSnap
Supports snapping when at least one of the painters of the shapes inside the composite ring object supports snapping.
- Specified by:
supportSnapin interfaceILcdGXYPainter- Overrides:
supportSnapin classALcdGXYPainter- Parameters:
aGraphics- the graphics on which is worked.aGXYContext- the context of the snapping.- Returns:
trueif one of the painters for the shapes inside the composite ring object supports snapping,falseotherwise.
-
snapTarget
Returns the first snap target that was found by the painters of the shapes inside the composite ring object. If no point was touched,
nullwill be returned.- Specified by:
snapTargetin interfaceILcdGXYPainter- Overrides:
snapTargetin classALcdGXYPainter- Parameters:
aGraphics- the graphics on which is worked.aGXYContext- the context of the snapping.- Returns:
- the first snap target that was found by the painters of the shapes inside the
composite ring object,
nullotherwise. - See Also:
-
boundsSFCT
public void boundsSFCT(Graphics aGraphics, int aRenderMode, ILcdGXYContext aGXYContext, ILcd2DEditableBounds aBoundsSFCT) throws TLcdNoBoundsException Sets the supplied bounds (in view coordinates, pixels) so that it encompasses the representation of the object in the given mode taking into account the given context.If this method returns without exception the bounds argument must encompass the representation of the object. A point outside the bounds will not be contained within the painted object.
The bounds returned in this method can be seen as the equivalent in the view space of the bounds in the model space for
ILcdBoundedobjects.- Specified by:
boundsSFCTin interfaceILcdGXYPainter- Parameters:
aGraphics- The graphics to paint the object on.aRenderMode- The mode to render the object in.aGXYContext- The context to render the object in.aBoundsSFCT- The bounds to update.- Throws:
TLcdNoBoundsException- if no bounds can be determined for the representation of the object. This can happen when the object does not have a representation in the given context, for example when it is located in a part of the world which is not visible in the current view.- See Also:
-
getCreationClickCount
public int getCreationClickCount()Returns the number of user interactions required to complete the initialization of theILcdRingobject set to this editor. This method will return the number of user interactions required by the editor corresponding to the lastILcdCurveobject.- Specified by:
getCreationClickCountin interfaceILcdGXYEditor- Returns:
- the number of user interactions required by the editor corresponding to the last
ILcdCurveobject.
-
acceptSnapTarget
Determines whether a snap target should be accepted or not. A snap target is accepted if at least one of the curve editors returned by the curve editor provider accepts the snap target.
- Specified by:
acceptSnapTargetin interfaceILcdGXYEditor- Parameters:
aGraphics- the graphics on which the snap target should be checked.aGXYContext- the context in which the snap target should be checked.- Returns:
trueif at least one of the curve editors returned by the curve editor provider accepts the snap target,falseotherwise.- See Also:
-
appendAWTPath
Description copied from interface:ILcdGXYPathPainterAppends a discretized representation in view coordinates to the given path.- Specified by:
appendAWTPathin interfaceILcdGXYPathPainter- Parameters:
aGXYContext- the graphics contextaRenderMode- the rendering modeaAWTPathSFCT- the path to append to- Returns:
- true if a discretization of the shape could be successfully appended to the path
-
appendGeneralPath
public boolean appendGeneralPath(ILcdGXYContext aGXYContext, int aRenderMode, ILcdGeneralPath aGeneralPathSFCT) Description copied from interface:ILcdGXYPathPainterAppends a discretized representation in world coordinates to the given path.- Specified by:
appendGeneralPathin interfaceILcdGXYPathPainter- Parameters:
aGXYContext- the graphics contextaRenderMode- the rendering modeaGeneralPathSFCT- the path to append to- Returns:
- true if a discretization of the shape could be successfully appended to the path
-
clone
Description copied from interface:ILcdDeepCloneableReturns a deep clone of this Object. An object dictionary is used to keep track of all objects of the original Object graph, for which a clone has already been created. The dictionary should be ajava.util.Map, using reference-equality instead of object-equality when comparing keys (such as thejava.util.IdentityHashMap). It contains as keys the objects in the original object graph that have already been cloned, and as values their corresponding clone. The Object returned by this method should fulfill the following conditions, as specified in the generalObject.clone()contract:this.clone(aObjectDictionary) != thisthis.clone(aObjectDictionary).getClass() == this.getClass()this.clone(aObjectDictionary).equals(this)
- If a clone of this Object already exists in the object dictionary before this
clonemethod is called, this method shall return that clone:aObjectDictionary.get(this) == null || aObjectDictionary.get(this) == this.clone(aObjectDictionary) - The object dictionary shall contain the resulting clone, after this
clone method has completed:this.clone(aObjectDictionary) == aObjectDictionary.get(this)
- Specified by:
clonein interfaceILcdDeepCloneable- Parameters:
aObjectDictionary- the Object dictionary that keeps track of the objects for which a clone has already been made, and their corresponding clone Object.- Returns:
- a deep clone of this Object that fulfills the conditions described above.
-
clone
Description copied from interface:ILcdCloneableMakes
When for example extending fromObject.clone()public.java.lang.Object, it can be implemented like this:public Object clone() { try { return super.clone(); } catch ( CloneNotSupportedException e ) { // Cannot happen: extends from Object and implements Cloneable (see also Object.clone) throw new RuntimeException( e ); } }- Specified by:
clonein interfaceILcdCloneable- Specified by:
clonein interfaceILcdGXYEditorProvider- Specified by:
clonein interfaceILcdGXYPainterProvider- Overrides:
clonein classALcdGXYAreaPainter- Returns:
- a clone of this painter provider.
- See Also:
-