@ibm/ibmi-eventf-parser
Version:
Parse event files that are generated by IBM i compilers
27 lines (26 loc) • 640 B
TypeScript
import { IRecordT } from "./IRecordT";
import { IRecord } from "./IRecord";
/**
* This class represents a Processor record in an events file.
*/
export declare class ProcessorRecord implements IRecord {
private version;
private outputId;
private lineClass;
constructor(version: number, outputId: number, lineClass: number);
getRecordType(): IRecordT;
getVersion(): number;
/**
* Get the output id.
*
* @return The output id.
*/
getOutputId(): number;
/**
* Get the line class.
*
* @return The line class.
*/
getLineClass(): number;
toString(): string;
}