Package org.pentaho.mantle.client.workspace

Examples of org.pentaho.mantle.client.workspace.JsJobParam


      if ( editJob != null ) {
        JSONArray scheduleParams = new JSONArray();

        for ( int i = 0; i < editJob.getJobParams().length(); i++ ) {
          JsJobParam param = editJob.getJobParams().get( i );
          JsArrayString paramValue = (JsArrayString) JavaScriptObject.createArray().cast();
          paramValue.push( param.getValue() );
          JsSchedulingParameter p = (JsSchedulingParameter) JavaScriptObject.createObject().cast();
          p.setName( param.getName() );
          p.setType( "string" ); //$NON-NLS-1$
          p.setStringValue( paramValue );
          scheduleParams.set( i, new JSONObject( p ) );
        }
View Full Code Here

TOP

Related Classes of org.pentaho.mantle.client.workspace.JsJobParam

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.