Package org.jrebirth.af.core.resource.style

Examples of org.jrebirth.af.core.resource.style.StyleSheetItemBase


     *
     * @return a new fresh file
     */
    public static StyleSheetItemBase create(final StyleSheetParams styleSheetParams) {

        final StyleSheetItemBase styleSheetItem = new StyleSheetItemBase(styleSheetParams);

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

        return styleSheetItem;
    }
View Full Code Here

TOP

Related Classes of org.jrebirth.af.core.resource.style.StyleSheetItemBase

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.