1 19 package org.netbeans.modules.j2ee.ddloaders.multiview; 20 21 import org.netbeans.modules.xml.multiview.SectionNode; 22 import org.netbeans.modules.xml.multiview.ui.SectionNodeView; 23 import org.openide.nodes.Children; 24 25 28 public class EjbSectionNode extends SectionNode { 29 30 public EjbSectionNode(SectionNodeView sectionNodeView, boolean isLeaf, Object key, String title, String iconBase) { 31 super(sectionNodeView, isLeaf ? Children.LEAF : new Children.Array(), key, title, iconBase); 32 } 33 34 public EjbSectionNode(SectionNodeView sectionNodeView, Object key, String title, String iconBase) { 35 this(sectionNodeView, false, key, title, iconBase); 36 } 37 } 38 | Popular Tags |