Interface CompositableFigure

All Superinterfaces:
Figure, PropertyBean, StyleableBean, StyleablePropertyBean, TreeNode<Figure>
All Known Implementing Classes:
ArcFigure, BezierPathFigure, CombinedPathFigure, EllipseFigure, GroupFigure, ImageFigure, LabelFigure, LayerFigure, LineConnectionFigure, LineConnectionWithMarkersFigure, LineFigure, PageLabelFigure, PolygonFigure, PolylineFigure, RectangleFigure, RegionFigure, SimpleLabelConnectionFigure, TextAreaFigure, TextFigure

public interface CompositableFigure extends Figure
Provides properties for compositing a figure.

Usage:

 class MyFigureClass implements CompositableFigure {
     public void updateNode(@NonNull RenderContext ctx, Node n) {
         applyCompositableFigureProperties(ctx, n);
     }
 }
 
Author:
Werner Randelshofer