Package org.jrebirth.af.core.resource.font

Examples of org.jrebirth.af.core.resource.font.FontItemBase


     * @param fontParams the primitive values for the font
     *
     * @return a new fresh font item object
     */
    public static FontItemBase create(final FontParams fontParams) {
        final FontItemBase fontItem = new FontItemBase(fontParams);

        // Ensure that the uid will be unique at runtime
        fontItem.setUid(fontIdGenerator.incrementAndGet());

        return fontItem;
    }
View Full Code Here

TOP

Related Classes of org.jrebirth.af.core.resource.font.FontItemBase

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.