Package org.netbeans.api.extexecution

Examples of org.netbeans.api.extexecution.ExecutionDescriptor


    public ExternalExecutor(ExternalProcessBuilder anExternalProcessBuilder, String aDisplayName) {
        externalProcessBuilder = anExternalProcessBuilder;
        this.displayName = aDisplayName;

        executionDescriptor = new ExecutionDescriptor().frontWindow(true).
                controllable(true).
                showProgress(true).
                showSuspended(true);
    }
View Full Code Here


     *
     * @param postExecution
     * @return execution descriptor
     */
    private ExecutionDescriptor getExecutionDescriptor(Runnable postExecution) {
        ExecutionDescriptor executionDescriptor = PhpExecutable.DEFAULT_EXECUTION_DESCRIPTOR
                .optionsPath(WordPressOptions.getOptionsPath());
        if (postExecution != null) {
            executionDescriptor = executionDescriptor.postExecution(postExecution);
        }
        return executionDescriptor;
    }
View Full Code Here

     * Get silent descriptor. Not show output window.
     *
     * @return descriptor
     */
    private ExecutionDescriptor getSilentDescriptor() {
        return new ExecutionDescriptor()
                .inputOutput(InputOutput.NULL);
    }
View Full Code Here

TOP

Related Classes of org.netbeans.api.extexecution.ExecutionDescriptor

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.