Package org.tmatesoft.svn.core.wc

Examples of org.tmatesoft.svn.core.wc.SVNDiffStatus


    public void targetRevision(long revision) throws SVNException {
    }

    public void deleteEntry(String path, long revision) throws SVNException {
        SVNNodeKind kind = myRepository.checkPath(path, myRevision);
        SVNDiffStatus status = new SVNDiffStatus(new File(myAnchor, path), myRootURL.appendPath(path, false), path, SVNStatusType.STATUS_DELETED, false, kind);
        myHandler.handleDiffStatus(status);
    }
View Full Code Here


            myType = SVNStatusType.STATUS_NONE;
            myParent = parent;
        }
       
        public SVNDiffStatus toStatus() throws SVNException {
            return new SVNDiffStatus(new File(myAnchor, myPath), myRootURL.appendPath(myPath, false), myPath, myType, myPropChanged, myKind);
        }
View Full Code Here

    }

    public void deleteEntry(String path, long revision) throws SVNException {
        SVNNodeKind kind = myRepository.checkPath(path, myRevision);
        String statusPath = getStatusPath(path);
        SVNDiffStatus status = new SVNDiffStatus(myAnchor != null ? new Resource(myAnchor, path) : null, myRootURL.appendPath(path, false), statusPath, SVNStatusType.STATUS_DELETED, false, kind);
        myHandler.handleDiffStatus(status);
    }
View Full Code Here

            myFile = myAnchor != null ? new Resource(myAnchor, path) : null;
            myPath = getStatusPath(path);
        }
       
        public SVNDiffStatus toStatus() throws SVNException {
            return new SVNDiffStatus(myFile, myRootURL.appendPath(myPath, false), myPath, myType, myPropChanged, myKind);
        }
View Full Code Here

    public void targetRevision(long revision) throws SVNException {
    }

    public void deleteEntry(String path, long revision) throws SVNException {
        SVNNodeKind kind = myRepository.checkPath(path, myRevision);
        SVNDiffStatus status = new SVNDiffStatus(new File(myAnchor, path), myRootURL.appendPath(path, false), path, SVNStatusType.STATUS_DELETED, false, kind);
        myHandler.handleDiffStatus(status);
    }
View Full Code Here

            myType = SVNStatusType.STATUS_NONE;
            myParent = parent;
        }
       
        public SVNDiffStatus toStatus() throws SVNException {
            return new SVNDiffStatus(new File(myAnchor, myPath), myRootURL.appendPath(myPath, false), myPath, myType, myPropChanged, myKind);
        }
View Full Code Here

        if (changes == null) changes = list();
        SVNUpdateClient updateClient = new SVNUpdateClient(authManager, SVNWCUtil.createDefaultOptions(true));
        try {

            for (int idx = 0; idx < changes.size(); idx++) {
                SVNDiffStatus change = (SVNDiffStatus) changes.get(idx);
                File destination = new File(destinationDirectory + "\\" + change.getPath());
                updateClient.doExport(change.getURL(), destination, this.endingRevision, this.endingRevision, null, true, false);
            }
        } catch(Exception e) {
            throw new RuntimeException(e);
        }
    }
View Full Code Here

    public void targetRevision(long revision) throws SVNException {
    }

    public void deleteEntry(String path, long revision) throws SVNException {
        SVNNodeKind kind = myRepository.checkPath(path, myRevision);
        SVNDiffStatus status = new SVNDiffStatus(new File(myAnchor, path), myRootURL.appendPath(path, false), path, SVNStatusType.STATUS_DELETED, false, kind);
        myHandler.handleDiffStatus(status);
    }
View Full Code Here

            myType = SVNStatusType.STATUS_NONE;
            myParent = parent;
        }
       
        public SVNDiffStatus toStatus() throws SVNException {
            return new SVNDiffStatus(new File(myAnchor, myPath), myRootURL.appendPath(myPath, false), myPath, myType, myPropChanged, myKind);
        }
View Full Code Here

TOP

Related Classes of org.tmatesoft.svn.core.wc.SVNDiffStatus

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.