public class TemplateBasedClassRenderer extends java.lang.Object implements AtomicVertexRenderer
AtomicVertex with 
 ClassAttributes. The renderer is based on a 
 java.text.MessageFormat template. The variables in the
 template have the following meaning:
 | Variable index | Description | 
|---|---|
| 0 | fully-qualified class name | 
| 1 | class type | 
| 2 | size of the class file in bytes | 
| 3 | true if inner class otherwise false | 
| 4 | Number of incoming arcs | 
| 5 | Number of outgoing arcs to other vertices in the graph | 
| 6 | Number of outgoing arcs to external vertices | 
| 7 | Layer index | 
| 8 | Name of the cycle or empty string | 
| 9 | Source of class file if known | 
| Constructor and Description | 
|---|
| TemplateBasedClassRenderer(java.lang.String template)Creates an instance for the specified template. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | render(AtomicVertex vertex,
      StrongComponent cycle,
      int layerIndex)Renderes the specified vertex. | 
public TemplateBasedClassRenderer(java.lang.String template)
public java.lang.String render(AtomicVertex vertex, StrongComponent cycle, int layerIndex)
ClassAttributes.render in interface AtomicVertexRenderervertex - Vertex to be rendered.cycle - Cycle to which vertex belongs. Will be
        null if it does not belong to a cycle (i.e.
        a strong component with more than one element).layerIndex - Index of the layer to which vertex
        belongs.