Class DependencyResolver.NodeInfo<T>

java.lang.Object
jadex.core.impl.DependencyResolver.NodeInfo<T>
Enclosing class:
DependencyResolver<T>

public static class DependencyResolver.NodeInfo<T> extends Object
Info object for a node.
  • Field Details

    • mydeps

      protected Set<T> mydeps
      The set of nodes this node depends on.
    • otherdeps

      protected Set<T> otherdeps
      The set of nodes depending on this node.
  • Constructor Details

    • NodeInfo

      public NodeInfo()
      Create a node info.
  • Method Details

    • getMyDeps

      public Set<T> getMyDeps()
      Get the mydeps.
      Returns:
      The mydeps.
    • setMyDeps

      public void setMyDeps(Set<T> mydeps)
      Set the mydeps to set.
      Parameters:
      mydeps - The mydeps to set.
    • getOtherDeps

      public Set<T> getOtherDeps()
      Get the otherdeps.
      Returns:
      The otherdeps.
    • setOtherDeps

      public void setOtherDeps(Set<T> otherdeps)
      Set the otherdeps to set.
      Parameters:
      otherdeps - The otherdeps to set.
    • toString

      public String toString()
      Get a string representation.
      Overrides:
      toString in class Object