1 19 20 package org.netbeans.modules.j2ee.ejbfreeform; 21 22 import java.io.File ; 23 import java.net.URI ; 24 25 import org.netbeans.api.project.ant.AntArtifact; 26 import org.netbeans.modules.j2ee.api.ejbjar.EjbProjectConstants; 27 28 34 public class EJBFreeformAntArtifact extends AntArtifact { 35 36 private AntArtifact aa; 37 38 public EJBFreeformAntArtifact(AntArtifact aa) { 39 super(); 40 this.aa = aa; 41 } 42 43 public String getType() { 44 return EjbProjectConstants.ARTIFACT_TYPE_J2EE_MODULE_IN_EAR_ARCHIVE; 45 } 46 47 public File getScriptLocation() { 48 return aa.getScriptLocation(); 49 } 50 51 public String getTargetName() { 52 return aa.getTargetName(); 53 } 54 55 public String getCleanTargetName() { 56 return aa.getCleanTargetName(); 57 } 58 59 public URI [] getArtifactLocations() { 60 return aa.getArtifactLocations(); 61 } 62 63 } 64 | Popular Tags |