Package ghidra.app.util.bin.format.ne
Class EntryTableBundle
java.lang.Object
ghidra.app.util.bin.format.ne.EntryTableBundle
A class to represent a new-executable entry table bundle.
-
Field Summary
-
Method Summary
-
Field Details
-
UNUSED
public static final byte UNUSEDMarker denoting an unused entry table bundle.- See Also:
-
MOVEABLE
public static final byte MOVEABLESegment is moveable.- See Also:
-
CONSTANT
public static final byte CONSTANTRefers to a constant defined in module.- See Also:
-
-
Method Details
-
isMoveable
public boolean isMoveable()Returns true if this bundle is moveable.- Returns:
- true if this bundle is moveable
-
isConstant
public boolean isConstant()Returns true if this bundle is constant.- Returns:
- true if this bundle is constant
-
getCount
public byte getCount()Returns the number of entries in bundle.- Returns:
- the number of entries in bundle
-
getType
public byte getType()Returns the type of the bundle. For example, MOVEABLE, CONSTANT, or segment index.- Returns:
- the type of the bundle
-
getEntryPoints
Returns the array of entry points in this bundle.- Returns:
- the array of entry points in this bundle
-