Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

org.eclipse.ltk.ui.refactoring
Class RefactoringWizardOpenOperation


java.lang.Object
  extended by 
org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation

public class RefactoringWizardOpenOperation
extends Object

A helper class to open a refactoring wizard dialog. The class first checks the initial conditions of the refactoring and depending on its outcome the wizard dialog or an error dialog is shown.

Note: this class is not intended to be extended by clients.

Since:
3.0
Restriction:
This class is not intended to be subclassed by clients.

Field Summary
static int INITIAL_CONDITION_CHECKING_FAILED
          Constant (value 1025) indicating that the precondition check failed when opening a refactoring wizard dialog.
 
Constructor Summary
RefactoringWizardOpenOperation ( RefactoringWizard wizard)
          Creates a new refactoring wizard starter for the given wizard.
 
Method Summary
  RefactoringStatus getInitialConditionCheckingStatus ()
          Returns the outcome of the initial condition checking.
 int run ( Shell parent, String dialogTitle)
          Opens the refactoring dialog for the refactoring wizard passed to the constructor.
 
Methods inherited from class java.lang. Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

INITIAL_CONDITION_CHECKING_FAILED

public static final int INITIAL_CONDITION_CHECKING_FAILED
Constant (value 1025) indicating that the precondition check failed when opening a refactoring wizard dialog.

See Also:
run(Shell, String), Constant Field Values
Constructor Detail

RefactoringWizardOpenOperation

public RefactoringWizardOpenOperation(
RefactoringWizard wizard)
Creates a new refactoring wizard starter for the given wizard.

Parameters:
wizard - the wizard to open a dialog for
Method Detail

getInitialConditionCheckingStatus

public 
RefactoringStatus getInitialConditionCheckingStatus()
Returns the outcome of the initial condition checking.

Returns:
the outcome of the initial condition checking or null if the condition checking hasn't been performed yet

run

public int run(
Shell parent,
               
String dialogTitle)
        throws 
InterruptedException
Opens the refactoring dialog for the refactoring wizard passed to the constructor. The method first checks the initial conditions of the refactoring. If the condition checking returns a status with a severity of RefactoringStatus.FATAL then a message dialog is opened containing the corresponding status message. No wizard dialog is opened in this situation. If the condition checking passes then the refactoring dialog is opened.

The methods ensures that the workspace lock is held while the condition checking, change creation and change execution is performed. Clients can't make any assumption about the thread in which these steps are executed. However the framework ensures that the workspace lock is transfered to the thread in which the execution of the steps takes place.

Parameters:
parent - the parent shell for the dialog or null if the dialog is a top level dialog
dialogTitle - the dialog title of the message box presenting the failed condition check (if any)
Returns:
INITIAL_CONDITION_CHECKING_FAILED if the initial condition checking failed and no wizard dialog was presented. Otherwise either IDialogConstants.OK_ID or IDialogConstants.CANCEL_ID is returned depending on whether the user has pressed the OK or cancel button on the wizard dialog.
Throws:
InterruptedException - if the initial condition checking got canceled by the user.

Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire