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.ObjectA base class for Object Module Format (OMF) symbols.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedDebugSymbol()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description shortgetLength()Returns the length of the symbol.java.lang.StringgetName()Returns the name of the symbol.intgetOffset()Returns the offset.shortgetSection()Returns the section number.shortgetType()Returns the type of the symbol.protected voidprocessDebugSymbol(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
-
-