Examples of traitBaselineShift()


Examples of org.axsl.fo.fo.prop.BaselineShiftPa.traitBaselineShift()

         * 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

Examples of org.foray.fotree.FObj.traitBaselineShift()

            case SUPER: {
                return computeSuperscript(fobj, context);
            }
            case INHERIT: {
                final FObj effectiveParent = fobj.effectiveParent(context);
                return effectiveParent.traitBaselineShift(context);
            }
            }
        }
        if (value().canEvalPercentage()) {
            /* TODO: This base value is almost certainly wrong. */
 
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.