Class ExecutionContainer

java.lang.Object
kieker.tools.trace.analysis.systemModel.ExecutionContainer
All Implemented Interfaces:
ISystemModelElement
Direct Known Subclasses:
RootExecutionContainer

@Deprecated
public class ExecutionContainer
extends java.lang.Object
implements ISystemModelElement
Deprecated.
1.15 moved to kieker-model
Since:
1.1
Author:
Andre van Hoorn
  • Constructor Summary

    Constructors 
    Constructor Description
    ExecutionContainer​(int id, ExecutionContainer parent, java.lang.String name)
    Deprecated.
    Creates a new instance of this class using the given parameters.
  • Method Summary

    Modifier and Type Method Description
    void addChildContainer​(ExecutionContainer container)
    Deprecated.
    This method adds a given container to the list of child containers.
    boolean equals​(java.lang.Object obj)
    Deprecated.
     
    java.util.Collection<ExecutionContainer> getChildContainers()
    Deprecated.
    Delivers a collection containing the added child containers.
    int getId()
    Deprecated.
    Delivers the ID of the container.
    java.lang.String getIdentifier()
    Deprecated.
    Delivers the identifier (name) of this object.
    java.lang.String getName()
    Deprecated.
    Delivers the name of the container.
    ExecutionContainer getParent()
    Deprecated.
    Delivers the parent of the container.
    int hashCode()
    Deprecated.
     
    boolean isRootContainer()
    Deprecated.
    Returns whether this container is a root container.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ExecutionContainer

      public ExecutionContainer​(int id, ExecutionContainer parent, java.lang.String name)
      Deprecated.
      Creates a new instance of this class using the given parameters.
      Parameters:
      id - The ID of this container.
      parent - The parent of this container.
      name - The name of this container.
  • Method Details

    • getId

      public final int getId()
      Deprecated.
      Delivers the ID of the container.
      Returns:
      The ID.
    • getName

      public final java.lang.String getName()
      Deprecated.
      Delivers the name of the container.
      Returns:
      The name.
    • getParent

      public final ExecutionContainer getParent()
      Deprecated.
      Delivers the parent of the container.
      Returns:
      The parent.
    • getChildContainers

      public final java.util.Collection<ExecutionContainer> getChildContainers()
      Deprecated.
      Delivers a collection containing the added child containers.
      Returns:
      The child containers.
    • addChildContainer

      public final void addChildContainer​(ExecutionContainer container)
      Deprecated.
      This method adds a given container to the list of child containers.
      Parameters:
      container - The new child container.
    • hashCode

      public int hashCode()
      Deprecated.
      Overrides:
      hashCode in class java.lang.Object
    • equals

      public boolean equals​(java.lang.Object obj)
      Deprecated.
      Overrides:
      equals in class java.lang.Object
    • isRootContainer

      public boolean isRootContainer()
      Deprecated.
      Returns whether this container is a root container.
      Returns:
      See above
    • getIdentifier

      public java.lang.String getIdentifier()
      Deprecated.
      Delivers the identifier (name) of this object.
      Specified by:
      getIdentifier in interface ISystemModelElement
      Returns:
      The identifier.