Class DebugSymbol
- java.lang.Object
-
- ghidra.app.util.bin.format.pe.debug.DebugSymbol
-
- Direct Known Subclasses:
S_BPREL32_NEW
,S_GPROC32_NEW
public abstract class DebugSymbol extends java.lang.Object
A base class for Object Module Format (OMF) symbols.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
DebugSymbol()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description short
getLength()
Returns the length of the symbol.java.lang.String
getName()
Returns the name of the symbol.int
getOffset()
Returns the offset.short
getSection()
Returns the section number.short
getType()
Returns the type of the symbol.protected void
processDebugSymbol(short length, short type)
-
-
-
Method Detail
-
processDebugSymbol
protected void processDebugSymbol(short length, short type)
-
getLength
public short getLength()
Returns the length of the symbol.- Returns:
- the length of the symbol
-
getType
public short getType()
Returns the type of the symbol.- Returns:
- the type of the symbol
-
getName
public java.lang.String getName()
Returns the name of the symbol.- Returns:
- the name of the symbol
-
getSection
public short getSection()
Returns the section number.- Returns:
- the section number
-
getOffset
public int getOffset()
Returns the offset.- Returns:
- the offset
-
-