- All Superinterfaces:
AbstractEdge
,AbstractEdge
,AbstractItem
,AbstractItem
,GraphicsEdge
public interface GraphicsEdge extends GraphicsEdge, AbstractEdge
-
Method Summary
Modifier and Type Method Description Brush
brush()
The fill brush of the edge and its markers.MarkerShape
endMarker()
The shape of the edge's end marker.double
endMarkerSize()
The size of the edge's end marker given as multiple of the edge width.void
setBrush(Brush brush)
Sets the fill brush of the item's shape.void
setEndMarker(MarkerShape endMarker)
Changes the shape of the end marker.void
setEndMarkerSize(double endMarkerSize)
Changes the size of the end marker.void
setStartMarker(MarkerShape startMarker)
Changes the shape of the start marker.void
setStartMarkerSize(double startMarkerSize)
Changes the size of the start marker.MarkerShape
startMarker()
The shape of the edge's start marker.double
startMarkerSize()
The size of the edge's start marker given as multiple of the edge width.Methods inherited from interface omix.plugin.motifstamp.writable.AbstractEdge
blur, lineStyle, lineWidth, setDockingPositions, setLineStyle, setLineWidth, setShadow, setStrokeColor, setStrokeStyle, setStrokeWidth, setTransparency, shadow, strokeColor, strokeStyle, strokeWidth, transparency
-
Method Details
-
setBrush
Sets the fill brush of the item's shape.- Parameters:
brush
- the new brush- Throws:
IllegalChangeException
- See Also:
GraphicsEdge.brush()
-
setStartMarker
Changes the shape of the start marker.- Parameters:
startMarker
-- Throws:
IllegalChangeException
- See Also:
GraphicsEdge.startMarker()
-
setEndMarker
Changes the shape of the end marker.- Parameters:
endMarker
-- Throws:
IllegalChangeException
- See Also:
GraphicsEdge.endMarker()
-
setStartMarkerSize
Changes the size of the start marker.- Parameters:
startMarkerSize
-- Throws:
IllegalChangeException
- See Also:
GraphicsEdge.startMarkerSize()
-
setEndMarkerSize
Changes the size of the end marker.- Parameters:
endMarkerSize
-- Throws:
IllegalChangeException
- See Also:
GraphicsEdge.endMarkerSize()
-
endMarker
MarkerShape endMarker()The shape of the edge's end marker. -
startMarker
MarkerShape startMarker()The shape of the edge's start marker. -
startMarkerSize
double startMarkerSize()The size of the edge's start marker given as multiple of the edge width. Minimal value is 1.0. -
endMarkerSize
double endMarkerSize()The size of the edge's end marker given as multiple of the edge width. Minimal value is 1.0. -
brush
Brush brush()The fill brush of the edge and its markers.
-