Package org.pentaho.platform.api.action

Examples of org.pentaho.platform.api.action.IDefinitionAwareAction


    List<String> outputNames = new ArrayList<String>();
    for ( IActionOutput output : actionDefintionOutputs ) {
      outputNames.add( output.getName() );
    }
    if ( actionBean instanceof IDefinitionAwareAction ) {
      IDefinitionAwareAction definitionAwareAction = (IDefinitionAwareAction) actionBean;
      definitionAwareAction.setInputNames( inputNames );
      definitionAwareAction.setOutputNames( outputNames );
    }

    //
    // Invoke any pre-execution processing if the Action requires it.
    //
View Full Code Here

TOP

Related Classes of org.pentaho.platform.api.action.IDefinitionAwareAction

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.