Class AssemblyComponent

java.lang.Object
kieker.model.system.model.AssemblyComponent
All Implemented Interfaces:
ISystemModelElement
Direct Known Subclasses:
RootAssemblyComponent

public class AssemblyComponent
extends java.lang.Object
implements ISystemModelElement
Since:
1.1
  • Constructor Summary

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

    Modifier and Type Method Description
    boolean equals​(java.lang.Object obj)  
    int getId()  
    java.lang.String getIdentifier()
    Returns a textual identifier for this object (e.g., its name).
    java.lang.String getName()  
    ComponentType getType()  
    int hashCode()  
    boolean isRootComponent()
    Denotes whether this assembly component is a root component.
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

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

    • AssemblyComponent

      public AssemblyComponent​(int id, java.lang.String name, ComponentType type)
      Creates a new instance of this class using the given parameters.
      Parameters:
      id - The ID of this assembly component.
      name - The name of this component.
      type - The type of this component.
  • Method Details

    • getId

      public final int getId()
    • getName

      public final java.lang.String getName()
    • getType

      public final ComponentType getType()
    • toString

      public final java.lang.String toString()
      Overrides:
      toString in class java.lang.Object
    • hashCode

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

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

      public boolean isRootComponent()
      Denotes whether this assembly component is a root component.
      Returns:
      See above
    • getIdentifier

      public java.lang.String getIdentifier()
      Description copied from interface: ISystemModelElement
      Returns a textual identifier for this object (e.g., its name).
      Specified by:
      getIdentifier in interface ISystemModelElement
      Returns:
      See above