Package org.apache.fop.afp.goca

Examples of org.apache.fop.afp.goca.GraphicsSetCharacterSet


     */
    public void setCharacterSet(int characterSet) {
        if (characterSet != graphicsState.characterSet) {
            graphicsState.characterSet = characterSet;
        }
        addObject(new GraphicsSetCharacterSet(characterSet));
    }
View Full Code Here


     *
     * @param characterSet the character set (font) reference
     */
    public void setCharacterSet(int characterSet) {
        if (characterSet != graphicsState.characterSet) {
            addObject(new GraphicsSetCharacterSet(characterSet));
            graphicsState.characterSet = characterSet;
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.fop.afp.goca.GraphicsSetCharacterSet

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.