Package jadex.bridge.component
Class DependencyResolver.NodeInfo<T>
- java.lang.Object
-
- jadex.bridge.component.DependencyResolver.NodeInfo<T>
-
- Enclosing class:
- DependencyResolver<T>
public static class DependencyResolver.NodeInfo<T> extends java.lang.Object
Info object for a 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.
-
-
-
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 classjava.lang.Object
-
-