Class AnnotationPaintable
- java.lang.Object
-
- org.jungrapht.visualization.annotations.AnnotationPaintable
-
- All Implemented Interfaces:
VisualizationServer.Paintable
public class AnnotationPaintable extends Object implements VisualizationServer.Paintable
handles the actual drawing of annotations- Author:
- Tom Nelson - tomnelson@dev.java.net
-
-
Field Summary
Fields Modifier and Type Field Description protected AnnotationRenderer
annotationRenderer
protected Set<Annotation>
annotations
protected AffineTransformer
layoutTransformer
protected RenderContext<?,?>
rc
-
Constructor Summary
Constructors Constructor Description AnnotationPaintable(RenderContext<?,?> rc, AnnotationRenderer annotationRenderer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(Annotation<?> annotation)
Set<Annotation>
getAnnotations()
void
paint(Graphics g)
Component
prepareRenderer(RenderContext<?,?> rc, AnnotationRenderer annotationRenderer, Object value)
void
remove(Annotation<?> annotation)
boolean
useTransform()
-
-
-
Field Detail
-
annotations
protected Set<Annotation> annotations
-
annotationRenderer
protected AnnotationRenderer annotationRenderer
-
rc
protected RenderContext<?,?> rc
-
layoutTransformer
protected AffineTransformer layoutTransformer
-
-
Constructor Detail
-
AnnotationPaintable
public AnnotationPaintable(RenderContext<?,?> rc, AnnotationRenderer annotationRenderer)
-
-
Method Detail
-
add
public void add(Annotation<?> annotation)
-
remove
public void remove(Annotation<?> annotation)
-
getAnnotations
public Set<Annotation> getAnnotations()
- Returns:
- the annotations
-
paint
public void paint(Graphics g)
- Specified by:
paint
in interfaceVisualizationServer.Paintable
-
prepareRenderer
public Component prepareRenderer(RenderContext<?,?> rc, AnnotationRenderer annotationRenderer, Object value)
-
useTransform
public boolean useTransform()
- Specified by:
useTransform
in interfaceVisualizationServer.Paintable
-
-