Java Code Examples for org.eclipse.jdt.internal.ui.JavaPluginImages#DESC_WIZBAN_REFACTOR

The following examples show how to use org.eclipse.jdt.internal.ui.JavaPluginImages#DESC_WIZBAN_REFACTOR . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RenameSourceFolderWizard.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 5 votes vote down vote up
public RenameSourceFolderWizard(Refactoring refactoring) {
	super(refactoring,
		RefactoringMessages.RenameSourceFolder_defaultPageTitle,
		RefactoringMessages.RenameSourceFolder_inputPage_description,
		JavaPluginImages.DESC_WIZBAN_REFACTOR,
		IJavaHelpContextIds.RENAME_SOURCE_FOLDER_WIZARD_PAGE);
}
 
Example 2
Source File: RenameJavaProjectWizard.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 5 votes vote down vote up
public RenameJavaProjectWizard(Refactoring refactoring) {
	super(refactoring,
		RefactoringMessages.RenameJavaProject_defaultPageTitle,
		RefactoringMessages.RenameJavaProject_inputPage_description,
		JavaPluginImages.DESC_WIZBAN_REFACTOR,
		IJavaHelpContextIds.RENAME_JAVA_PROJECT_WIZARD_PAGE);
}
 
Example 3
Source File: RenameLocalVariableWizard.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 5 votes vote down vote up
public RenameLocalVariableWizard(Refactoring refactoring) {
	super(
			refactoring,
			RefactoringMessages.RenameLocalVariableWizard_defaultPageTitle,
			RefactoringMessages.RenameTypeParameterWizard_inputPage_description,
			JavaPluginImages.DESC_WIZBAN_REFACTOR, IJavaHelpContextIds.RENAME_LOCAL_VARIABLE_WIZARD_PAGE);
}
 
Example 4
Source File: RenameTypeParameterWizard.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 2 votes vote down vote up
/**
 * Creates a new rename type parameter wizard.
 *
 * @param refactoring
 *        the refactoring to create the wizard for
 */
public RenameTypeParameterWizard(Refactoring refactoring) {
	super(refactoring, RefactoringMessages.RenameTypeParameterWizard_defaultPageTitle, RefactoringMessages.RenameTypeParameterWizard_inputPage_description, JavaPluginImages.DESC_WIZBAN_REFACTOR, IJavaHelpContextIds.RENAME_TYPE_PARAMETER_WIZARD_PAGE);
}