Package org.pentaho.reporting.engine.classic.core.modules.output.table.base

Examples of org.pentaho.reporting.engine.classic.core.modules.output.table.base.TableCutList


    ClassicEngineBoot.getInstance().start();
  }

  public void testPlainAdd()
  {
    final TableCutList list = new TableCutList(10, true);
    list.put(5000, Boolean.TRUE);
    list.put(15000, Boolean.TRUE);
    list.put(-85000, Boolean.TRUE);
    list.put(-5000, Boolean.TRUE);
    list.put(-15000, Boolean.TRUE);
    list.put(-25000, Boolean.TRUE);
    list.put(-35000, Boolean.TRUE);
    list.put(-45000, Boolean.TRUE);
    list.put(-55000, Boolean.TRUE);
    list.put(-65000, Boolean.TRUE);
    list.put(-75000, Boolean.TRUE);
    list.put(25000, Boolean.TRUE);
    list.put(35000, Boolean.TRUE);

    list.get(-95000);
    list.get(4900);
    list.get(5000);
    list.get(0);
    list.get(25000);
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.modules.output.table.base.TableCutList

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.