public class

DataHints

extends Object
java.lang.Object
   ↳ com.pnfsoftware.jeb.core.units.code.asm.items.DataHints

Class Overview

Hints for native data items.

Summary

Constants
int ABSOLUTE_ADDRESS Hint: the data item may be an absolute virtual address.
int RELATIVE_ADDRESS Hint: the data item may be an image-base relative virtual address.
Public Constructors
DataHints()
Public Methods
int getAddressCalculationHint()
void setAddressCalculationHint(int addressCalculationHint)
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final int ABSOLUTE_ADDRESS

Hint: the data item may be an absolute virtual address. The item type may or may not be compatible with that hint.

Constant Value: 1 (0x00000001)

public static final int RELATIVE_ADDRESS

Hint: the data item may be an image-base relative virtual address. The item type may or may not be compatible with that hint.

NOTE: A similar hint can also be set onto structure field definitions, which are part of structure types; see FLAG_HINT_RVA

Constant Value: 2 (0x00000002)

Public Constructors

public DataHints ()

Public Methods

public int getAddressCalculationHint ()

public void setAddressCalculationHint (int addressCalculationHint)

Parameters
addressCalculationHint 0 or ABSOLUTE_ADDRESS or RELATIVE_ADDRESS