1 2 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.Binding; 34 import org.openide.nodes.Children; 35 import org.openide.util.HelpCtx; 36 37 41 public class BindingNode extends SectionContainerNode{ 42 private Binding binding; 43 44 public BindingNode(SectionView view, Binding binding) { 45 super(Children.LEAF); 46 this.binding = binding; 47 setDisplayName(this.binding.getName()); 48 } 49 50 public String getPanelId() { 51 return "binding"; } 53 54 public HelpCtx getHelpCtx() { 55 return new HelpCtx(WSCustomizationView.ID_BINDING); 56 } 57 } 58 | Popular Tags |