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

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


        public void putBoolean(String key, boolean value) {
            put(key, SharedBoolean.valueOf(value));
        }

        public byte getByte(String key) {
            SharedByte value = get(key, SharedByte.class);
            return (value == null ? 0 : value.getValue());
        }
View Full Code Here


    public void putBoolean(String key, boolean value) {
        put(key, SharedBoolean.valueOf(value));
    }

    public byte getByte(String key) {
        SharedByte value = get(key, SharedByte.class);
        return (value == null ? 0 : value.getValue());
    }
View Full Code Here

TOP

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

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.