1 19 20 package org.netbeans.modules.j2ee.ddloaders.multiview; 21 22 import org.netbeans.modules.j2ee.dd.api.ejb.EntityAndSession; 23 import org.netbeans.modules.xml.multiview.ui.SectionNodeInnerPanel; 24 import org.netbeans.modules.xml.multiview.ui.SectionNodeView; 25 26 29 public class EjbImplementationAndInterfacesNode extends EjbSectionNode { 30 31 private EntityAndSessionHelper helper; 32 33 EjbImplementationAndInterfacesNode(SectionNodeView sectionNodeView, EntityAndSession ejb, 34 EntityAndSessionHelper helper) { 35 super(sectionNodeView, true, ejb, Utils.getBundleMessage("LBL_EjbImplementationAndInterfaces"), 36 Utils.ICON_BASE_MISC_NODE); 37 this.helper = helper; 38 } 39 40 protected SectionNodeInnerPanel createNodeInnerPanel() { 41 SectionNodeView sectionNodeView = getSectionNodeView(); 42 final EjbImplementationAndInterfacesPanel panel = new EjbImplementationAndInterfacesPanel(sectionNodeView, 43 helper); 44 return panel; 45 } 46 } 47 | Popular Tags |