Package ch.ethz.prose.tools

Examples of ch.ethz.prose.tools.RemoteAspectManager.withdraw()


        AspectManagerNode manager = getAspectManager();
        try {
            RemoteAspectManager remote = getAspectManager().getAspectManager();
            Object id = manager.getTransactionId();
            if (id == null)
                remote.withdraw(getAspect());
            else
                remote.withdraw(getAspect(), id);
            ProsePlugin.getDefault().fireAspectWithdrawn(this);
        } catch (ClassNotFoundException e) {
            throw new Error(e);
View Full Code Here


            RemoteAspectManager remote = getAspectManager().getAspectManager();
            Object id = manager.getTransactionId();
            if (id == null)
                remote.withdraw(getAspect());
            else
                remote.withdraw(getAspect(), id);
            ProsePlugin.getDefault().fireAspectWithdrawn(this);
        } catch (ClassNotFoundException e) {
            throw new Error(e);
        } catch (RemoteException e) {
            manager.getRun().setUnreachable();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.