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