public interface ModuleContext
GetModuleContext
Modifier and Type | Method and Description |
---|---|
ModuleContextBinding |
getBinding(URI uri)
Return the binding for the specified requirement URI.
|
List<ModuleContextBinding> |
getBindings()
Returns the list of requirement bindings.
|
List<ModuleContextBinding> |
getChildren(ModuleContextBinding parent)
Return the child requirements of the specified binding.
|
ModuleContextBinding |
getParent(ModuleContextBinding child)
Return the parent binding of the specified child requirement.
|
List<ModuleContextBinding> |
getRoots()
Returns the requirements rooted at the module.
|
List<ModuleContextBinding> getBindings()
ModuleContextBinding getBinding(URI uri)
uri
- the URI of a requirement bound in the module.null
if none.List<ModuleContextBinding> getRoots()
List<ModuleContextBinding> getChildren(ModuleContextBinding parent)
parent
- the binding of a parent requirement.ModuleContextBinding getParent(ModuleContextBinding child)
child
- a requirement bound in the module.null
if none.