ujf.verimag.bip.parser
Interface ErrorMessage

All Known Implementing Classes:
CmdLineError

public interface ErrorMessage

Author:
arobert interface to catch the error sent by the BIP parser. The implementation may be textual report, or eclipse marker build for example.

Field Summary
static int BIP_ERROR
           
static int BIP_FATAL
           
static int BIP_NOTE
           
static int BIP_OK
           
static int BIP_WARNING
           
 
Method Summary
 int getErrorNumber()
           
 int getWarningNumber()
           
 java.lang.Exception sendErrorMessage(int level, java.lang.String message, int lineNumber, int columnNumber, java.lang.String fileName)
           
 

Field Detail

BIP_OK

static final int BIP_OK
See Also:
Constant Field Values

BIP_NOTE

static final int BIP_NOTE
See Also:
Constant Field Values

BIP_WARNING

static final int BIP_WARNING
See Also:
Constant Field Values

BIP_ERROR

static final int BIP_ERROR
See Also:
Constant Field Values

BIP_FATAL

static final int BIP_FATAL
See Also:
Constant Field Values
Method Detail

sendErrorMessage

java.lang.Exception sendErrorMessage(int level,
                                     java.lang.String message,
                                     int lineNumber,
                                     int columnNumber,
                                     java.lang.String fileName)

getErrorNumber

int getErrorNumber()

getWarningNumber

int getWarningNumber()