Package org.uguess.birt.report.engine.layout.wrapper.impl

Examples of org.uguess.birt.report.engine.layout.wrapper.impl.AreaFrame


    public void setTotalPage(ITextArea totalPage) {
    }

    protected void buildFrame(IArea area, boolean isContainer) {
        AreaFrame frame = new AreaFrame(area);

        AreaFrame parentFrame = frameStack.isEmpty() ? null
                : (AreaFrame) frameStack.peek();
        frame.setParent(parentFrame);
        if (parentFrame != null) {
            parentFrame.addChild(frame);
        }

        if (isContainer) {
            frameStack.push(frame);
        }
View Full Code Here

TOP

Related Classes of org.uguess.birt.report.engine.layout.wrapper.impl.AreaFrame

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.