Package org.jdesktop.wonderland.modules.xremwin.common.message

Examples of org.jdesktop.wonderland.modules.xremwin.common.message.TakeControlRequestMessage


     * @return true if the client has permission, or false if not
     */
    public boolean checkTakeControl(BigInteger clientID, CellID cellID) {
        ResponseMessage rm;
        try {
            rm = sendAndWait(new TakeControlRequestMessage(clientID, cellID));
        } catch (InterruptedException ie) {
            AppXrw.logger.log(Level.WARNING, "Check take control interruped", ie);
            return false;
        }

View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.xremwin.common.message.TakeControlRequestMessage

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.