Package ghidra.app.cmd.label
Class AddUniqueLabelCmd
- java.lang.Object
-
- ghidra.app.cmd.label.AddUniqueLabelCmd
-
- All Implemented Interfaces:
Command
@Deprecated public class AddUniqueLabelCmd extends java.lang.Object implements Command
Deprecated.The need for this class is now unnecessary since duplicate labels are permittedCommand to add a label. If the label already exists somewhere else, the address is appended to make it unique.
-
-
Constructor Summary
Constructors Constructor Description AddUniqueLabelCmd(Address address, java.lang.String name, Namespace namespace, SourceType source)Deprecated.Constructs a new command for adding a label.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanapplyTo(DomainObject obj)Deprecated.Applies the command to the given domain object.java.lang.StringgetName()Deprecated.Returns the name of this command.SymbolgetNewSymbol()Deprecated.Returns the newly created symbol.java.lang.StringgetStatusMsg()Deprecated.Returns the status message indicating the status of the command.
-
-
-
Constructor Detail
-
AddUniqueLabelCmd
public AddUniqueLabelCmd(Address address, java.lang.String name, Namespace namespace, SourceType source)
Deprecated.Constructs a new command for adding a label.- Parameters:
address- address where the label is to be added.name- name of the new label. A null name will cause a default label be added.namespace- the namespace of the label. (i.e. the namespace this label is associated with)source- the source of this symbol
-
-
Method Detail
-
applyTo
public boolean applyTo(DomainObject obj)
Deprecated.Description copied from interface:CommandApplies the command to the given domain object.- Specified by:
applyToin interfaceCommand- Parameters:
obj- domain object that this command is to be applied.- Returns:
- true if the command applied successfully
- See Also:
Command.applyTo(ghidra.framework.model.DomainObject)
-
getStatusMsg
public java.lang.String getStatusMsg()
Deprecated.Description copied from interface:CommandReturns the status message indicating the status of the command.- Specified by:
getStatusMsgin interfaceCommand- Returns:
- reason for failure, or null if the status of the command was successful
- See Also:
Command.getStatusMsg()
-
getName
public java.lang.String getName()
Deprecated.Description copied from interface:CommandReturns the name of this command.- Specified by:
getNamein interfaceCommand- Returns:
- the name of this command
- See Also:
Command.getName()
-
getNewSymbol
public Symbol getNewSymbol()
Deprecated.Returns the newly created symbol.- Returns:
- the newly created symbol
-
-