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 Relationships extends CommonDDBean, DescriptionInterface { 29 30 public static final String EJB_RELATION = "EjbRelation"; 32 public void setEjbRelation(int index, EjbRelation value); 33 34 public EjbRelation getEjbRelation(int index); 35 36 public void setEjbRelation(EjbRelation[] value); 37 38 public EjbRelation[] getEjbRelation(); 39 40 public int addEjbRelation(org.netbeans.modules.j2ee.dd.api.ejb.EjbRelation value); 41 42 public int removeEjbRelation(org.netbeans.modules.j2ee.dd.api.ejb.EjbRelation value); 43 44 public int sizeEjbRelation(); 45 46 public EjbRelation newEjbRelation(); 47 48 } 49 50 | Popular Tags |