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

This interface describes the section header of a PE/COFF executable file. 

 Reference: https://msdn.microsoft.com/en\-us/library/windows/desktop/ms680547\(v=vs.85\).aspx

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

Description: Get section characteristics flags.
return: section characteristics flags

## Method: getName
- return type: `byte[]`

Description: Get section name bytes.
return: section name bytes

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

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

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

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

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

Description: Get file pointer to line numbers.
return: file pointer to line numbers

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

Description: Get file pointer to raw section data.
return: file pointer to raw section data

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

Description: Get file pointer to relocations.
return: file pointer to relocations

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

Description: Get size of raw section data.
return: size of raw section data

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

Description: Get virtual section address.
return: virtual section address

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

Description: Get virtual section size.
return: virtual section size

