1 19 20 package org.netbeans.modules.j2ee.dd.api.ejb; 21 22 26 public interface ExcludeList { 27 28 public static final String METHOD = "Method"; 30 public void setMethod(int index, Method value); 31 32 public Method getMethod(int index); 33 34 public void setMethod(Method[] value); 35 36 public Method[] getMethod(); 37 38 public int addMethod(org.netbeans.modules.j2ee.dd.api.ejb.Method value); 39 40 public int sizeMethod(); 41 42 public int removeMethod(org.netbeans.modules.j2ee.dd.api.ejb.Method value); 43 44 public Method newMethod(); 45 46 } 47 48 | Popular Tags |