Package org.pentaho.platform.api.engine

Examples of org.pentaho.platform.api.engine.IActionParameter.dispose()


      IActionParameter param = (IActionParameter) allParams.get( key );
      if ( param != null ) {
        if ( param != outputParam ) { // This is a trap for catching temp params that didn't get deleted at the end
                                      // of
                                      // the last loop
          param.dispose();
          param.setValue( outputParam.getValue() );
        }
      } else {
        addToAllInputs( key, outputParam );
      }
View Full Code Here


          ap = paramManager.getInput( name );
          if ( ap == null ) {
            ap = new ActionParameter( name, type, value, null, null );
            addInputParameter( name, ap );
          } else {
            ap.dispose();
            ap.setValue( value );
          }
        }
      }
      try {
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.