at.dms.compiler
Interface WarningFilter

All Known Implementing Classes:
DefaultFilter

public interface WarningFilter

This interface filters warning


Field Summary
static int FLT_ACCEPT
          Does not decide, the warning will be displayed depending on the user options (warning level, langage specification)
static int FLT_FORCE
          Forces the warning to be displayed
static int FLT_REJECT
          Rejects the warning, it will not be displayed
 
Method Summary
 int filter(CWarning warning)
          Filters a warning
 

Field Detail

FLT_REJECT

static final int FLT_REJECT
Rejects the warning, it will not be displayed

See Also:
Constant Field Values

FLT_FORCE

static final int FLT_FORCE
Forces the warning to be displayed

See Also:
Constant Field Values

FLT_ACCEPT

static final int FLT_ACCEPT
Does not decide, the warning will be displayed depending on the user options (warning level, langage specification)

See Also:
Constant Field Values
Method Detail

filter

int filter(CWarning warning)
Filters a warning

Parameters:
warning - a warning to be filtred
Returns:
FLT_REJECT, FLT_FORCE, FLT_ACCEPT