Package ghidra.app.cmd.data
Class CreateDataInStructureCmd
- java.lang.Object
-
- ghidra.app.cmd.data.CreateDataInStructureCmd
-
-
Constructor Summary
Constructors Constructor Description CreateDataInStructureCmd(Address addr, int[] componentPath, DataType dt)
Constructs a new command for creating data inside a structure.CreateDataInStructureCmd(Address addr, int[] componentPath, DataType dt, boolean stackPointers)
This is the same asCreateDataInStructureCmd(Address, int[], DataType)
except that it allows the caller to control whether or not a pointer data type is created when a non-pointer data type is applied at a location that previously contained a pointer data type.
-
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
-
CreateDataInStructureCmd
public CreateDataInStructureCmd(Address addr, int[] componentPath, DataType dt)
Constructs a new command for creating data inside a structure. Simple pointer conversion will NOT be performed.- Parameters:
addr
- the address of the structure in which to apply the given datatype.componentPath
- the component path of the component where the datatype will be applied.dt
- the datatype to apply in the structure.
-
CreateDataInStructureCmd
public CreateDataInStructureCmd(Address addr, int[] componentPath, DataType dt, boolean stackPointers)
This is the same asCreateDataInStructureCmd(Address, int[], DataType)
except that it allows the caller to control whether or not a pointer data type is created when a non-pointer data type is applied at a location that previously contained a pointer data type.- Parameters:
addr
- the address of the structure in which to apply the given datatype.componentPath
- the component path of the component where the datatype will be applied.dt
- the datatype to apply in the structure.stackPointers
- if true simple pointer conversion is enabled (seeDataUtilities.reconcileAppliedDataType(DataType, DataType, boolean)
).
-
-
Method Detail
-
applyTo
public boolean applyTo(DomainObject obj)
Description copied from interface:Command
Applies the command to the given domain object.- Specified by:
applyTo
in 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()
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
- See Also:
Command.getStatusMsg()
-
getName
public java.lang.String getName()
Description copied from interface:Command
Returns the name of this command.- Specified by:
getName
in interfaceCommand
- Returns:
- the name of this command
- See Also:
Command.getName()
-
-