Skip navigation links 
 
oracle.ide.migration
Class MigrationWizard
java.lang.Object
  
oracle.ide.migration.MigrationWizard
- 
public class MigrationWizard
 
- extends java.lang.Object
 
The class that runs the Migration Wizard where users can migration workspaces, projects, or IDE settings from an older version of JDeveloper to a newer version.
 
| Field Summary | 
static java.lang.String | 
USER_CANCELED_MIGRATION 
          Key used to track whether the user selected the Yes or No radio button on the Intro page of the wizard. | 
  
 
  
 
| Method Summary | 
static boolean | 
runWizard(java.lang.String title, java.lang.String welcome, java.lang.String summary, TraversableContext context, java.util.List<Step> pages) 
          Runs the MigrationWizard where users can choose what migration options they want and then migrate their files. | 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
 
USER_CANCELED_MIGRATION
public static final java.lang.String USER_CANCELED_MIGRATION
- Key used to track whether the user selected the Yes or No radio button on the Intro page of the wizard.
- See Also:
 
- Constant Field Values
 
 
MigrationWizard
public MigrationWizard()
runWizard
public static boolean runWizard(java.lang.String title,
                                java.lang.String welcome,
                                java.lang.String summary,
                                TraversableContext context,
                                java.util.List<Step> pages)
- Runs the MigrationWizard where users can choose what migration options they want and then migrate their files.
 
- 
- Parameters:
 
title - The title text for the Welcome page of the wizard. 
welcome - The description text for the wizard's Welcome page. 
summary - Description of the Parameter 
context - The TraversableContext for the wizard. The TraversableContext class provides the means for a Traversable to find the data objects that it is responsible for editing whenever it is entered or exited. 
pages - The list of Step objects specifying the steps in the wizard. Each Step must instantiate a panel that is a subclass of MigrationPanel in order for the migration wizard to work properly. 
- Returns:
 
- Returns 
true if the user opts to migrate files and finishes the wizard, false if the user cancels the wizard or chooses not to migrate files and clicks Finish. 
 
Skip navigation links 
 
Copyright © 1997, 2016, Oracle. All rights reserved.