Class NodeLabelMapper

java.lang.Object
kieker.analysis.architecture.trace.graph.dot.NodeLabelMapper
All Implemented Interfaces:
java.util.function.Function<INode,​java.lang.String>

public class NodeLabelMapper
extends java.lang.Object
implements java.util.function.Function<INode,​java.lang.String>
This class is a Function that maps a INode to a label. The desired format is: container + "::\\n" + "@" + stackDepth + ":" + component + "\\n" + name; <DeploymentContext>::\\n@<StackDepth>:<Component>\\n<FullOperationSignature>
Since:
1.14
Author:
Sören Henning
  • Constructor Summary

    Constructors 
    Constructor Description
    NodeLabelMapper()  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String apply​(INode vertex)  

    Methods inherited from class java.lang.Object

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

    Methods inherited from interface java.util.function.Function

    andThen, compose
  • Constructor Details

  • Method Details

    • apply

      public java.lang.String apply​(INode vertex)
      Specified by:
      apply in interface java.util.function.Function<INode,​java.lang.String>