1 19 20 package org.netbeans.modules.j2ee.spi.ejbjar; 21 22 import org.netbeans.modules.j2ee.metadata.MetadataUnit; 23 import org.openide.filesystems.FileObject; 24 25 29 public interface EjbJarImplementation { 30 31 35 String getJ2eePlatformVersion (); 36 41 FileObject getMetaInf (); 42 43 48 FileObject getDeploymentDescriptor (); 49 50 56 FileObject[] getJavaSources(); 57 58 64 MetadataUnit getMetadataUnit(); 65 66 } 67 | Popular Tags |