Package org.eclipse.team.internal.ccvs.core

Examples of org.eclipse.team.internal.ccvs.core.ICVSResource.unmanage()


     *             the evolizer exception
     */
    public void unshareResource(IResource resource) throws EvolizerException {
        ICVSResource cvsResource = CVSWorkspaceRoot.getCVSResourceFor(resource);
        try {
            cvsResource.unmanage(new NullProgressMonitor());
        } catch (CVSException e) {
            throw new EvolizerException("Cannot unshare resource", e);
        }
    }

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.