1 19 20 package org.netbeans.modules.j2ee.ddloaders.multiview; 21 22 import org.netbeans.modules.j2ee.dd.api.ejb.EjbJar; 23 import org.netbeans.modules.xml.multiview.ui.SectionNodeInnerPanel; 24 import org.netbeans.modules.xml.multiview.ui.SectionNodeView; 25 26 29 public class EjbJarDetailsNode extends EjbSectionNode { 30 31 EjbJarDetailsNode(SectionNodeView sectionNodeView, EjbJar ejbJar) { 32 super(sectionNodeView, true, ejbJar, Utils.getBundleMessage("LBL_ModuleDetails"), Utils.ICON_BASE_MISC_NODE); 33 setExpanded(true); 34 helpProvider = true; 35 } 36 37 protected SectionNodeInnerPanel createNodeInnerPanel() { 38 SectionNodeView sectionNodeView = getSectionNodeView(); 39 return new EjbJarDetailsPanel(sectionNodeView, (EjbJar) key); 40 } 41 } 42 | Popular Tags |