Package ghidra.app.cmd.module
Class MergeFolderCmd
- java.lang.Object
-
- ghidra.app.cmd.module.MergeFolderCmd
-
-
Constructor Summary
Constructors Constructor Description MergeFolderCmd(java.lang.String treeName, java.lang.String folderName, java.lang.String parentName)
Construct a new command.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
applyTo(DomainObject obj)
Applies the command to the given domain object.java.lang.String
getName()
Returns the name of this command.java.lang.String
getStatusMsg()
Returns the status message indicating the status of the command.
-
-
-
Constructor Detail
-
MergeFolderCmd
public MergeFolderCmd(java.lang.String treeName, java.lang.String folderName, java.lang.String parentName)
Construct a new command.- Parameters:
treeName
- name of the tree that this command affectsfolderName
- name of the folder (module) that is being merged in with its parentparentName
- name of the parent that will end up with children of the folder named folderName
-
-
Method Detail
-
applyTo
public boolean applyTo(DomainObject obj)
Description copied from interface:Command
Applies the command to the given domain object.
-
getStatusMsg
public java.lang.String getStatusMsg()
Description copied from interface:Command
Returns the status message indicating the status of the command.- Specified by:
getStatusMsg
in interfaceCommand
- Returns:
- reason for failure, or null if the status of the command was successful
-
-