Package org.jdesktop.wonderland.common.cell

Examples of org.jdesktop.wonderland.common.cell.ComponentLookupClass


     *
     * @param clazz The Class of the component
     * @return The Class used in the component lookup table
     */
    public static Class getLookupClass(Class clazz) {
        ComponentLookupClass l = (ComponentLookupClass) clazz.getAnnotation(ComponentLookupClass.class);
        if (l != null) {
            return l.value();
        }
        return clazz;
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.common.cell.ComponentLookupClass

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.