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