Package org.flexdock.perspective.restore.handlers

Examples of org.flexdock.perspective.restore.handlers.RestorationHandler


    public boolean restore(Dockable dockable) {
        if(dockable != null) {
            DockingState info = PerspectiveManager.getInstance().getDockingState(dockable, true);
            HashMap context = new HashMap();
            for(Iterator it=restorationHandlers.iterator(); it.hasNext();) {
                RestorationHandler handler = (RestorationHandler)it.next();
                if(handler.restore(dockable, info, context))
                    return true;
            }
        }

        return false;
View Full Code Here

TOP

Related Classes of org.flexdock.perspective.restore.handlers.RestorationHandler

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.