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 ContainerTransaction extends CommonDDBean, DescriptionInterface { 29 30 public static final String METHOD = "Method"; public static final String TRANS_ATTRIBUTE = "TransAttribute"; 33 public void setMethod(int index, Method value); 34 35 public void setMethod(Method[] value); 36 37 public Method getMethod(int index); 38 39 public Method[] getMethod(); 40 41 public int addMethod(org.netbeans.modules.j2ee.dd.api.ejb.Method value); 42 43 public int sizeMethod(); 44 45 public int removeMethod(org.netbeans.modules.j2ee.dd.api.ejb.Method value); 46 47 public Method newMethod(); 48 49 public void setTransAttribute(String value); 50 51 public String getTransAttribute(); 52 } 53 54 | Popular Tags |