Class AbstractDependencyGraphFormatterVisitor<T extends ISystemModelElement>

java.lang.Object
kieker.tools.trace.analysis.filter.visualization.dependencyGraph.AbstractDependencyGraphFormatterVisitor<T>
Type Parameters:
T - subtype of an ISystemModelElement
All Implemented Interfaces:
AbstractGraph.IGraphVisitor<DependencyGraphNode<T>,​WeightedBidirectionalDependencyGraphEdge<T>>

@Deprecated
public abstract class AbstractDependencyGraphFormatterVisitor<T extends ISystemModelElement>
extends java.lang.Object
implements AbstractGraph.IGraphVisitor<DependencyGraphNode<T>,​WeightedBidirectionalDependencyGraphEdge<T>>
Deprecated.
1.15 ported to teetime
Abstract base class for dependency-graph-formatting visitors. This base class already provides the common algorithm for formatting edges.
Since:
1.6
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected java.lang.StringBuilder builder
    Deprecated.
     
    protected boolean includeWeights
    Deprecated.
    The flag determining whether to include weights or not.
    protected boolean plotLoops
    Deprecated.
    The flag determining whether to plot loops or not.
    protected boolean useShortLabels
    Deprecated.
    The flag determining whether to use short labels or not.
  • Constructor Summary

    Constructors 
    Constructor Description
    AbstractDependencyGraphFormatterVisitor​(java.lang.StringBuilder builder, boolean includeWeights, boolean plotLoops, boolean useShortLabels)
    Deprecated.
    Creates a new formatter visitor using the given arguments.
  • Method Summary

    Modifier and Type Method Description
    void visitEdge​(WeightedBidirectionalDependencyGraphEdge<T> edge)
    Deprecated.
    Call-back operation that is invoked when an edge is encountered during graph traversal.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface kieker.tools.trace.analysis.filter.visualization.graph.AbstractGraph.IGraphVisitor

    visitVertex
  • Field Details

    • builder

      protected final java.lang.StringBuilder builder
      Deprecated.
    • includeWeights

      protected final boolean includeWeights
      Deprecated.
      The flag determining whether to include weights or not.
    • plotLoops

      protected final boolean plotLoops
      Deprecated.
      The flag determining whether to plot loops or not.
    • useShortLabels

      protected final boolean useShortLabels
      Deprecated.
      The flag determining whether to use short labels or not.
  • Constructor Details

    • AbstractDependencyGraphFormatterVisitor

      public AbstractDependencyGraphFormatterVisitor​(java.lang.StringBuilder builder, boolean includeWeights, boolean plotLoops, boolean useShortLabels)
      Deprecated.
      Creates a new formatter visitor using the given arguments.
      Parameters:
      builder - The string builder to send the generated output to
      includeWeights - Indicates whether weights should be printed at the edges
      plotLoops - Indicates whether self-loops should be displayed
      useShortLabels - Indicates whether short labels should be used
  • Method Details