Package org.axsl.common.value

Examples of org.axsl.common.value.RelativeAlign


     */
    public DisplayAlign traitDisplayAlign(final FoContext context) {
        final FoValue foDisplayAlign = this.getPropertyList().getDisplayAlign(
                this, context);
        if (this.relativeAlignApplies()) {
            final RelativeAlign foRelativeAlign = this.traitRelativeAlign(
                    context);
            switch (foRelativeAlign) {
            case BEFORE: return DisplayAlign.BEFORE;
            case BASELINE: return DisplayAlign.BASELINE;
            }
View Full Code Here

TOP

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

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.