void |
RefactoringStatus.addEntry(int severity,
java.lang.String msg,
RefactoringStatusContext context,
java.lang.String pluginId,
int code) |
Adds a new entry filled with the given arguments to this status.
|
void |
RefactoringStatus.addEntry(int severity,
java.lang.String msg,
RefactoringStatusContext context,
java.lang.String pluginId,
int code,
java.lang.Object data) |
Adds a new entry filled with the given arguments to this status.
|
void |
RefactoringStatus.addError(java.lang.String msg,
RefactoringStatusContext context) |
Adds an ERROR entry filled with the given message and context to
this status.
|
void |
RefactoringStatus.addFatalError(java.lang.String msg,
RefactoringStatusContext context) |
Adds a FATAL entry filled with the given message and status to
this status.
|
void |
RefactoringStatus.addInfo(java.lang.String msg,
RefactoringStatusContext context) |
Adds an INFO entry filled with the given message and context to
this status.
|
void |
RefactoringStatus.addWarning(java.lang.String msg,
RefactoringStatusContext context) |
Adds a WARNING entry filled with the given message and context to
this status.
|
static RefactoringStatus |
RefactoringStatus.createErrorStatus(java.lang.String msg,
RefactoringStatusContext context) |
Creates a RefactoringStatus with one ERROR entry
fill with the given message and context.
|
static RefactoringStatus |
RefactoringStatus.createFatalErrorStatus(java.lang.String msg,
RefactoringStatusContext context) |
Creates a RefactoringStatus with one FATAL entry
fill with the given message and context.
|
static RefactoringStatus |
RefactoringStatus.createInfoStatus(java.lang.String msg,
RefactoringStatusContext context) |
Creates a new RefactoringStatus with one INFO entry
filled with the given message and context.
|
static RefactoringStatus |
RefactoringStatus.createStatus(int severity,
java.lang.String msg,
RefactoringStatusContext context,
java.lang.String pluginId,
int code,
java.lang.Object data) |
Creates a new RefactoringStatus with one entry filled with the given
arguments.
|
static RefactoringStatus |
RefactoringStatus.createWarningStatus(java.lang.String msg,
RefactoringStatusContext context) |
Creates a RefactoringStatus with one WARNING entry
fill with the given message and context.
|