Package org.apache.ivyde.internal.eclipse.ui.menu.CleanCacheAction

Examples of org.apache.ivyde.internal.eclipse.ui.menu.CleanCacheAction.Cleanable


        addCleanable(menuManager, items, "Clean all caches", allCleanables);
        addCleanable(menuManager, items, "Clean the resolution cache", resolutionCleanables);
        addCleanable(menuManager, items, "Clean every repository cache", repositoryCleanables);
        Iterator itCleanble = resolutionCleanables.iterator();
        while (itCleanble.hasNext()) {
            Cleanable cleanable = (Cleanable) itCleanble.next();
            addCleanable(menuManager, items, "Clean the cache '" + cleanable.getName() + "'",
                Collections.singletonList(cleanable));
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.ivyde.internal.eclipse.ui.menu.CleanCacheAction.Cleanable

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.