Examples of performPositioning()


Examples of org.apache.fop.complexscripts.fonts.Positionable.performPositioning()

    /** {@inheritDoc} */
    public int[][] performPositioning ( CharSequence cs, String script, String language, int fontSize ) {
        if ( metric instanceof Positionable ) {
            Positionable p = (Positionable) metric;
            return p.performPositioning ( cs, script, language, fontSize );
        } else {
            throw new UnsupportedOperationException();
        }
    }

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.