Uses of Class
jflex.l10n.ErrorMessages
-
Packages that use ErrorMessages Package Description jflex.core jflex.l10n jflex.logging jflex.option jflex.scanner -
-
Uses of ErrorMessages in jflex.core
Methods in jflex.core with parameters of type ErrorMessages Modifier and Type Method Description (package private) voidLexParse.CUP$LexParse$actions. fatalError(ErrorMessages message)(package private) voidLexParse.CUP$LexParse$actions. fatalError(ErrorMessages message, int line, int col)(package private) voidLexParse.CUP$LexParse$actions. syntaxError(ErrorMessages message)(package private) voidLexParse.CUP$LexParse$actions. syntaxError(ErrorMessages message, int line)(package private) voidLexParse.CUP$LexParse$actions. syntaxError(ErrorMessages message, int line, int col)(package private) voidLexParse.CUP$LexParse$actions. warning(ErrorMessages message, int line, int col) -
Uses of ErrorMessages in jflex.l10n
Fields in jflex.l10n with type parameters of type ErrorMessages Modifier and Type Field Description private static java.util.Set<ErrorMessages>ErrorMessages. configurableWarningsMethods in jflex.l10n that return ErrorMessages Modifier and Type Method Description static ErrorMessagesErrorMessages. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ErrorMessages[]ErrorMessages. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in jflex.l10n with parameters of type ErrorMessages Modifier and Type Method Description static java.lang.StringErrorMessages. get(ErrorMessages msg)Returns a localized representation of the error messages.static java.lang.StringErrorMessages. get(ErrorMessages msg, java.lang.Object... args)Returns an error message.static booleanErrorMessages. isConfigurableWarning(ErrorMessages msg)Check whether a warning is configurable. -
Uses of ErrorMessages in jflex.logging
Methods in jflex.logging with parameters of type ErrorMessages Modifier and Type Method Description static voidOut. error(java.io.File file, ErrorMessages message, int line, int column)print error message with location informationstatic voidOut. error(ErrorMessages message)print error message (code)static voidOut. error(ErrorMessages message, java.io.File file)IO error message for a file (displays file name in parentheses).static voidOut. error(ErrorMessages message, java.lang.String data)print error message with datastatic voidOut. println(ErrorMessages message, int data)Report generation progress.static voidOut. println(ErrorMessages message, java.lang.String data)Report generation progress.static voidOut. time(ErrorMessages message, Timer time)Report time statistic data.static voidOut. warning(java.io.File file, ErrorMessages message, int line, int column)print warning message with location informationstatic voidOut. warning(ErrorMessages message)print a warning message without line informationstatic voidOut. warning(ErrorMessages message, int line)Print a warning with line information.static voidOut. warning(ErrorMessages message, int line, java.lang.Object... args)Print a warning with line information and arguments.static voidOut. warning(ErrorMessages message, java.lang.Object... args)Print a warning message with arguments without line information -
Uses of ErrorMessages in jflex.option
Fields in jflex.option with type parameters of type ErrorMessages Modifier and Type Field Description private static java.util.Set<ErrorMessages>Options. suppressedWarningsWarnings that should not be printed.Methods in jflex.option with parameters of type ErrorMessages Modifier and Type Method Description static voidOptions. enable(ErrorMessages msg)Configure the given warning message to be enabled.static booleanOptions. isSuppressed(ErrorMessages msg)Returns true if the given warning message is suppressed (should not be printed and counted).static voidOptions. suppress(ErrorMessages msg)Configure the given warning message to be suppressed. -
Uses of ErrorMessages in jflex.scanner
Fields in jflex.scanner declared as ErrorMessages Modifier and Type Field Description ErrorMessagesScannerException. messageConstructors in jflex.scanner with parameters of type ErrorMessages Constructor Description ScannerException(java.io.File file, java.lang.String text, ErrorMessages message, int line, int column)ScannerException(java.io.File file, ErrorMessages message)Creates a new ScannerException for a file with a message only.ScannerException(java.io.File file, ErrorMessages message, int line)Creates a new ScannerException for a file with a message and line number.ScannerException(java.io.File file, ErrorMessages message, int line, int column)Creates a new ScannerException with a message, line number and column.ScannerException(ErrorMessages message)Creates a new ScannerException with a message only.ScannerException(ErrorMessages message, int line)Creates a new ScannerException with a message and line number.
-