The extension point allows external tools to safely resolve problems happened in the SVN Team Core module due to external actions which cannot be resolved safelly in core context. org.eclipse.team.svn.core.crashrecovery The implementation of the extension point should return true if and only if error is handled by the extension. Must implements org.eclipse.team.svn.core.extension.crashrecovery.IResolutionHelper 0.7.0 /** * Provides ability to solve the problem which is unrecoverable in the core module context * * @author Alexander Gurov */ public interface IResolutionHelper { /** * The method provides resolution for errors about it is known * @param description structure which describes the error happened */ public boolean acquireResolution(ErrorDescription description); }