Package org.tigris.subversion.javahl

Examples of org.tigris.subversion.javahl.CopySource


        }
        return new long[0];
    }

    public void copy(String srcPath, String destPath, String message, Revision revision) throws ClientException {
        copy(new CopySource[]{new CopySource(srcPath, revision, null)}, destPath, message, true, false, null);
    }
View Full Code Here


        }
        return new long[0];
    }

    public void copy(String srcPath, String destPath, String message, Revision revision) throws ClientException {
        copy(new CopySource[]{new CopySource(srcPath, revision, null)}, destPath, message, true, false, null);
    }
View Full Code Here

TOP

Related Classes of org.tigris.subversion.javahl.CopySource

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.