1 18 19 package org.apache.jmeter.gui.action; 20 21 import java.awt.event.ActionEvent ; 22 import java.util.HashSet ; 23 import java.util.Set ; 24 25 import org.apache.jmeter.functions.gui.FunctionHelper; 26 27 30 public class CreateFunctionDialog extends AbstractAction 31 { 32 private FunctionHelper helper = null; 33 34 private static Set commands; 35 static { 36 commands = new HashSet (); 37 commands.add("functions"); 38 } 39 40 public CreateFunctionDialog() 41 { 42 helper = new FunctionHelper(); 43 } 44 45 48 public Set getActionNames() 49 { 50 return commands; 51 } 52 53 public void doAction(ActionEvent arg0) 54 { 55 helper.show(); 56 } 57 } 58 | Popular Tags |