1 19 20 28 29 package org.netbeans.modules.websvc.customization.multiview; 30 31 import org.netbeans.modules.xml.multiview.ui.SectionContainerNode; 32 import org.netbeans.modules.xml.multiview.ui.SectionView; 33 import org.netbeans.modules.xml.wsdl.model.Definitions; 34 import org.openide.nodes.Children; 35 import org.openide.util.HelpCtx; 36 import org.openide.util.NbBundle; 37 38 42 public class DefinitionsNode extends SectionContainerNode{ 43 private static final String ID_GLOBAL = "ID_GLOBAL"; 44 45 46 public DefinitionsNode(SectionView view, Definitions definitions) { 47 super(Children.LEAF); 48 setDisplayName(NbBundle.getMessage(DefinitionsNode.class, 49 "TITLE_GLOBAL_CUSTOMIZATION")); 50 } 51 52 public String getPanelId() { 53 return "definitions"; } 55 56 public HelpCtx getHelpCtx() { 57 return new HelpCtx(ID_GLOBAL); 58 } 59 } 60 | Popular Tags |