Package classycle.renderer
Class TemplateBasedClassRenderer
java.lang.Object
classycle.renderer.TemplateBasedClassRenderer
- All Implemented Interfaces:
AtomicVertexRenderer
Renderer of an
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 |
- Author:
- Franz-Josef Elmer
-
Constructor Summary
ConstructorsConstructorDescriptionTemplateBasedClassRenderer
(String template) Creates an instance for the specified template. -
Method Summary
Modifier and TypeMethodDescriptionrender
(AtomicVertex vertex, StrongComponent cycle, int layerIndex) Renderes the specified vertex.
-
Constructor Details
-
TemplateBasedClassRenderer
Creates an instance for the specified template.
-
-
Method Details
-
render
Renderes the specified vertex. It is assumed that the vertex attributes are of the typeClassAttributes
.- Specified by:
render
in interfaceAtomicVertexRenderer
- Parameters:
vertex
- Vertex to be rendered.cycle
- Cycle to whichvertex
belongs. Will benull
if it does not belong to a cycle (i.e. a strong component with more than one element).layerIndex
- Index of the layer to whichvertex
belongs.- Returns:
- the rendered vertex.
-