Examples of traitTextAlignLast()


Examples of org.axsl.fo.fo.Block.traitTextAlignLast()

     */
    public TextAlign traitTextAlign() {
        final Block generatedBy = traitGeneratedBy();
        TextAlign textAlign = generatedBy.traitTextAlign(this);
        if (this.textAlignLastApplies()) {
            final TextAlignLast textAlignLast = generatedBy.traitTextAlignLast(
                    this);
            if (textAlignLast == TextAlignLast.RELATIVE) {
                if (textAlign == TextAlign.JUSTIFY) {
                    return TextAlign.START;
                }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.