Examples of execute()


Examples of org.cfeclipse.cfml.snippets.commands.InsertSnippetCommand.execute()

   * fire off the passed-in action class.
   */

  public Object execute(ExecutionEvent event) throws ExecutionException {
    InsertSnippetCommand snippetCommand = new InsertSnippetCommand();
    return snippetCommand.execute(event);
  }

}
View Full Code Here

Examples of org.chiba.tools.schemabuilder.Schema2XForms.execute()

    builder.setOutputFile(f); // goes in chiba forms directory
    builder.setRootTagName(root);
    builder.setStylesheet("html4yawl.xsl");
    builder.setSubmitMethod("post");
    builder.setWrapperType("XHTML");
    builder.execute();
   
    deleteTempFile(filePath+File.separator+schema);
    deleteTempFile(filePath+File.separator+instance);
   
    fixFormParams(f);
View Full Code Here

Examples of org.chromium.debug.core.model.PushChangesPlan.execute()

          updater.updateAsync();
        }
      }
    };

    plan.execute(true, callback, null);
  }

  public interface Data {
    interface Visitor<R> {
      R visitSuccess(UpdatableScript.ChangeDescription changeDescription);
View Full Code Here

Examples of org.cishell.framework.algorithm.Algorithm.execute()

      ProgressTrackable pt = (ProgressTrackable) algo;
      pt.setProgressMonitor(new AlgorithmProgressMonitor());
    }
    try {

      Data[] data = algo.execute();
      return data;
    } catch (AlgorithmExecutionException e) {
      String logMessage = String.format(
          "The algorithm \"%s\" failed to execute", name,
          e.getMessage());
View Full Code Here

Examples of org.cishell.testing.convertertester.core.converter.graph.Converter.execute()

     
        // No parameters used.
        Hashtable<String, Object> parameters = new Hashtable<String, Object>();
       
        currentData =
          currentConverter.execute(currentData, parameters, fakeCIShellContext);
       
        if (currentData != null) {
          setMetadata(currentData, currentConverter);
          dataSoFar.add(currentData);
        }
View Full Code Here

Examples of org.cishell.testing.convertertester.core.tester2.ConverterTester2.execute()

             System.out.println("Executing tests...");
            
             ConverterTester2 ct = new ConverterTester2(log);
        
             if (testAllConvs) {
               ct.execute(convRefs,
                   new ReportGenerator[]
                      {allGen, allConvGen, allErrGen,
                   graphGen, origGraphGen, readmeGen},
                   cContext, bContext,
                   new HopFilter(numHops));
View Full Code Here

Examples of org.codehaus.activemq.service.TransactionTask.execute()

        }

        // Run the prePrepareTasks
        for (Iterator iter = prePrepareTasks.iterator(); iter.hasNext();) {
            TransactionTask r = (TransactionTask) iter.next();
            r.execute(broker);
        }
    }

    protected void postCommit() throws Throwable {
        // Run the postCommitTasks
View Full Code Here

Examples of org.codehaus.enunciate.main.Enunciate.execute()

    file.setDescription("my description 2.2");
    artifact2.addArtifact(file);

    enunciate.addArtifact(artifact1);
    enunciate.addArtifact(artifact2);
    enunciate.execute();

    File docsXml = new File(enunciate.getGenerateDir(), "docs/docs.xml");
    DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
    builderFactory.setValidating(false);
    DocumentBuilder builder = builderFactory.newDocumentBuilder();
View Full Code Here

Examples of org.codehaus.groovy.ant.Groovyc.execute()

    } catch (IOException e1) {
      throw new CompileProcessorException("writing file", e1);
    }
    destination.mkdir();
    try {
      g.execute();
    } catch (BuildException ex){
      throw new CompileProcessorException("Problem compiling", ex);
    }
    File testArchive = new File(ioTempFile, jarId + ".jar");
    JarArchiveOutputStream out = null;
View Full Code Here

Examples of org.codehaus.groovy.tools.shell.Groovysh.execute()

      setup.println( "import org.apache.hadoop.gateway.shell.workflow.Workflow;" );
      setup.println( "import java.util.concurrent.TimeUnit;" );
      //setup.println( "set verbosity QUIET;" );
      //setup.println( "set show-last-result false;" );
      Groovysh shell = new Groovysh();
      shell.execute( buffer.toString() );
      shell.run();
    }
  }

}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.