Package org.axsl.fo.fo.prop

Examples of org.axsl.fo.fo.prop.BaselineShiftPa


    public int traitBaselineShift() {
        /* TODO: Add an "Inline" super-interface to the aXSL FO Tree stuff so
         * that this can be cleaned up. */
        final Fo generatedBy = traitGeneratedBy();
        if (generatedBy instanceof BaselineShiftPa) {
            final BaselineShiftPa baselineShiftFo = (BaselineShiftPa)
                    generatedBy;
            final int baselineShift = baselineShiftFo.traitBaselineShift(this);
            return baselineShift;
        }
        return 0;
    }
View Full Code Here

TOP

Related Classes of org.axsl.fo.fo.prop.BaselineShiftPa

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.