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

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


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

TOP

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

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.