Package org.jdesktop.wonderland.modules.sharedstate.common

Examples of org.jdesktop.wonderland.modules.sharedstate.common.SharedDouble


        public void putFloat(String key, float value) {
            put(key, SharedFloat.valueOf(value));
        }

        public double getDouble(String key) {
            SharedDouble value = get(key, SharedDouble.class);
            return (value == null ? 0.0 : value.getValue());
        }
View Full Code Here


    public void putFloat(String key, float value) {
        put(key, SharedFloat.valueOf(value));
    }

    public double getDouble(String key) {
        SharedDouble value = get(key, SharedDouble.class);
        return (value == null ? 0.0 : value.getValue());
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.sharedstate.common.SharedDouble

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.