| 1 19 24 25 package org.netbeans.modules.j2ee.sun.dd.api.web; 26 27 import org.netbeans.modules.j2ee.sun.dd.api.VersionNotSupportedException; 28 29 public interface MyClassLoader extends org.netbeans.modules.j2ee.sun.dd.api.CommonDDBean { 30 31 public static final String EXTRACLASSPATH = "ExtraClassPath"; public static final String DELEGATE = "Delegate"; public static final String DYNAMICRELOADINTERVAL = "DynamicReloadInterval"; public static final String PROPERTY = "WebProperty"; 36 39 public void setExtraClassPath(java.lang.String value); 40 43 public java.lang.String getExtraClassPath(); 44 47 public void setDelegate(java.lang.String value); 48 51 public java.lang.String getDelegate(); 52 55 public void setDynamicReloadInterval(java.lang.String value) throws VersionNotSupportedException; 56 59 public java.lang.String getDynamicReloadInterval() throws VersionNotSupportedException; 60 61 public void setWebProperty(int index, WebProperty value) throws VersionNotSupportedException; 62 public WebProperty getWebProperty(int index) throws VersionNotSupportedException; 63 public int sizeWebProperty() throws VersionNotSupportedException; 64 public void setWebProperty(WebProperty[] value) throws VersionNotSupportedException; 65 public WebProperty[] getWebProperty() throws VersionNotSupportedException; 66 public int addWebProperty(WebProperty value) throws VersionNotSupportedException; 67 public int removeWebProperty(WebProperty value) throws VersionNotSupportedException; 68 public WebProperty newWebProperty() throws VersionNotSupportedException; 69 70 } 71 | Popular Tags |