Package com.python.pydev.refactoring.wizards

Examples of com.python.pydev.refactoring.wizards.TextInputWizardPage


        inputPage = createInputPage(fInputPageDescription, fInitialSetting);
        addPage(inputPage);
    }

    protected TextInputWizardPage createInputPage(String message, String initialSetting) {
        return new TextInputWizardPage(message, true, initialSetting) {
            protected RefactoringStatus validateTextField(String text) {
                RefactoringStatus status = new RefactoringStatus();
                if (StringUtils.isWord(text)) {
                    req.inputName = text;
                } else {
View Full Code Here

TOP

Related Classes of com.python.pydev.refactoring.wizards.TextInputWizardPage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.