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

Examples of org.pentaho.reporting.engine.classic.core.layout.model.PageAreaBox


    {
      // page cannot have borders ...
      final int type = box.getNodeType();
      if ((type & LayoutNodeTypes.MASK_BOX_PAGEAREA) == LayoutNodeTypes.MASK_BOX_PAGEAREA)
      {
        final PageAreaBox pageAreaBox = (PageAreaBox) box;
        final LogicalPageBox pageBox = pageAreaBox.getLogicalPage();
        if (pageBox == null)
        {
          return 0;
        }
        return pageBox.getPageWidth();
View Full Code Here


    {
      // page cannot have borders ...
      final int type = box.getNodeType();
      if ((type & LayoutNodeTypes.MASK_BOX_PAGEAREA) == LayoutNodeTypes.MASK_BOX_PAGEAREA)
      {
        final PageAreaBox pageAreaBox = (PageAreaBox) box;
        final LogicalPageBox pageBox = pageAreaBox.getLogicalPage();
        if (pageBox == null)
        {
          return 0;
        }
        return pageBox.getPageWidth();
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.layout.model.PageAreaBox

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.