Class DebugSymbol
java.lang.Object
ghidra.app.util.bin.format.pe.debug.DebugSymbol
- Direct Known Subclasses:
S_BPREL32_NEW
,S_GPROC32_NEW
A base class for Object Module Format (OMF) symbols.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionshort
Returns the length of the symbol.getName()
Returns the name of the symbol.int
Returns the offset.short
Returns the section number.short
getType()
Returns the type of the symbol.protected void
processDebugSymbol
(short length, short type)
-
Field Details
-
length
protected short length -
type
protected short type -
name
-
section
protected short section -
offset
protected int offset
-
-
Constructor Details
-
DebugSymbol
protected DebugSymbol()
-
-
Method Details
-
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
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
-