Package org.axsl.common.value

Examples of org.axsl.common.value.TextAlignLast


     */
    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;
                }
            } else {
                textAlign = textAlignLast.getRelatedTextAlign();
            }
        }
        switch (textAlign) {
        case INSIDE: {
            if (this.getPage().getBindingEdge() == RelativeCompass.END) {
View Full Code Here

TOP

Related Classes of org.axsl.common.value.TextAlignLast

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.