Package org.jdesktop.wonderland.client.cell.properties.annotation

Examples of org.jdesktop.wonderland.client.cell.properties.annotation.PropertiesFactory


     */
    public static Class getServerStateClass(PropertiesFactorySPI factory) {
        // Fetch the server state class upon which this properties factory is
        // associated. We need this before adding to the map.
        Class clazz = factory.getClass();
        PropertiesFactory annotation = (PropertiesFactory)
                clazz.getAnnotation(PropertiesFactory.class);
        if (annotation == null) {
            logger.warning("Unable to find PropertiesFactory annotation on " +
                    clazz.getName());
            return null;
        }
        return annotation.value();
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.client.cell.properties.annotation.PropertiesFactory

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.