This web site requires JavaScript for proper operation. JavaScript is disabled on your browser.
packages...
org.violetlib.io
org.violetlib.test
org.violetlib.util
classes...
VUtils – Release 1
Interface org.violetlib.util .SimpleReporter
Deprecated: Show Hide
classes...
enum constants...
fields...
static methods...
constructors...
methods...
properties...
Modifier and Type
Method and Description
error
abstract void
error (String message)
Report an error.
void error (String message)
Report an error.
Parameters: message
- The error message.
formattedError
void
formattedError (String message,
Object... args)
Report an error using a constructed message.
void formattedError (String message,
Object... args)
Report an error using a constructed message.
The standard format specifiers are %q
, to include quoted text, %s
, to include
literal text, and %%
, to include a percent sign.
Parameters: message
- The basic error message, which may include format specifiers.args
- Arguments to include in the message, based on the format specifiers.
formattedInfo
void
formattedInfo (String message,
Object... args)
Report information using a constructed message.
void formattedInfo (String message,
Object... args)
Report information using a constructed message.
The standard format specifiers are %q
, to include quoted text, %s
, to include
literal text, and %%
, to include a percent sign.
Parameters: message
- The basic message, which may include format specifiers.args
- Arguments to include in the message, based on the format specifiers.
formattedWarning
void
formattedWarning (String message,
Object... args)
Issue a warning using a constructed message.
void formattedWarning (String message,
Object... args)
Issue a warning using a constructed message.
The standard format specifiers are %q
, to include quoted text, %s
, to include
literal text, and %%
, to include a percent sign.
Parameters: message
- The basic error message, which may include format specifiers.args
- Arguments to include in the message, based on the format specifiers.
info
abstract void
info (String message)
Report information.
void info (String message)
Report information.
Parameters: message
- The message.
warning
void
warning (String message)
Issue a warning.
void warning (String message)
Issue a warning.
Parameters: message
- The warning message.