Package org.pentaho.reporting.engine.classic.core.layout.process.valign

Examples of org.pentaho.reporting.engine.classic.core.layout.process.valign.ReplacedContentAlignContext


        {
          alignContext.addChild(new TextElementAlignContext((RenderableText) next));
        }
        else if (next.getNodeType() == LayoutNodeTypes.TYPE_BOX_CONTENT)
        {
          alignContext.addChild(new ReplacedContentAlignContext((RenderableReplacedContentBox) next, 0));
        }
        else if ((next.getNodeType() & LayoutNodeTypes.MASK_BOX_BLOCK) == LayoutNodeTypes.MASK_BOX_BLOCK)
        {
          alignContext.addChild(new InlineBlockAlignContext((RenderBox) next));
        }
View Full Code Here


        {
          alignContext.addChild(new TextElementAlignContext((RenderableText) next));
        }
        else if (nodeType == LayoutNodeTypes.TYPE_BOX_CONTENT)
        {
          alignContext.addChild(new ReplacedContentAlignContext((RenderableReplacedContentBox) next, 0));
        }
        else if ((nodeType & LayoutNodeTypes.MASK_BOX_BLOCK) == LayoutNodeTypes.MASK_BOX_BLOCK)
        {
          alignContext.addChild(new InlineBlockAlignContext((RenderBox) next));
        }
View Full Code Here

      breakState.openContext(box);
      return true;
    }
    else if (nodeType == LayoutNodeTypes.TYPE_BOX_CONTENT)
    {
      breakState.getCurrentLine().addChild(new ReplacedContentAlignContext((RenderableReplacedContentBox) box, 0));
      return false;
    }

    breakState.getCurrentLine().addChild(new InlineBlockAlignContext(box));
    breakState.setSuspendItem(box.getInstanceId());
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.layout.process.valign.ReplacedContentAlignContext

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.