Package org.jdesktop.wonderland.modules.placemarks.common

Examples of org.jdesktop.wonderland.modules.placemarks.common.PlacemarkNewMessage


     *
     * @param placemark The placemark to add
     */
    public void addPlacemark(Placemark placemark) {
        // Send a message to all other clients that a placemark has been added
        super.send(new PlacemarkNewMessage(placemark));
    }
View Full Code Here


    private static class PlacemarkUpdateListener
            implements PlacemarkListenerSrv, Serializable
    {

        public void placemarkAdded(Placemark placemark) {
            getConnection().send(new PlacemarkNewMessage(placemark));
        }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.placemarks.common.PlacemarkNewMessage

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.