# Interface: com.pnfsoftware.jeb.core.units.codeobject.IELFRelocationTable

Description of a relocation table, holding relocation entries.

## Method: format
- parameter: `elf`, type: `com.pnfsoftware.jeb.core.units.codeobject.IELFUnit`
- return type: `java.lang.String`

Description: Format this relocation table for display.
parameter: elf: owning ELF unit
return: formatted relocation table

## Method: getCountOfEntries
- return type: `int`

Description: Get number of relocation entries.
return: number of relocation entries

## Method: getEntries
- return type: `java.util.List<? extends com.pnfsoftware.jeb.core.units.codeobject.IELFRelocationEntry>`

Description: Get relocation entries.
return: relocation entries

## Method: getEntry
- parameter: `index`, type: `int`
- return type: `com.pnfsoftware.jeb.core.units.codeobject.IELFRelocationEntry`

Description: Retrieve a relocation entry by index.
parameter: index: relocation entry index
return: relocation entry

## Method: getFileOffset
- return type: `long`

Description: Get relocation table file offset.
return: relocation table file offset

## Method: getSectionIndex
- return type: `int`

Description: Get relocation section index.
return: relocation section index

## Method: getSymbolSectionIndex
- return type: `int`

Description: Get associated symbol section index.
return: associated symbol section index

## Method: getTargetSectionIndex
- return type: `int`

Description: Get target section index.
return: target section index

