Class DependencyResolver.NodeInfo<T>

  • Enclosing class:
    DependencyResolver<T>

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

      Fields 
      Modifier and Type Field Description
      protected java.util.Set<T> mydeps
      The set of nodes this node depends on.
      protected java.util.Set<T> otherdeps
      The set of nodes depending on this node.
    • Constructor Summary

      Constructors 
      Constructor Description
      NodeInfo()
      Create a node info.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Set<T> getMyDeps()
      Get the mydeps.
      java.util.Set<T> getOtherDeps()
      Get the otherdeps.
      void setMyDeps​(java.util.Set<T> mydeps)
      Set the mydeps to set.
      void setOtherDeps​(java.util.Set<T> otherdeps)
      Set the otherdeps to set.
      java.lang.String toString()
      Get a string representation.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • mydeps

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

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

      • NodeInfo

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

      • getMyDeps

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

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

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

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

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