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