Package org.pentaho.di.trans.step

Examples of org.pentaho.di.trans.step.StepIOMeta


   
 
  @Override
    public StepIOMetaInterface getStepIOMeta() {

    StepIOMetaInterface ioMeta = new StepIOMeta(true, true, true, false, !infoSteps.isEmpty(), !targetSteps.isEmpty());
     
      for (RoleStepMeta step : infoSteps) {
        ioMeta.addStream(new Stream(StreamType.INFO, step.getStepMeta(), step.getRoleName(), StreamIcon.INFO, null));
      }
      for (RoleStepMeta step : targetSteps) {
        ioMeta.addStream(new Stream(StreamType.TARGET, step.getStepMeta(), step.getRoleName(), StreamIcon.TARGET, null));
      }
     
      return ioMeta;
    }
View Full Code Here

TOP

Related Classes of org.pentaho.di.trans.step.StepIOMeta

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.