Package org.pentaho.reporting.engine.classic.core

Examples of org.pentaho.reporting.engine.classic.core.DataFactoryContext


    }
  }

  private void refreshStepList(final FileKettleQueryEntry fe) throws KettleException, ReportDataFactoryException
  {
    DataFactoryContext dataFactoryContext = getDesignTimeContext().getDataFactoryContext();
    final List<StepMeta> data = fe.getSteps(dataFactoryContext);
    stepsList.setListData(data.toArray(new StepMeta[data.size()]));
    final String selectedStepName = fe.getSelectedStep();
    if (selectedStepName != null)
    {
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.DataFactoryContext

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.