Package org.pentaho.reporting.engine.classic.testcases.table.model

Examples of org.pentaho.reporting.engine.classic.testcases.table.model.SourceChunk


    for (int i = 0; i < list.size(); i++)
    {
      final Object o = list.get(i);
      if (o instanceof SourceChunk)
      {
        final SourceChunk chunk = (SourceChunk) o;
        flowRenderer.startSection(Renderer.TYPE_NORMALFLOW);
        flowRenderer.add(chunk.getRootBand(), runtime, null);
        flowRenderer.endSection();
      }
      else if (o instanceof ResultTable)
      {
        // perform the layouting first.
View Full Code Here


  }

  public Object getObject()
  {
    final Band band = (Band) super.getObject();
    return new SourceChunk(band);
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.testcases.table.model.SourceChunk

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.