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

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


    final Band parent = r.getParent();
    if (parent instanceof RootLevelBand == false)
    {
      return false;
    }
    final RootLevelBand rlb = (RootLevelBand) parent;
    final SubReport[] reports = rlb.getSubReports();
    for (int i = 0; i < reports.length; i++)
    {
      final SubReport report = reports[i];
      if (r == report)
      {
View Full Code Here


      if (event.getType() == ReportModelEvent.NODE_PROPERTIES_CHANGED)
      {
        final Object element = event.getElement();
        if (element instanceof RootLevelBand)
        {
          final RootLevelBand band = (RootLevelBand) element;
          final boolean modelHide = ModelUtility.isHideInLayoutGui(band);
          final boolean stateShow = isShown(band);
          if (modelHide == stateShow)
          {
            refresh();
View Full Code Here

TOP

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

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.