Package org.apache.fop.layout.inline

Examples of org.apache.fop.layout.inline.InlineSpace


        this.absoluteHeight += size;
        this.currentHeight += size;
    }

    public void addInlineSpace(int size) {
        this.addChild(new InlineSpace(size));
        // other adjustments...
    }
View Full Code Here


        this.addChild(new DisplaySpace(size));
        this.currentHeight += size;
    }

    public void addInlineSpace(int size) {
        this.addChild(new InlineSpace(size));
        // other adjustments...
    }
View Full Code Here

TOP

Related Classes of org.apache.fop.layout.inline.InlineSpace

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.