Package jcckit.graphic
Interface GraphicalCompositeRenderer
-
- All Superinterfaces:
Renderer
- All Known Implementing Classes:
Graphics2DRenderer
public interface GraphicalCompositeRenderer extends Renderer
Interface of allRendererswho render aGraphicalComposite. Note, that a GraphicalCompositeRenderer does not render the element of a GraphicalComposite- Author:
- Franz-Josef Elmer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfinishRendering(GraphicalComposite composite)Finishes rendering of the specified composite.voidstartRendering(GraphicalComposite composite)Starts rendering of the specified composite before its elements are rendererd.
-
-
-
Method Detail
-
startRendering
void startRendering(GraphicalComposite composite)
Starts rendering of the specified composite before its elements are rendererd. Implementations of this method usually obtain theClippingShapefrom composite.
-
finishRendering
void finishRendering(GraphicalComposite composite)
Finishes rendering of the specified composite.
-
-