1 19 package org.netbeans.modules.j2ee.ddloaders.multiview; 20 21 import org.netbeans.modules.j2ee.dd.api.ejb.Ejb; 22 import org.netbeans.modules.xml.multiview.ui.SectionNodeInnerPanel; 23 import org.netbeans.modules.xml.multiview.ui.SectionNodeView; 24 25 28 public class BeanDetailNode extends EjbSectionNode { 29 30 public BeanDetailNode(SectionNodeView sectionNodeView, Ejb ejb) { 31 super(sectionNodeView, ejb, Utils.getBundleMessage("LBL_BeanDetails"), Utils.ICON_BASE_MISC_NODE); 32 } 33 34 protected SectionNodeInnerPanel createNodeInnerPanel() { 35 SectionNodeView sectionNodeView = getSectionNodeView(); 36 return new BeanDetailsPanel(sectionNodeView, (Ejb) key); 37 } 38 } 39 | Popular Tags |