Package org.apache.jmeter.gui.action
Class Load
- java.lang.Object
-
- org.apache.jmeter.gui.action.Load
-
- All Implemented Interfaces:
Command
- Direct Known Subclasses:
LoadRecentProject
public class Load extends Object implements Command
Handles the Open (load a new file) and Merge commands.
-
-
Constructor Summary
Constructors Constructor Description Load()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
doAction(ActionEvent e)
Set<String>
getActionNames()
static boolean
insertLoadedTree(int id, HashTree tree)
Inserts the tree into the GUI.static boolean
insertLoadedTree(int id, HashTree tree, boolean merging)
Inserts (or merges) the tree into the GUI.
-
-
-
Method Detail
-
getActionNames
public Set<String> getActionNames()
- Specified by:
getActionNames
in interfaceCommand
-
doAction
public void doAction(ActionEvent e)
-
insertLoadedTree
public static boolean insertLoadedTree(int id, HashTree tree, boolean merging) throws IllegalUserActionException
Inserts (or merges) the tree into the GUI. Does not check if the previous tree has been saved. Clears the existing GUI test plan if we are inserting a complete plan.- Parameters:
id
- the id for the ActionEvent that is createdtree
- the tree to loadmerging
- true if the tree is to be merged; false if it is to replace the existing tree- Returns:
- true if the loaded tree was a full test plan
- Throws:
IllegalUserActionException
- if the tree cannot be merged at the selected position or the tree is empty
-
insertLoadedTree
public static boolean insertLoadedTree(int id, HashTree tree) throws IllegalUserActionException
Inserts the tree into the GUI. Does not check if the previous tree has been saved. Clears the existing GUI test plan if we are inserting a complete plan.- Parameters:
id
- the id for the ActionEvent that is createdtree
- the tree to load- Returns:
- true if the loaded tree was a full test plan
- Throws:
IllegalUserActionException
- if the tree cannot be merged at the selected position or the tree is empty
-
-