Package org.exist.versioning.svn.wc.admin

Examples of org.exist.versioning.svn.wc.admin.SVNAdminClient


     *
     * @return an <b>SVNAdminClient</b> instance
     */
    public SVNAdminClient getAdminClient() {
        if (myAdminClient == null) {
            myAdminClient = new SVNAdminClient(this, myOptions);
            myAdminClient.setEventHandler(myEventHandler);
            myAdminClient.setDebugLog(getDebugLog());
            myAdminClient.setIgnoreExternals(myIsIgnoreExternals);
        }
        return myAdminClient;
View Full Code Here

TOP

Related Classes of org.exist.versioning.svn.wc.admin.SVNAdminClient

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.