Example usage for com.google.gwt.dev.shell ModuleSpace dispose

List of usage examples for com.google.gwt.dev.shell ModuleSpace dispose

Introduction

In this page you can find the example usage for com.google.gwt.dev.shell ModuleSpace dispose.

Prototype

public void dispose() 

Source Link

Usage

From source file:com.google.gdt.eclipse.designer.hosted.tdz.BrowserShell.java

License:Open Source License

/**
 * Unload the specified module./*from w w w .  j  a v a  2  s .c o m*/
 * 
 * @param moduleSpace
 *            a ModuleSpace instance to unload.
 */
protected void unloadModule(ModuleSpace moduleSpace) {
    String moduleName = moduleSpace.getModuleName();
    moduleSpace.dispose();
    m_logger.log(TreeLogger.SPAM, "Unloading module " + moduleName, null);
}