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 MdbImplementationNode extends EjbSectionNode { 30 31 MdbImplementationNode(SectionNodeView sectionNodeView, MessageDriven messageDriven) { 32 super(sectionNodeView, true, messageDriven, Utils.getBundleMessage("LBL_EjbImplementation"), 33 Utils.ICON_BASE_MISC_NODE); 34 } 35 36 protected SectionNodeInnerPanel createNodeInnerPanel() { 37 return new MdbImplementationPanel(getSectionNodeView(), (MessageDriven) key); 38 } 39 } 40 | Popular Tags |