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