Class UmlGraphLinkTaglet

java.lang.Object
org.tquadrat.foundation.javadoc.UmlGraphLinkTaglet
All Implemented Interfaces:
Taglet

@ClassVersion(sourceVersion="$Id: UmlGraphLinkTaglet.java 1013 2022-02-08 21:30:29Z tquadrat $") @API(status=STABLE, since="0.1.0") public class UmlGraphLinkTaglet extends Object implements Taglet

When this tag is added to the documentation of a class, a UML graph will be created for this class and added to the documentation.

The JavaDoc generation will be serialised on this taglet.

Author:
Thomas Thrien - thomas.thrien@tquadrat.org
Version:
$Id: UmlGraphLinkTaglet.java 1013 2022-02-08 21:30:29Z tquadrat $
Since:
0.1.0
  • Field Details

  • Constructor Details

    • UmlGraphLinkTaglet

      Creates a new UmlGraphLinkTaglet instance.
  • Method Details

    • determineImageFileName

      private static final String determineImageFileName(TypeElement typeElement)
      Determines the image file name based on the name of the given type element. The returned value is not the fully qualified file name, just the last part of it.

      For the class com.bar.MyClass, this method would return the file name doc-files/MyClass.svg.
      Parameters:
      typeElement - The type element.
      Returns:
      The name of the image file that belongs to the given type element.
    • getAllowedLocations

      Specified by:
      getAllowedLocations in interface Taglet
    • getName

      public final String getName()
      Specified by:
      getName in interface Taglet
    • hasParent

      private final boolean hasParent(UMLTypeElement typeElement)
      Checks whether the given type element has at least one parent.

      Interfaces that do not extend another interface are parent-less; Object is the only class that does not have a parent class.
      Parameters:
      typeElement - The type element to examine.
      Returns:
      true if the element has at least one parent, false otherwise.
    • init

      public final void init(DocletEnvironment docletEnvironment, Doclet doclet)
      Specified by:
      init in interface Taglet
    • initInheritance

      private final void initInheritance(UMLTypeElement typeElement)
      Assigns the given type element to its parents.

      This method modifies the cache for the type elements, therefore it requires the lock.
      Parameters:
      typeElement - The type element.
      See Also:
    • isInlineTag

      public final boolean isInlineTag()
      Specified by:
      isInlineTag in interface Taglet
    • layout

      private final void layout(UMLDocument document, UMLTypeElement focusClass, int details)
      Do the layout for the graph.
      Parameters:
      document - The UML document.
      focusClass - The class doc for the focus class.
      details - The level of details for the UMLGraph:
      • 1: only elements should be shown that are relevant for the API
      • 2: all elements should be shown.
    • retrieveParents

      Retrieves the direct parents for the given type.

      As this method potentially modifies the cache, it requires the lock.
      Parameters:
      typeElement - The type element.
      Returns:
      The direct parents for the given type element.
      See Also:
    • toString

      public final String toString(List<? extends DocTree> tags, Element element)
      Specified by:
      toString in interface Taglet