1 19 package org.netbeans.jellytools.modules.xml.actions; 20 21 import org.netbeans.jellytools.Bundle; 22 import org.netbeans.jellytools.actions.ActionNoBlock; 23 24 26 public class NewElementAction extends ActionNoBlock { 27 28 private static final String addPopup = 29 Bundle.getStringTrimmed("org.openide.actions.Bundle", "New") 30 + "|" 31 + Bundle.getStringTrimmed("org.netbeans.modules.xml.tree.nodes.Bundle", "PROP_xmlNewElement"); 32 33 34 public NewElementAction() { 35 super(null, addPopup); 36 } 37 } | Popular Tags |