1 19 20 package org.netbeans.modules.j2ee.dd.api.ejb; 21 22 26 public interface MethodParams extends org.netbeans.modules.j2ee.dd.api.common.CommonDDBean { 27 28 public static final String METHOD_PARAM = "MethodParam"; 30 public void setMethodParam(int index, String value); 31 32 public String getMethodParam(int index); 33 34 public void setMethodParam(String [] value); 35 36 public String [] getMethodParam(); 37 38 public int sizeMethodParam(); 39 40 public int addMethodParam(String value); 41 42 public int removeMethodParam(String value); 43 44 } 45 46 | Popular Tags |