Package org.pentaho.aggdes.algorithm.util.ArgumentUtils

Examples of org.pentaho.aggdes.algorithm.util.ArgumentUtils.TextProgress


  public void start(final Map<String, String> algorithmRawParams, final Callback callback) {
    // gen the params
    final Map<Parameter, Object> algorithmParams = ArgumentUtils.validateParameters(algorithm, algorithmRawParams);

    // Run the algorithm.
    final TextProgress progress = new TextProgress(pw);

    new Thread() {
      @Override
      public void run() {
        logger.debug("Calling algorithm run method with parameters: "+algorithmParams);
View Full Code Here

TOP

Related Classes of org.pentaho.aggdes.algorithm.util.ArgumentUtils.TextProgress

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.