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