Uses of Interface
net.dpml.library.Module

Packages that use Module
net.dpml.library Library interfaces. 
net.dpml.library.impl Implementation of the project library supporting module, project and resource managment. 
 

Uses of Module in net.dpml.library
 

Methods in net.dpml.library that return Module
 Module Resource.getParent()
          Return the enclosing parent module.
 Module[] Module.getModules()
          Return the array of modules that are direct children of this module.
 Module[] Module.getAllModules()
          Return the array of modules that are descendants of this module.
 Module Module.getModule(String ref)
          Return a module using a supplied reference.
 Module[] Library.getModules()
          Return a array of the top-level modules within the library.
 Module[] Library.getAllModules()
          Return a array of all modules in the library.
 Module Library.getModule(String ref)
          Return a named module.
 

Uses of Module in net.dpml.library.impl
 

Classes in net.dpml.library.impl that implement Module
 class DefaultModule
          A Module is a collection of resources.
 

Methods in net.dpml.library.impl that return Module
 Module DefaultResource.getParent()
          Return the enclosing parent module.
 Module[] DefaultModule.getModules()
          Return the array of modules that are direct children of this module.
 Module DefaultModule.getModule(String ref)
          Return a module using a supplied reference.
 Module[] DefaultModule.getAllModules()
          Return the array of modules that are descendants of this module.
 Module[] DefaultLibrary.getModules()
          Return an array of the top-level modules within the library.
 Module[] DefaultLibrary.getAllModules()
          Return a array of all modules in the library.
 Module DefaultLibrary.getModule(String ref)
          Return a named module.