Package ghidra.program.model.pcode
Class ParamMeasure
- java.lang.Object
-
- ghidra.program.model.pcode.ParamMeasure
-
public class ParamMeasure extends java.lang.Object
ParamMeasure
-
-
Constructor Summary
Constructors Constructor Description ParamMeasure()
Constructs a ParamMeasure Object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DataType
getDataType()
java.lang.Integer
getRank()
Varnode
getVarnode()
boolean
isEmpty()
void
readXml(XmlPullParser parser, PcodeFactory factory)
Create a ParamMeasure object by parsing the XML elements
-
-
-
Constructor Detail
-
ParamMeasure
public ParamMeasure()
Constructs a ParamMeasure Object. The ParamMeasure will be empty untilreadXml(ghidra.xml.XmlPullParser, ghidra.program.model.pcode.PcodeFactory)
is invoked.
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
-
readXml
public void readXml(XmlPullParser parser, PcodeFactory factory) throws PcodeXMLException
Create a ParamMeasure object by parsing the XML elements- Parameters:
parser
- xml parserfactory
- pcode factory- Throws:
PcodeXMLException
- if an error occurs when reading the xml.
-
getVarnode
public Varnode getVarnode()
-
getDataType
public DataType getDataType()
-
getRank
public java.lang.Integer getRank()
-
-