1 19 20 package org.netbeans.modules.j2ee.dd.api.ejb; 21 22 import org.netbeans.modules.j2ee.dd.api.common.CommonDDBean; 26 import org.netbeans.modules.j2ee.dd.api.common.DescriptionInterface; 27 28 public interface Method extends CommonDDBean, DescriptionInterface { 29 30 public static final String EJB_NAME = "EjbName"; public static final String METHOD_INTF = "MethodIntf"; public static final String METHOD_NAME = "MethodName"; public static final String METHOD_PARAMS = "MethodParams"; 35 public void setEjbName(String value); 36 37 public String getEjbName(); 38 39 public void setMethodIntf(String value); 40 41 public String getMethodIntf(); 42 43 public void setMethodName(String value); 44 45 public String getMethodName(); 46 47 public void setMethodParams(MethodParams value); 48 49 public MethodParams getMethodParams(); 50 51 public MethodParams newMethodParams(); 52 53 } 54 55 | Popular Tags |