1 19 24 25 package org.netbeans.modules.j2ee.sun.dd.api.web; 26 27 public interface CacheHelper extends org.netbeans.modules.j2ee.sun.dd.api.CommonDDBean { 28 29 public static final String NAME = "Name"; public static final String CLASSNAME = "ClassName"; public static final String PROPERTY = "WebProperty"; 33 36 public void setName(java.lang.String value); 37 40 public java.lang.String getName(); 41 44 public void setClassName(java.lang.String value); 45 48 public java.lang.String getClassName(); 49 50 public void setWebProperty(int index, WebProperty value); 51 public WebProperty getWebProperty(int index); 52 public int sizeWebProperty(); 53 public void setWebProperty(WebProperty[] value); 54 public WebProperty[] getWebProperty(); 55 public int addWebProperty(WebProperty value); 56 public int removeWebProperty(WebProperty value); 57 public WebProperty newWebProperty(); 58 59 } 60 | Popular Tags |