Package org.jrebirth.af.core.resource.color

Examples of org.jrebirth.af.core.resource.color.ColorItemBase


     * @param colorParams the primitive values for the color
     *
     * @return a new fresh color item object
     */
    public static ColorItem create(final ColorParams colorParams) {
        final ColorItemBase colorItem = new ColorItemBase(colorParams);

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

        return colorItem;
    }
View Full Code Here

TOP

Related Classes of org.jrebirth.af.core.resource.color.ColorItemBase

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.