Package com.softsizo.explorer.handlers

Examples of com.softsizo.explorer.handlers.SvnAnnotateHandler


     * @throws SVNException
     */
    private HashMap<String, Integer> annotateFile(VersionedFile versionedFile,
            long revision) throws SVNException {
        if(!versionedFile.isBinaryFile()){
            SvnAnnotateHandler annotateHandler = new SvnAnnotateHandler(versionedFile);
            svnClientProvider.doAnnotate(url, versionedFile.getFilename(), revision, annotateHandler);
            return annotateHandler.getLocByAuthor();
        }else{
            return new HashMap<String, Integer>(0);
        }
    }
View Full Code Here

TOP

Related Classes of com.softsizo.explorer.handlers.SvnAnnotateHandler

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.