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

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


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


        public void placemarkAdded(Placemark placemark) {
            getConnection().send(new PlacemarkNewMessage(placemark));
        }

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

TOP

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

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.