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