Examples of PdLetterSpacing


Examples of org.foray.fotree.fo.prop.PdLetterSpacing

        }
        case LEFT: {
            return new PdLeft(fobj, propertyFullName, attributeValue);
        }
        case LETTER_SPACING: {
            return new PdLetterSpacing(fobj, propertyFullName, attributeValue);
        }
        case LETTER_VALUE: {
            return new PdLetterValue(fobj, propertyFullName, attributeValue);
        }
        case LINE_HEIGHT: {
View Full Code Here

Examples of org.foray.fotree.fo.prop.PdLetterSpacing

     * @param subProperty The specific component to be returned.
     * @return The specified component of the letter-spacing property.
     */
    private int getLetterSpacing(final FObj fobj, final FoContext context,
            final LengthRange subProperty) {
        final PdLetterSpacing property = (PdLetterSpacing) getProperty(
                FoProperty.LETTER_SPACING);
        if (property != null) {
            return property.getValue(context, subProperty, fobj);
        }
        return PdLetterSpacing.getValueNoInstance(context, subProperty, fobj);
    }
View Full Code Here

Examples of org.foray.fotree.fo.prop.PdLetterSpacing

    /**
     * Returns the letter-spacing.conditionality property.
     * @return The letter-spacing.conditionality property.
     */
    public Conditionality traitLetterSpacingConditionality() {
        final PdLetterSpacing property = (PdLetterSpacing) getProperty(
                FoProperty.LETTER_SPACING);
        if (property != null) {
            return property.getConditionality();
        }
        return PdLetterSpacing.getConditionalityNoInstance();
    }
View Full Code Here

Examples of org.foray.fotree.fo.prop.PdLetterSpacing

    /**
     * Returns the letter-spacing.precedence property.
     * @return The letter-spacing.precedence property.
     */
    public int traitLetterSpacingPrecedence() {
        final PdLetterSpacing property = (PdLetterSpacing) getProperty(
                FoProperty.LETTER_SPACING);
        if (property != null) {
            return property.getPrecedence();
        }
        return PdLetterSpacing.getPrecedenceNoInstance();
    }
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.