| org.netbeans.modules.web.spi.webmodule.WebModuleImplementation
All known Subclasses: org.netbeans.modules.web.webmodule.SimpleWebModuleImpl,
Method Summary | |
String | getContextPath() Returns the context path of the web module. | FileObject | getDeploymentDescriptor() Returns the deployment descriptor (web.xml file) of the web module. | FileObject | getDocumentBase() Returns the folder that contains sources of the static documents for
the web module (html, JSPs, etc.). | String | getJ2eePlatformVersion() Returns the J2EE platform version of this module. | FileObject[] | getJavaSources() Returns the Java source roots associated with the web module.
Note that not all the java source roots in the project (e.g. | MetadataModel<WebAppMetadata> | getMetadataModel() Returns a model describing the metadata of this web module (servlets,
resources, etc.). | FileObject | getWebInf() WEB-INF folder for the web module. |
getContextPath | String getContextPath()(Code) | | Returns the context path of the web module.
the context path; can be null. |
getDeploymentDescriptor | FileObject getDeploymentDescriptor()(Code) | | Returns the deployment descriptor (web.xml file) of the web module.
the web.xml file; can be null. |
getDocumentBase | FileObject getDocumentBase()(Code) | | Returns the folder that contains sources of the static documents for
the web module (html, JSPs, etc.).
the static documents folder; can be null. |
getJavaSources | FileObject[] getJavaSources()(Code) | | Returns the Java source roots associated with the web module.
Note that not all the java source roots in the project (e.g. in a freeform project)
belong to the web module.
this web module's Java source roots; never null.org.openide.filesystems.FileObject |
getMetadataModel | MetadataModel<WebAppMetadata> getMetadataModel()(Code) | | Returns a model describing the metadata of this web module (servlets,
resources, etc.).
this web module's metadata model; never null. |
getWebInf | FileObject getWebInf()(Code) | | WEB-INF folder for the web module.
the FileObject; might be null |
|
|