Package org.flexdock.docking.state

Examples of org.flexdock.docking.state.FloatingGroup


            setFloatingGroup(dockable, group.getName());
        }
    }

    public void removeFromGroup(Dockable dockable) {
        FloatingGroup group = getGroup(dockable);
        if(dockable!=null) {
            if(group!=null)
                group.removeDockable(dockable.getPersistentId());
            setFloatingGroup(dockable, null);
        }

        // if the group is empty, dispose of it so we don't have
        // any memory leaks
        if(group!=null && group.getDockableCount()==0) {
            floatingGroups.remove(group.getName());
            group.destroy();
        }
    }
View Full Code Here

TOP

Related Classes of org.flexdock.docking.state.FloatingGroup

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.