Class ComponentType

java.lang.Object
kieker.tools.trace.analysis.systemModel.ComponentType

@Deprecated public class ComponentType extends Object
Deprecated.
1.15 moved to kieker-model
This class represents the type of a component within the trace analysis tool.
Since:
1.1
Author:
Andre van Hoorn
  • Constructor Summary

    Constructors
    Constructor
    Description
    ComponentType(int id, String fullqualifiedTypeName)
    Deprecated.
    Creates a new instance of this class using the given parameters.
    ComponentType(int id, String packageName, String typeName)
    Deprecated.
    // NOCS requests implementation of equals and hashCode in pairs// NOCS requests implementation of equals and hashCode in pairs* Creates a new instance of this class using the given parameters.
  • Method Summary

    Modifier and Type
    Method
    Description
    final Operation
    Deprecated.
    This method adds a given operation to the list of available operations.
    boolean
    Deprecated.
     
    final String
    Deprecated.
    Delivers the full qualified name of this type (the packages are separated with '.').
    final int
    Deprecated.
    Delivers the ID of the component type.
    Deprecated.
    Delivers a collection containing the available operations within this component type.
    final String
    Deprecated.
    Delivers the package name of this type.
    final String
    Deprecated.
    Delivers the name of the type.
    int
    Deprecated.
     

    Methods inherited from class java.lang.Object

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

    • ComponentType

      public ComponentType(int id, String packageName, String typeName)
      Deprecated.
      // NOCS requests implementation of equals and hashCode in pairs// NOCS requests implementation of equals and hashCode in pairs* Creates a new instance of this class using the given parameters.
      Parameters:
      id - The ID of the component type.
      packageName - The package name.
      typeName - The type name.
    • ComponentType

      public ComponentType(int id, String fullqualifiedTypeName)
      Deprecated.
      Creates a new instance of this class using the given parameters.
      Parameters:
      id - The ID of the component type.
      fullqualifiedTypeName - The fully qualified name of the type, separated with '.'.
  • Method Details

    • getId

      public final int getId()
      Deprecated.
      Delivers the ID of the component type.
      Returns:
      The ID.
    • getTypeName

      public final String getTypeName()
      Deprecated.
      Delivers the name of the type.
      Returns:
      The type name.
    • getPackageName

      public final String getPackageName()
      Deprecated.
      Delivers the package name of this type.
      Returns:
      The package name.
    • getFullQualifiedName

      public final String getFullQualifiedName()
      Deprecated.
      Delivers the full qualified name of this type (the packages are separated with '.').
      Returns:
      The full qualified name.
    • getOperations

      public final Collection<Operation> getOperations()
      Deprecated.
      Delivers a collection containing the available operations within this component type.
      Returns:
      The operations.
    • addOperation

      public final Operation addOperation(Operation op)
      Deprecated.
      This method adds a given operation to the list of available operations.
      Parameters:
      op - The operation to be added.
      Returns:
      The added operation.
    • hashCode

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

      public boolean equals(Object obj)
      Deprecated.
      Overrides:
      equals in class Object