Interface IProjectModule

All Superinterfaces:
IModule, Remote
All Known Implementing Classes:
ProjectModuleImpl

public interface IProjectModule extends IModule
The IBaseProjectModule interface is the main entry point from where most of the methods to manipulate VDoc applications.

Code sample :

 // creation of a project module object
 IBaseProjectModule projectModule = Modules.getProjectModule();
 try
 {
 }
 finally
 {
  // uninitialize the module
        Modules.releaseModule(projectModule);
 }
 

Author:
vlygeros