Examples of PdTreatAsWordSpace


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

        }
        case TOP: {
            return new PdTop(fobj, propertyFullName, attributeValue);
        }
        case TREAT_AS_WORD_SPACE: {
            return new PdTreatAsWordSpace(fobj, propertyFullName,
                    attributeValue);
        }
        case UNICODE_BIDI: {
            return new PdUnicodeBidi(fobj, propertyFullName, attributeValue);
        }
View Full Code Here

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

     * @return The treat-as-word-space property.
     */
    public boolean traitTreatAsWordSpace(final FObj fobj,
            final FoContext context,
            final char character) {
        final PdTreatAsWordSpace property = (PdTreatAsWordSpace)
                getProperty(FoProperty.TREAT_AS_WORD_SPACE);
        if (property != null) {
            return property.getValue(context, fobj, character);
        }
        return PdTreatAsWordSpace.getValueNoInstance(character);
    }
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.