1 19 package org.netbeans.modules.xml.core.actions; 20 21 import org.openide.util.HelpCtx; 22 23 28 public class CollectXMLAction extends CollectSystemAction { 29 30 private static final long serialVersionUID = 8562401343966139988L; 31 32 34 protected Class getActionLookClass () { 35 return XMLAction.class; 36 } 37 38 40 public String getName () { 41 return Util.THIS.getString ("NAME_CollectXMLAction"); 42 } 43 44 46 public HelpCtx getHelpCtx () { 47 return new HelpCtx (CollectXMLAction.class); 48 } 49 50 51 55 58 public static interface XMLAction { 59 } 60 61 } 62 | Popular Tags |