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

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


                    super.put(key, revert);
                }
            }

            // notify listeners
            SharedData curData = (cur == null) ? null : cur.peek();
            SharedData revData = (revert == null) ? null : revert.peek();
            firePropertyChange(localSenderID, key, curData, revData);
        }
View Full Code Here


            // add the previous version to the reversion list
            addToReversionList(key, prev);

            // get the value to return before clearing the result
            SharedData out = null;
            if (prev != null) {
                out = prev.peek();

                // clear the previous value, so anyone waiting on it will get
                // this replacement
View Full Code Here

                    prev = revert;
                }
            }

            // notify listeners
            SharedData prevData = (prev == null) ? null : prev.peek();
            firePropertyChange(senderID, key, prevData, null);
        }
View Full Code Here

                    super.put(key, revert);
                }
            }
           
            // notify listeners
            SharedData curData = (cur == null) ? null : cur.peek();
            SharedData revData = (revert == null) ? null : revert.peek();
            firePropertyChange(localSenderID, key, curData, revData);
        }
View Full Code Here

TOP

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

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.