Package org.python.pydev.refactoring.core.change

Examples of org.python.pydev.refactoring.core.change.IChangeProcessor


        this.requestProcessor = new ExtractLocalRequestProcessor(info);
    }

    @Override
    protected List<IChangeProcessor> getChangeProcessors() {
        IChangeProcessor changeProcessor = new ExtractLocalChangeProcessor(getName(), this.info, this.requestProcessor);
        return ListUtils.wrap(changeProcessor);
    }
View Full Code Here


        return status;
    }

    @Override
    public Change createChange(IProgressMonitor pm) {
        IChangeProcessor changeProcessor = new CompositeChangeProcessor(getName(), getChangeProcessors());

        try {
            return changeProcessor.createChange();
        } catch (MisconfigurationException e) {
            throw new RuntimeException(e);
        }
    }
View Full Code Here

TOP

Related Classes of org.python.pydev.refactoring.core.change.IChangeProcessor

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.