1 19 20 package org.netbeans.modules.j2ee.dd.api.common; 21 27 public interface EnvEntry extends CommonDDBean, DescriptionInterface { 28 29 public static final String ENV_ENTRY_NAME = "EnvEntryName"; public static final String ENV_ENTRY_TYPE = "EnvEntryType"; public static final String ENV_ENTRY_VALUE = "EnvEntryValue"; 33 36 public void setEnvEntryName(String value); 37 40 public String getEnvEntryName(); 41 44 public void setEnvEntryType(String value); 45 48 public String getEnvEntryType(); 49 52 public void setEnvEntryValue(String value); 53 56 public String getEnvEntryValue(); 57 58 60 void setMappedName(String value) throws VersionNotSupportedException; 61 String getMappedName() throws VersionNotSupportedException; 62 void setInjectionTarget(int index, InjectionTarget valueInterface) throws VersionNotSupportedException; 63 InjectionTarget getInjectionTarget(int index) throws VersionNotSupportedException; 64 int sizeInjectionTarget() throws VersionNotSupportedException; 65 void setInjectionTarget(InjectionTarget[] value) throws VersionNotSupportedException; 66 InjectionTarget[] getInjectionTarget() throws VersionNotSupportedException; 67 int addInjectionTarget(InjectionTarget valueInterface) throws VersionNotSupportedException; 68 int removeInjectionTarget(InjectionTarget valueInterface) throws VersionNotSupportedException; 69 InjectionTarget newInjectionTarget() throws VersionNotSupportedException; 70 71 } 72 | Popular Tags |