Package lcmc.drbd.ui.resource

Examples of lcmc.drbd.ui.resource.VolumeInfo.updateMenus()


    /** Is called after right click on the resource edge. */
    @Override
    protected void handlePopupEdge(final Edge edge, final Point2D pos) {
        final VolumeInfo info = edgeToDrbdVolumeMap.get(edge);
        final JPopupMenu p = info.getPopup();
        info.updateMenus(pos);
        showPopup(p, pos);
    }

    /**
     * Is called after right click on the background and it returns
View Full Code Here


        super.removeMyselfNoConfirm(dcHost, runMode);
        if (oldDvi != null && Application.isLive(runMode)) {
            final Thread t = new Thread(new Runnable() {
                @Override
                public void run() {
                    oldDvi.updateMenus(null);
                }
            });
            t.start();
        }
    }
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.