Uses of Enum
jflex.l10n.ErrorMessages
Packages that use ErrorMessages
-
Uses of ErrorMessages in jflex.core
Methods in jflex.core with parameters of type ErrorMessagesModifier and TypeMethodDescription(package private) void
LexParse.CUP$LexParse$actions.fatalError
(ErrorMessages message) (package private) void
LexParse.CUP$LexParse$actions.fatalError
(ErrorMessages message, int line, int col) (package private) void
LexParse.CUP$LexParse$actions.syntaxError
(ErrorMessages message) (package private) void
LexParse.CUP$LexParse$actions.syntaxError
(ErrorMessages message, int line) (package private) void
LexParse.CUP$LexParse$actions.syntaxError
(ErrorMessages message, int line, int col) (package private) void
LexParse.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 ErrorMessagesModifier and TypeFieldDescriptionprivate static final Set
<ErrorMessages> ErrorMessages.configurableWarnings
Methods in jflex.l10n that return ErrorMessagesModifier and TypeMethodDescriptionstatic ErrorMessages
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 ErrorMessagesModifier and TypeMethodDescriptionstatic String
ErrorMessages.get
(ErrorMessages msg) Returns a localized representation of the error messages.static String
ErrorMessages.get
(ErrorMessages msg, Object... args) Returns an error message.static boolean
ErrorMessages.isConfigurableWarning
(ErrorMessages msg) Check whether a warning is configurable. -
Uses of ErrorMessages in jflex.logging
Methods in jflex.logging with parameters of type ErrorMessagesModifier and TypeMethodDescriptionstatic void
Out.error
(File file, ErrorMessages message, int line, int column) print error message with location informationstatic void
Out.error
(ErrorMessages message) print error message (code)static void
Out.error
(ErrorMessages message, File file) IO error message for a file (displays file name in parentheses).static void
Out.error
(ErrorMessages message, String data) print error message with datastatic void
Out.println
(ErrorMessages message, int data) Report generation progress.static void
Out.println
(ErrorMessages message, String data) Report generation progress.static void
Out.time
(ErrorMessages message, Timer time) Report time statistic data.static void
Out.warning
(File file, ErrorMessages message, int line, int column) print warning message with location informationstatic void
Out.warning
(ErrorMessages message) print a warning message without line informationstatic void
Out.warning
(ErrorMessages message, int line) Print a warning with line information.static void
Out.warning
(ErrorMessages message, int line, Object... args) Print a warning with line information and arguments.static void
Out.warning
(ErrorMessages message, 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 ErrorMessagesModifier and TypeFieldDescriptionprivate static final Set
<ErrorMessages> Options.suppressedWarnings
Warnings that should not be printed.Methods in jflex.option with parameters of type ErrorMessagesModifier and TypeMethodDescriptionstatic void
Options.enable
(ErrorMessages msg) Configure the given warning message to be enabled.static boolean
Options.isSuppressed
(ErrorMessages msg) Returns true if the given warning message is suppressed (should not be printed and counted).static void
Options.suppress
(ErrorMessages msg) Configure the given warning message to be suppressed. -
Uses of ErrorMessages in jflex.scanner
Fields in jflex.scanner declared as ErrorMessagesConstructors in jflex.scanner with parameters of type ErrorMessagesModifierConstructorDescriptionprivate
ScannerException
(File file, String text, ErrorMessages message, int line, int column) ScannerException
(File file, ErrorMessages message) Creates a new ScannerException for a file with a message only.ScannerException
(File file, ErrorMessages message, int line) Creates a new ScannerException for a file with a message and line number.ScannerException
(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.