Class CustomElement


public final class CustomElement
extends GroupableElement
Represents a custom element.
  • Constructor Details

  • Method Details

    • getParent

      public Element getParent()
      Description copied from class: Element
      Gets the parent of this element.
      Specified by:
      getParent in class Element
      Returns:
      the parent Element, or null if this element doesn't have a parent (i.e. a Person or SoftwareSystem)
    • getRequiredTags

      protected java.util.Set<java.lang.String> getRequiredTags()
      Specified by:
      getRequiredTags in class ModelItem
    • getCanonicalName

      public java.lang.String getCanonicalName()
      Specified by:
      getCanonicalName in class ModelItem
    • getMetadata

      public java.lang.String getMetadata()
    • setMetadata

      public void setMetadata​(java.lang.String metadata)
    • uses

      @Nullable public Relationship uses​(@Nonnull Element destination, java.lang.String description)
      Adds a unidirectional "uses" style relationship between this custom element and the specified element.
      Parameters:
      destination - the target of the relationship
      description - a description of the relationship (e.g. "uses", "gets data from", "sends data to")
      Returns:
      the relationship that has just been created and added to the model
    • uses

      @Nullable public Relationship uses​(@Nonnull Element destination, java.lang.String description, java.lang.String technology)
      Adds a unidirectional "uses" style relationship between this custom element and the specified element.
      Parameters:
      destination - the target of the relationship
      description - a description of the relationship (e.g. "uses", "gets data from", "sends data to")
      technology - the technology details (e.g. JSON/HTTPS)
      Returns:
      the relationship that has just been created and added to the model
    • uses

      @Nullable public Relationship uses​(@Nonnull Element destination, java.lang.String description, java.lang.String technology, InteractionStyle interactionStyle)
      Adds a unidirectional "uses" style relationship between this custom element and the specified element.
      Parameters:
      destination - the target of the relationship
      description - a description of the relationship (e.g. "uses", "gets data from", "sends data to")
      technology - the technology details (e.g. JSON/HTTPS)
      interactionStyle - the interaction style (sync vs async)
      Returns:
      the relationship that has just been created and added to the model
    • uses

      @Nullable public Relationship uses​(@Nonnull Element destination, java.lang.String description, java.lang.String technology, InteractionStyle interactionStyle, java.lang.String[] tags)
      Adds a unidirectional "uses" style relationship between this custom element and the specified element.
      Parameters:
      destination - the target of the relationship
      description - a description of the relationship (e.g. "uses", "gets data from", "sends data to")
      technology - the technology details (e.g. JSON/HTTPS)
      interactionStyle - the interaction style (sync vs async)
      tags - an array of tags
      Returns:
      the relationship that has just been created and added to the model