1 19 20 package org.netbeans.modules.websvc.wsitconf.ui.client.nodes; 21 22 import org.netbeans.modules.xml.multiview.ui.SectionView; 23 import org.netbeans.modules.xml.wsdl.model.Binding; 24 import org.openide.util.HelpCtx; 25 import org.openide.util.NbBundle; 26 27 31 public class STSClientNode extends org.openide.nodes.AbstractNode { 32 33 private SectionView view; 34 private Binding binding; 35 36 public STSClientNode(SectionView view, Binding binding) { 37 super(org.openide.nodes.Children.LEAF); 38 this.view = view; 39 this.binding = binding; 40 setDisplayName(NbBundle.getMessage(STSClientNode.class, "LBL_Section_STS_Client")); } 42 43 @Override 44 public HelpCtx getHelpCtx() { 45 return new HelpCtx(STSClientNode.class); } 47 48 public String getPanelId() { 49 return "stsconfig"; } 51 } 52 | Popular Tags |