Package org.python.pydev.customizations.app_engine.util

Examples of org.python.pydev.customizations.app_engine.util.AppEngineProcessWindow


public class AppEngineUpload extends AbstractAppEngineHandler {

    @Override
    protected void handleExecution(IContainer container, IPythonPathNature pythonPathNature, File appcfg,
            File appEngineLocation) {
        AppEngineProcessWindow processWindow = new AppEngineProcessWindow(PyAction.getShell());
        processWindow.setParameters(container, pythonPathNature, appcfg, appEngineLocation);
        processWindow.setInitialCommandToRun(AppEngineProcessWindow.getUpdateCommand(container));
        processWindow.open();
    }
View Full Code Here


*/
public class AppEngineManage extends AbstractAppEngineHandler {

    protected void handleExecution(IContainer container, IPythonPathNature pythonPathNature, File appcfg,
            File appEngineLocation) {
        AppEngineProcessWindow processWindow = new AppEngineProcessWindow(PyAction.getShell());
        processWindow.setParameters(container, pythonPathNature, appcfg, appEngineLocation);
        processWindow.open();
    }
View Full Code Here

TOP

Related Classes of org.python.pydev.customizations.app_engine.util.AppEngineProcessWindow

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.