Examples of DataFactory


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

      return new InheritedDataFactoryWrapper(compoundDataFactory.getReference(index));
    }
    else if (parent instanceof InheritedDataFactoryWrapper)
    {
      final InheritedDataFactoryWrapper idf = (InheritedDataFactoryWrapper) parent;
      final DataFactory dataFactory = idf.getDataFactory();
      final String[] queryNames = dataFactory.getQueryNames();
      return new ReportQueryNode(dataFactory, queryNames[index], false);
    }
    else
    {
      return super.getChild(parent, index);
View Full Code Here

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

      final InheritedDataFactoryWrapper wrapper = (InheritedDataFactoryWrapper) child;
      final CompoundDataFactory dataFactoryElement = getDataFactoryElement();
      for (int i = 0; i < dataFactoryElement.size(); i++)
      {
        final DataFactory dataFactory = dataFactoryElement.getReference(i);
        if (dataFactory == wrapper.getDataFactory())
        {
          return i;
        }
      }
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.