Java Code Examples for org.eclipse.jdt.internal.ui.IJavaHelpContextIds#RENAME_FIELD_WIZARD_PAGE

The following examples show how to use org.eclipse.jdt.internal.ui.IJavaHelpContextIds#RENAME_FIELD_WIZARD_PAGE . 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: RenameEnumConstWizard.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 5 votes vote down vote up
@Override
protected RenameInputWizardPage createInputPage(String message, String initialSetting) {
	return new RenameInputWizardPage(message, IJavaHelpContextIds.RENAME_FIELD_WIZARD_PAGE, true, initialSetting) {

		@Override
		protected RefactoringStatus validateTextField(String text) {
			return validateNewName(text);
		}
	};
}
 
Example 2
Source File: RenameFieldWizard.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 5 votes vote down vote up
@Override
protected RenameInputWizardPage createInputPage(String message, String initialSetting) {
	return new RenameFieldInputWizardPage(message, IJavaHelpContextIds.RENAME_FIELD_WIZARD_PAGE, initialSetting) {
		@Override
		protected RefactoringStatus validateTextField(String text) {
			RefactoringStatus result= validateNewName(text);
			updateGetterSetterLabels();
			return result;
		}
	};
}
 
Example 3
Source File: RenameEnumConstWizard.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
public RenameEnumConstWizard(Refactoring refactoring) {
	super(refactoring, RefactoringMessages.RenameEnumConstWizard_defaultPageTitle, RefactoringMessages.RenameEnumConstWizard_inputPage_description, JavaPluginImages.DESC_WIZBAN_REFACTOR_FIELD, IJavaHelpContextIds.RENAME_FIELD_WIZARD_PAGE);
}
 
Example 4
Source File: RenameFieldWizard.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
public RenameFieldWizard(Refactoring refactoring) {
	super(refactoring, RefactoringMessages.RenameFieldWizard_defaultPageTitle,
		RefactoringMessages.RenameFieldWizard_inputPage_description,
		JavaPluginImages.DESC_WIZBAN_REFACTOR_FIELD,
		IJavaHelpContextIds.RENAME_FIELD_WIZARD_PAGE);
}