1 19 package org.netbeans.modules.web.spi.webmodule; 20 21 import org.openide.filesystems.FileObject; 22 23 27 public interface WebModuleImplementation { 28 29 32 FileObject getDocumentBase (); 33 34 36 String getContextPath (); 37 38 43 String getJ2eePlatformVersion (); 44 45 54 FileObject getWebInf (); 55 56 65 FileObject getDeploymentDescriptor (); 66 67 73 FileObject[] getJavaSources(); 74 75 } 76 | Popular Tags |