Package org.openfaces.renderkit.cssparser

Examples of org.openfaces.renderkit.cssparser.StyleFontModel


    public void encodeBegin(FacesContext context, UIComponent component) throws IOException {
        GraphicText graphicText = (GraphicText) component;

        // default style properties
        StyleObjectModel styleModel = graphicText.getStyleObjectModel();
        StyleFontModel font = styleModel.getFont();
        String fontName = font.getName();
        int fontSize = font.getSize();
        int fontStyle = font.getStyle();

        String text = Rendering.convertToString(context, graphicText, graphicText.getValue());

        int direction = graphicText.getDirection();
View Full Code Here

TOP

Related Classes of org.openfaces.renderkit.cssparser.StyleFontModel

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.