JUNG グラフの注釈に関するドキュメントが見つからないようです。私がまとめたのは次のとおりです。
AnnotationRenderer renderer = new AnnotationRenderer();
AnnotationPaintable annotate = new AnnotationPaintable(viewer.getRenderContext(), renderer);
Shape square = new Rectangle(0, 0, 50, 50);
Annotation<Shape> a = new Annotation<Shape>(square, Annotation.Layer.UPPER, null, true,
new Point2D.Double(0, 0));
annotate.add(a);
これを取得して、AnnotationPaintable オブジェクト内で実際の注釈の描画を開始するにはどうすればよいですか?