1 19 20 package org.netbeans.modules.j2ee.dd.api.ejb; 21 22 26 public interface QueryMethod extends org.netbeans.modules.j2ee.dd.api.common.CommonDDBean { 27 28 public static final String METHOD_NAME = "MethodName"; public static final String METHOD_PARAMS = "MethodParams"; 31 public void setMethodName(String value); 32 33 public String getMethodName(); 34 35 public void setMethodParams(MethodParams value); 36 37 public MethodParams getMethodParams(); 38 39 public MethodParams newMethodParams(); 40 41 } 42 43 | Popular Tags |