|
 |
|
|
Uses of Class org.eclipse.ltk.core.refactoring.RefactoringStatus
Methods in
org.eclipse.ltk.core.refactoring that return
RefactoringStatus
|
protected
RefactoringStatus
|
PerformRefactoringHistoryOperation.
aboutToPerformRefactoring
(
Refactoring refactoring,
RefactoringDescriptor descriptor,
IProgressMonitor monitor)
Hook method which is called when the specified refactoring is going to be
executed. |
RefactoringStatus
|
Refactoring.
checkAllConditions
(
IProgressMonitor pm)
Checks all conditions. |
abstract
RefactoringStatus
|
Refactoring.
checkFinalConditions
(
IProgressMonitor pm)
After checkInitialConditions has been performed and the user has
provided all input necessary to perform the refactoring this method is called
to check the remaining preconditions. |
abstract
RefactoringStatus
|
Refactoring.
checkInitialConditions
(
IProgressMonitor pm)
Checks some initial conditions based on the element to be refactored. |
static
RefactoringStatus
|
RefactoringStatus.
create
(
IStatus status)
Creates a new RefactoringStatus from the given IStatus . |
static
RefactoringStatus
|
RefactoringStatus.
createErrorStatus
(
String msg)
Creates a new RefactoringStatus with one ERROR entry
filled with the given message. |
static
RefactoringStatus
|
RefactoringStatus.
createErrorStatus
(
String msg,
RefactoringStatusContext context)
Creates a RefactoringStatus with one ERROR entry
fill with the given message and context. |
static
RefactoringStatus
|
RefactoringStatus.
createFatalErrorStatus
(
String msg)
Creates a new RefactoringStatus with one FATAL entry
filled with the given message. |
static
RefactoringStatus
|
RefactoringStatus.
createFatalErrorStatus
(
String msg,
RefactoringStatusContext context)
Creates a RefactoringStatus with one FATAL entry
fill with the given message and context. |
static
RefactoringStatus
|
RefactoringStatus.
createInfoStatus
(
String msg)
Creates a new RefactoringStatus with one INFO entry
filled with the given message. |
static
RefactoringStatus
|
RefactoringStatus.
createInfoStatus
(
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,
String msg,
RefactoringStatusContext context,
String pluginId,
int code,
Object data)
Creates a new RefactoringStatus with one entry filled with the given
arguments. |
static
RefactoringStatus
|
RefactoringStatus.
createWarningStatus
(
String msg)
Creates a new RefactoringStatus with one WARNING entry
filled with the given message. |
static
RefactoringStatus
|
RefactoringStatus.
createWarningStatus
(
String msg,
RefactoringStatusContext context)
Creates a RefactoringStatus with one WARNING entry
fill with the given message and context. |
RefactoringStatus
|
PerformChangeOperation.
getConditionCheckingStatus
()
Returns the status of the condition checking. |
RefactoringStatus
|
CreateChangeOperation.
getConditionCheckingStatus
()
Returns the status of the condition checking. |
RefactoringStatus
|
PerformRefactoringOperation.
getConditionStatus
()
Return the refactoring status of the condition checking. |
RefactoringStatus
|
PerformRefactoringHistoryOperation.
getExecutionStatus
()
Returns the execution status. |
RefactoringStatus
|
CheckConditionsOperation.
getStatus
()
Returns the outcome of the operation or null if an exception
has occurred while performing the operation or if the operation hasn't
been performed yet. |
RefactoringStatus
|
PerformChangeOperation.
getValidationStatus
()
Returns the refactoring status returned from the call IChange#isValid() . |
RefactoringStatus
|
PerformRefactoringOperation.
getValidationStatus
()
Returns the refactoring status of the change's validation checking
or null if a change couldn't be created or the operation
hasn't been performed yet. |
RefactoringStatus
|
DocumentChange.
isValid
(
IProgressMonitor pm)
Verifies that this change object is still valid and can be executed by calling
perform . |
abstract
RefactoringStatus
|
Change.
isValid
(
IProgressMonitor pm)
Verifies that this change object is still valid and can be executed by calling
perform . |
RefactoringStatus
|
UndoTextFileChange.
isValid
(
IProgressMonitor pm)
Verifies that this change object is still valid and can be executed by calling
perform . |
RefactoringStatus
|
TextFileChange.
isValid
(
IProgressMonitor monitor)
Verifies that this change object is still valid and can be executed by calling
perform . |
RefactoringStatus
|
MultiStateTextFileChange.
isValid
(
IProgressMonitor monitor)
|
RefactoringStatus
|
NullChange.
isValid
(
IProgressMonitor pm)
Verifies that this change object is still valid and can be executed by calling
perform . |
RefactoringStatus
|
CompositeChange.
isValid
(
IProgressMonitor pm)
Verifies that this change object is still valid and can be executed by calling
perform . |
Methods in
org.eclipse.ltk.core.refactoring.participants with parameters of type
RefactoringStatus
|
RefactoringParticipant[]
|
ParticipantExtensionPoint.
getParticipants
(
RefactoringStatus status,
RefactoringProcessor processor,
Object element,
RefactoringArguments arguments,
IParticipantDescriptorFilter filter,
String[] affectedNatures,
SharableParticipants shared)
Returns all participants for a given element. |
static
CopyParticipant[]
|
ParticipantManager.
loadCopyParticipants
(
RefactoringStatus status,
RefactoringProcessor processor,
Object element,
CopyArguments arguments,
IParticipantDescriptorFilter filter,
String[] affectedNatures,
SharableParticipants shared)
Loads the copy participants for the given element. |
static
CopyParticipant[]
|
ParticipantManager.
loadCopyParticipants
(
RefactoringStatus status,
RefactoringProcessor processor,
Object element,
CopyArguments arguments,
String[] affectedNatures,
SharableParticipants shared)
Loads the copy participants for the given element. |
static
CreateParticipant[]
|
ParticipantManager.
loadCreateParticipants
(
RefactoringStatus status,
RefactoringProcessor processor,
Object element,
CreateArguments arguments,
IParticipantDescriptorFilter filter,
String[] affectedNatures,
SharableParticipants shared)
Loads the create participants for the given element. |
static
CreateParticipant[]
|
ParticipantManager.
loadCreateParticipants
(
RefactoringStatus status,
RefactoringProcessor processor,
Object element,
CreateArguments arguments,
String[] affectedNatures,
SharableParticipants shared)
Loads the create participants for the given element. |
static
DeleteParticipant[]
|
ParticipantManager.
loadDeleteParticipants
(
RefactoringStatus status,
RefactoringProcessor processor,
Object element,
DeleteArguments arguments,
IParticipantDescriptorFilter filter,
String[] affectedNatures,
SharableParticipants shared)
Loads the delete participants for the given element. |
static
DeleteParticipant[]
|
ParticipantManager.
loadDeleteParticipants
(
RefactoringStatus status,
RefactoringProcessor processor,
Object element,
DeleteArguments arguments,
String[] affectedNatures,
SharableParticipants shared)
Loads the delete participants for the given element. |
static
MoveParticipant[]
|
ParticipantManager.
loadMoveParticipants
(
RefactoringStatus status,
RefactoringProcessor processor,
Object element,
MoveArguments arguments,
IParticipantDescriptorFilter filter,
String[] affectedNatures,
SharableParticipants shared)
Loads the move participants for the given element. |
static
MoveParticipant[]
|
ParticipantManager.
loadMoveParticipants
(
RefactoringStatus status,
RefactoringProcessor processor,
Object element,
MoveArguments arguments,
String[] affectedNatures,
SharableParticipants shared)
Loads the move participants for the given element. |
abstract
RefactoringParticipant[]
|
RefactoringProcessor.
loadParticipants
(
RefactoringStatus status,
SharableParticipants sharedParticipants)
Returns the array of participants. |
static
RenameParticipant[]
|
ParticipantManager.
loadRenameParticipants
(
RefactoringStatus status,
RefactoringProcessor processor,
Object element,
RenameArguments arguments,
IParticipantDescriptorFilter filter,
String[] affectedNatures,
SharableParticipants shared)
Loads the rename participants for the given element. |
static
RenameParticipant[]
|
ParticipantManager.
loadRenameParticipants
(
RefactoringStatus status,
RefactoringProcessor processor,
Object element,
RenameArguments arguments,
String[] affectedNatures,
SharableParticipants shared)
Loads the rename participants for the given element. |
boolean
|
IParticipantDescriptorFilter.
select
(
IConfigurationElement element,
RefactoringStatus status)
Returns whether the given element makes it through this filter. |
Guidelines for using Eclipse APIs.
Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.
|
|
|