META-INF/
META-INF/MANIFEST.MF
META-INF/LICENSE.txt
org/
org/tmatesoft/
org/tmatesoft/svn/
org/tmatesoft/svn/core/
org/tmatesoft/svn/core/SVNErrorMessage.class
SVNErrorMessage.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNErrorMessage extends java.lang.Object implements java.io.Serializable { private static final long serialVersionUID public static final int TYPE_ERROR public static final int TYPE_WARNING private Object[] myObjects private String myMessage private org.tmatesoft.svn.core.SVNErrorCode myErrorCode private int myType private org.tmatesoft.svn.core.SVNErrorMessage myChildErrorMessage private Throwable myThrowable private boolean dontShowErrorCode private static final Object[] EMPTY_ARRAY public static org.tmatesoft.svn.core.SVNErrorMessage UNKNOWN_ERROR_MESSAGE public static org.tmatesoft.svn.core.SVNErrorMessage create (org.tmatesoft.svn.core.SVNErrorCode) org.tmatesoft.svn.core.SVNErrorCode code public static org.tmatesoft.svn.core.SVNErrorMessage create (org.tmatesoft.svn.core.SVNErrorCode, java.lang.String) org.tmatesoft.svn.core.SVNErrorCode code String message public static org.tmatesoft.svn.core.SVNErrorMessage create (org.tmatesoft.svn.core.SVNErrorCode, java.lang.Throwable) org.tmatesoft.svn.core.SVNErrorCode code Throwable cause public static org.tmatesoft.svn.core.SVNErrorMessage create (org.tmatesoft.svn.core.SVNErrorCode, java.lang.String, java.lang.Object) org.tmatesoft.svn.core.SVNErrorCode code String message Object object public static transient org.tmatesoft.svn.core.SVNErrorMessage create (org.tmatesoft.svn.core.SVNErrorCode, java.lang.String, java.lang.Object[]) org.tmatesoft.svn.core.SVNErrorCode code String message Object[] objects public static org.tmatesoft.svn.core.SVNErrorMessage create (org.tmatesoft.svn.core.SVNErrorCode, java.lang.String, int) org.tmatesoft.svn.core.SVNErrorCode code String message int type public static org.tmatesoft.svn.core.SVNErrorMessage create (org.tmatesoft.svn.core.SVNErrorCode, java.lang.String, java.lang.Object, int) org.tmatesoft.svn.core.SVNErrorCode code String message Object object int type public static org.tmatesoft.svn.core.SVNErrorMessage create (org.tmatesoft.svn.core.SVNErrorCode, java.lang.String, java.lang.Object[], int) org.tmatesoft.svn.core.SVNErrorCode code String message Object[] objects int type public static org.tmatesoft.svn.core.SVNErrorMessage create (org.tmatesoft.svn.core.SVNErrorCode, java.lang.String, java.lang.Object[], int, java.lang.Throwable) org.tmatesoft.svn.core.SVNErrorCode code String message Object[] objects int type Throwable cause protected void <init> (org.tmatesoft.svn.core.SVNErrorCode, java.lang.String, java.lang.Object[], java.lang.Throwable, int) org.tmatesoft.svn.core.SVNErrorCode code String message Object[] relatedObjects Throwable th int type public int getType () public org.tmatesoft.svn.core.SVNErrorCode getErrorCode () public java.lang.String getMessage () public java.lang.String getFullMessage () org.tmatesoft.svn.core.SVNErrorMessage err StringBuffer buffer public java.lang.String getMessageTemplate () public java.lang.Object[] getRelatedObjects () public org.tmatesoft.svn.core.SVNErrorMessage getChildErrorMessage () public boolean hasChildErrorMessage () public java.lang.Throwable getCause () public java.lang.String toString () StringBuffer line public boolean isErrorCodeShouldShown () public void setChildErrorMessage (org.tmatesoft.svn.core.SVNErrorMessage) org.tmatesoft.svn.core.SVNErrorMessage childMessage org.tmatesoft.svn.core.SVNErrorMessage parent org.tmatesoft.svn.core.SVNErrorMessage child public org.tmatesoft.svn.core.SVNErrorMessage wrap (java.lang.String) String parentMessage org.tmatesoft.svn.core.SVNErrorMessage parentError public org.tmatesoft.svn.core.SVNErrorMessage wrap (java.lang.String, java.lang.Object) String parentMessage Object relatedObject org.tmatesoft.svn.core.SVNErrorMessage parentError public org.tmatesoft.svn.core.SVNErrorMessage wrap (java.lang.String, java.lang.Object[]) String parentMessage Object[] relatedObjects org.tmatesoft.svn.core.SVNErrorMessage parentError public boolean isWarning () public boolean setType (int) int type public org.tmatesoft.svn.core.SVNErrorMessage getRootErrorMessage () org.tmatesoft.svn.core.SVNErrorMessage err public boolean isDontShowErrorCode () public void setDontShowErrorCode (boolean) boolean dontShowErrorCode public org.tmatesoft.svn.core.SVNErrorMessage findChildWithErrorCode (org.tmatesoft.svn.core.SVNErrorCode) org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.SVNErrorCode errorCode java.util.Set seen public boolean hasChildWithErrorCode (org.tmatesoft.svn.core.SVNErrorCode) org.tmatesoft.svn.core.SVNErrorCode errorCode public void initCause (java.lang.Throwable) Throwable cause static void <clinit> () }
org/tmatesoft/svn/core/SVNLogEntryPath.class
SVNLogEntryPath.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNLogEntryPath extends java.lang.Object implements java.io.Serializable { private static final long serialVersionUID public static final char TYPE_ADDED public static final char TYPE_DELETED public static final char TYPE_MODIFIED public static final char TYPE_REPLACED private String myPath private char myType private String myCopyPath private long myCopyRevision private org.tmatesoft.svn.core.SVNNodeKind myNodeKind public void <init> (java.lang.String, char, java.lang.String, long) String path char type String copyPath long copyRevision public void <init> (java.lang.String, char, java.lang.String, long, org.tmatesoft.svn.core.SVNNodeKind) String path char type String copyPath long copyRevision org.tmatesoft.svn.core.SVNNodeKind kind public java.lang.String getCopyPath () public long getCopyRevision () public java.lang.String getPath () public char getType () public org.tmatesoft.svn.core.SVNNodeKind getKind () public void setPath (java.lang.String) String path protected void setChangeType (char) char type protected void setCopyRevision (long) long revision protected void setCopyPath (java.lang.String) String path protected void setNodeKind (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind nodeKind public int hashCode () int PRIME int result public boolean equals (java.lang.Object) Object obj org.tmatesoft.svn.core.SVNLogEntryPath other public java.lang.String toString () StringBuffer result }
org/tmatesoft/svn/core/SVNException.class
SVNException.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNException extends java.lang.Exception { private static final long serialVersionUID private org.tmatesoft.svn.core.SVNErrorMessage myErrorMessage public void <init> (org.tmatesoft.svn.core.SVNErrorMessage) org.tmatesoft.svn.core.SVNErrorMessage errorMessage public void <init> (org.tmatesoft.svn.core.SVNErrorMessage, java.lang.Throwable) org.tmatesoft.svn.core.SVNErrorMessage childMessages org.tmatesoft.svn.core.SVNErrorMessage parent org.tmatesoft.svn.core.SVNErrorMessage errorMessage Throwable cause public org.tmatesoft.svn.core.SVNErrorMessage getErrorMessage () public java.lang.String getMessage () org.tmatesoft.svn.core.SVNErrorMessage error public boolean isEnoent () org.tmatesoft.svn.core.SVNErrorCode errorCode }
org/tmatesoft/svn/core/SVNPropertyValue.class
SVNPropertyValue.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNPropertyValue extends java.lang.Object implements java.io.Serializable { private static final long serialVersionUID private String myValue private byte[] myData public static org.tmatesoft.svn.core.SVNPropertyValue create (java.lang.String, byte[], int, int) java.io.UnsupportedEncodingException e String value String propertyName byte[] data int offset int length public static org.tmatesoft.svn.core.SVNPropertyValue create (java.lang.String, byte[]) String propertyName byte[] data public static org.tmatesoft.svn.core.SVNPropertyValue create (java.lang.String) String propertyValue public static byte[] getPropertyAsBytes (org.tmatesoft.svn.core.SVNPropertyValue) java.io.UnsupportedEncodingException e org.tmatesoft.svn.core.SVNPropertyValue value public static java.lang.String getPropertyAsString (org.tmatesoft.svn.core.SVNPropertyValue) java.io.UnsupportedEncodingException e org.tmatesoft.svn.core.SVNPropertyValue value public boolean isBinary () public byte[] getBytes () public boolean isString () public java.lang.String getString () public java.lang.String toString () public boolean equals (java.lang.Object) org.tmatesoft.svn.core.SVNPropertyValue value Object obj public int hashCode () private void <init> (byte[], int, int) byte[] data int offset int length private void <init> (java.lang.String) String propertyValue }
org/tmatesoft/svn/core/SVNCommitInfo.class
SVNCommitInfo.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNCommitInfo extends java.lang.Object { public static final org.tmatesoft.svn.core.SVNCommitInfo NULL private long myNewRevision private java.util.Date myDate private String myAuthor private org.tmatesoft.svn.core.SVNErrorMessage myErrorMessage public void <init> (long, java.lang.String, java.util.Date) long revision String author java.util.Date date public void <init> (long, java.lang.String, java.util.Date, org.tmatesoft.svn.core.SVNErrorMessage) long revision String author java.util.Date date org.tmatesoft.svn.core.SVNErrorMessage error public long getNewRevision () public java.lang.String getAuthor () public java.util.Date getDate () public org.tmatesoft.svn.core.SVNErrorMessage getErrorMessage () public org.tmatesoft.svn.core.SVNException getError () public java.lang.String toString () StringBuffer sb static void <clinit> () }
org/tmatesoft/svn/core/SVNAnnotationGenerator$BlameChunk.class
SVNAnnotationGenerator.java package org.tmatesoft.svn.core org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk extends java.lang.Object { public int blockStart public long revision public String author public java.util.Date date public String path private void <init> () public void copy (org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk) org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk chunk public java.lang.String toString () StringBuffer buf synthetic void <init> (org.tmatesoft.svn.core.SVNAnnotationGenerator$1) org.tmatesoft.svn.core.SVNAnnotationGenerator$1 x0 }
org/tmatesoft/svn/core/SVNAuthenticationException.class
SVNAuthenticationException.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNAuthenticationException extends org.tmatesoft.svn.core.SVNException { private static final long serialVersionUID public void <init> (org.tmatesoft.svn.core.SVNErrorMessage, java.lang.Throwable) org.tmatesoft.svn.core.SVNErrorMessage errorMessage Throwable cause public void <init> (org.tmatesoft.svn.core.SVNErrorMessage) org.tmatesoft.svn.core.SVNErrorMessage errorMessage }
org/tmatesoft/svn/core/SVNDirEntry.class
SVNDirEntry.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNDirEntry extends java.lang.Object implements java.lang.Comparable { public static final int DIRENT_KIND public static final int DIRENT_SIZE public static final int DIRENT_HAS_PROPERTIES public static final int DIRENT_CREATED_REVISION public static final int DIRENT_TIME public static final int DIRENT_LAST_AUTHOR public static final int DIRENT_COMMIT_MESSAGE public static final int DIRENT_ALL private String myName private org.tmatesoft.svn.core.SVNNodeKind myKind private long mySize private boolean myHasProperties private long myRevision private java.util.Date myCreatedDate private String myLastAuthor private String myPath private String myCommitMessage private org.tmatesoft.svn.core.SVNLock myLock private org.tmatesoft.svn.core.SVNURL myURL private org.tmatesoft.svn.core.SVNURL myRepositoryRoot public void <init> (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, long, boolean, long, java.util.Date, java.lang.String) org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL repositoryRoot String name org.tmatesoft.svn.core.SVNNodeKind kind long size boolean hasProperties long revision java.util.Date createdDate String lastAuthor public void <init> (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, long, boolean, long, java.util.Date, java.lang.String, java.lang.String) org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL repositoryRoot String name org.tmatesoft.svn.core.SVNNodeKind kind long size boolean hasProperties long revision java.util.Date createdDate String lastAuthor String commitMessage public org.tmatesoft.svn.core.SVNURL getURL () public org.tmatesoft.svn.core.SVNURL getRepositoryRoot () public java.lang.String getName () public long getSize () public long size () public boolean hasProperties () public org.tmatesoft.svn.core.SVNNodeKind getKind () public java.util.Date getDate () public long getRevision () public java.lang.String getAuthor () public java.lang.String getRelativePath () public java.lang.String getPath () public java.lang.String getCommitMessage () public org.tmatesoft.svn.core.SVNLock getLock () public void setName (java.lang.String) String name public void setRelativePath (java.lang.String) String path public void setCommitMessage (java.lang.String) String message public void setLock (org.tmatesoft.svn.core.SVNLock) org.tmatesoft.svn.core.SVNLock lock public java.lang.String toString () StringBuffer result public int compareTo (java.lang.Object) Object o org.tmatesoft.svn.core.SVNNodeKind otherKind String otherURL }
org/tmatesoft/svn/core/SVNLock.class
SVNLock.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNLock extends java.lang.Object { private String myPath private String myID private String myOwner private String myComment private java.util.Date myCreationDate private java.util.Date myExpirationDate public void <init> (java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.Date, java.util.Date) String path String id String owner String comment java.util.Date created java.util.Date expires public java.lang.String getComment () public java.util.Date getCreationDate () public java.util.Date getExpirationDate () public java.lang.String getID () public java.lang.String getOwner () public java.lang.String getPath () public java.lang.String toString () StringBuffer result }
org/tmatesoft/svn/core/SVNMergeRange.class
SVNMergeRange.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNMergeRange extends java.lang.Object implements java.lang.Comparable { private long myStartRevision private long myEndRevision private boolean myIsInheritable public void <init> (long, long, boolean) long startRevision long endRevision boolean isInheritable public long getEndRevision () public long getStartRevision () public void setEndRevision (long) long endRevision public void setStartRevision (long) long startRevision public int compareTo (java.lang.Object) Object o org.tmatesoft.svn.core.SVNMergeRange range public boolean equals (java.lang.Object) Object obj public org.tmatesoft.svn.core.SVNMergeRange combine (org.tmatesoft.svn.core.SVNMergeRange, boolean) org.tmatesoft.svn.core.SVNMergeRange range boolean considerInheritance public boolean canCombine (org.tmatesoft.svn.core.SVNMergeRange, boolean) org.tmatesoft.svn.core.SVNMergeRange range boolean considerInheritance public boolean contains (org.tmatesoft.svn.core.SVNMergeRange, boolean) org.tmatesoft.svn.core.SVNMergeRange range boolean considerInheritance public boolean intersects (org.tmatesoft.svn.core.SVNMergeRange, boolean) org.tmatesoft.svn.core.SVNMergeRange range boolean considerInheritance public org.tmatesoft.svn.core.SVNMergeRange swapEndPoints () long tmp public boolean isInheritable () public void setInheritable (boolean) boolean isInheritable public org.tmatesoft.svn.core.SVNMergeRange dup () public java.lang.String toString () String output }
org/tmatesoft/svn/core/SVNProperties.class
SVNProperties.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNProperties extends java.lang.Object implements java.lang.Cloneable java.io.Serializable { private static final long serialVersionUID private java.util.Map myProperties public static org.tmatesoft.svn.core.SVNProperties wrap (java.util.Map) Object n Object value org.tmatesoft.svn.core.SVNPropertyValue v java.util.Iterator names java.util.Map map java.util.Map propertiesMap public static org.tmatesoft.svn.core.SVNProperties unmodifiableProperties (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties properties java.util.Map propertiesMap public void <init> () public void <init> (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties properties private void <init> (java.util.Map) java.util.Map properties public java.util.Map asMap () public void put (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public void put (java.lang.String, java.lang.String) String propertyName String propertyValue public void put (java.lang.String, byte[]) String propertyName byte[] propertyValue public java.lang.String getStringValue (java.lang.String) String propertyName org.tmatesoft.svn.core.SVNPropertyValue value public byte[] getBinaryValue (java.lang.String) String propertyName org.tmatesoft.svn.core.SVNPropertyValue value public org.tmatesoft.svn.core.SVNPropertyValue getSVNPropertyValue (java.lang.String) String propertyName public org.tmatesoft.svn.core.SVNPropertyValue remove (java.lang.String) String propertyName public void putAll (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties properties public boolean isEmpty () public void clear () public void removeNullValues () String name java.util.Iterator iterator public int size () public boolean containsName (java.lang.String) String propertyName public java.util.Set nameSet () public boolean containsValue (org.tmatesoft.svn.core.SVNPropertyValue) org.tmatesoft.svn.core.SVNPropertyValue value public java.util.Collection values () public org.tmatesoft.svn.core.SVNProperties getRegularProperties () String propName java.util.Iterator propNamesIter org.tmatesoft.svn.core.SVNProperties result public org.tmatesoft.svn.core.SVNProperties compareTo (org.tmatesoft.svn.core.SVNProperties) String missing java.util.Iterator props String added java.util.Iterator props String changed org.tmatesoft.svn.core.SVNPropertyValue value1 org.tmatesoft.svn.core.SVNPropertyValue value2 java.util.Iterator props org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.SVNProperties result java.util.Collection props1 java.util.Collection props2 java.util.Collection tmp public int hashCode () public boolean equals (java.lang.Object) Object obj org.tmatesoft.svn.core.SVNProperties other public java.lang.Object clone () throws java.lang.CloneNotSupportedException CloneNotSupportedException cnse org.tmatesoft.svn.core.SVNProperties result public java.lang.String toString () }
org/tmatesoft/svn/core/SVNNodeKind.class
SVNNodeKind.java package org.tmatesoft.svn.core public final org.tmatesoft.svn.core.SVNNodeKind extends java.lang.Object implements java.lang.Comparable java.io.Serializable { private static final long serialVersionUID public static final org.tmatesoft.svn.core.SVNNodeKind NONE public static final org.tmatesoft.svn.core.SVNNodeKind FILE public static final org.tmatesoft.svn.core.SVNNodeKind DIR public static final org.tmatesoft.svn.core.SVNNodeKind UNKNOWN private int myID private void <init> (int) int id public static org.tmatesoft.svn.core.SVNNodeKind parseKind (java.lang.String) String kind public java.lang.String toString () public int compareTo (java.lang.Object) Object o int otherID private void writeObject (java.io.ObjectOutputStream) throws java.io.IOException java.io.ObjectOutputStream os private void readObject (java.io.ObjectInputStream) throws java.io.IOException java.io.ObjectInputStream is private java.lang.Object readResolve () private static org.tmatesoft.svn.core.SVNNodeKind fromID (int) int id static void <clinit> () }
org/tmatesoft/svn/core/SVNAnnotationGenerator.class
SVNAnnotationGenerator.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNAnnotationGenerator extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNFileRevisionHandler { private java.io.File myTmpDirectory private boolean myIsTmpDirCreated private String myPath private long myCurrentRevision private String myCurrentAuthor private java.util.Date myCurrentDate private boolean myIsCurrentResultOfMerge private String myCurrentPath private java.io.File myPreviousFile private java.io.File myPreviousOriginalFile private java.io.File myCurrentFile private java.util.List myMergeBlameChunks private java.util.List myBlameChunks private org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor myDeltaProcessor private org.tmatesoft.svn.core.wc.ISVNEventHandler myCancelBaton private long myStartRevision private boolean myIsForce private boolean myIncludeMergedRevisions private org.tmatesoft.svn.core.wc.SVNDiffOptions myDiffOptions private de.regnis.q.sequence.line.simplifier.QSequenceLineSimplifier mySimplifier private org.tmatesoft.svn.core.wc.ISVNAnnotateHandler myFileHandler private String myEncoding private boolean myIsLastRevisionReported public void <init> (java.lang.String, java.io.File, long, org.tmatesoft.svn.core.wc.ISVNEventHandler) String path java.io.File tmpDirectory long startRevision org.tmatesoft.svn.core.wc.ISVNEventHandler cancelBaton public void <init> (java.lang.String, java.io.File, long, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler) String path java.io.File tmpDirectory long startRevision boolean force org.tmatesoft.svn.core.wc.ISVNEventHandler cancelBaton public void <init> (java.lang.String, java.io.File, long, boolean, org.tmatesoft.svn.core.wc.SVNDiffOptions, org.tmatesoft.svn.core.wc.ISVNEventHandler) String path java.io.File tmpDirectory long startRevision boolean force org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions org.tmatesoft.svn.core.wc.ISVNEventHandler cancelBaton public void <init> (java.lang.String, java.io.File, long, boolean, boolean, org.tmatesoft.svn.core.wc.SVNDiffOptions, java.lang.String, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, org.tmatesoft.svn.core.wc.ISVNEventHandler) String path java.io.File tmpDirectory long startRevision boolean force boolean includeMergedRevisions org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions String encoding org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler org.tmatesoft.svn.core.wc.ISVNEventHandler cancelBaton public void openRevision (org.tmatesoft.svn.core.io.SVNFileRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File file org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.io.SVNFileRevision fileRevision org.tmatesoft.svn.core.SVNProperties propDiff String newMimeType boolean known org.tmatesoft.svn.core.SVNProperties props public void closeRevision (java.lang.String) throws org.tmatesoft.svn.core.SVNException String token public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String token String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String token org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException boolean generate String token public void addFileBlame (java.io.InputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.InputStream contents java.io.OutputStream os public boolean isLastRevisionReported () public void reportAnnotations (org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk chunk org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk mergedChunk String line boolean isEOF int lineNo org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk chunk String mergedAuthor long mergedRevision java.util.Date mergedDate String mergedPath org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk nextChunk int i StringBuffer buffer org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding int mergedCount java.nio.charset.CharsetDecoder decoder java.io.InputStream stream public void dispose () private java.util.List addFileBlame (java.io.File, java.io.File, java.util.List) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk chunk de.regnis.q.sequence.QSequenceDifferenceBlock block int i java.util.List blocksList de.regnis.q.sequence.line.QSequenceLineResult result org.tmatesoft.svn.core.SVNErrorMessage err Throwable e java.io.File previousFile java.io.File currentFile java.util.List chain java.io.RandomAccessFile left java.io.RandomAccessFile right private void insertBlameChunk (long, java.lang.String, java.util.Date, java.lang.String, int, int, java.util.List) org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk insert org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk middle org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk insert long revision String author java.util.Date date String path int start int length java.util.List chain int[] index org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk startPoint int adjustFromIndex private void deleteBlameChunk (int, int, java.util.List) int i int deleteCount int start int length java.util.List chain int[] ind org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk first int firstInd org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk last int lastInd int tailInd org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk tail private void adjustBlameChunks (java.util.List, int, int) org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk curChunk int i java.util.List chain int startIndex int adjust private org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk findBlameChunk (java.util.List, int, int[]) org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk chunk java.util.Iterator chunks java.util.List chain int offset int[] index org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk prevChunk private void normalizeBlames (java.util.List, java.util.List) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk tmpChunk org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk tmpChunk org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk chunk org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk mergedChunk org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk nextChunk org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk nextMergedChunk org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk chunk org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk mergedChunk org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk insert org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk mergedChunk org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk chunk org.tmatesoft.svn.core.SVNAnnotationGenerator$BlameChunk insert java.util.List chain java.util.List mergedChain int i int k private de.regnis.q.sequence.line.simplifier.QSequenceLineSimplifier createSimplifier () de.regnis.q.sequence.line.simplifier.QSequenceLineSimplifier first de.regnis.q.sequence.line.simplifier.QSequenceLineSimplifier second }
org/tmatesoft/svn/core/SVNMergeRangeList.class
SVNMergeRangeList.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNMergeRangeList extends java.lang.Object { public static String MERGE_INFO_NONINHERITABLE_STRING private org.tmatesoft.svn.core.SVNMergeRange[] myRanges public void <init> (long, long, boolean) long start long end boolean inheritable public void <init> (org.tmatesoft.svn.core.SVNMergeRange) org.tmatesoft.svn.core.SVNMergeRange range public void <init> (org.tmatesoft.svn.core.SVNMergeRange[]) org.tmatesoft.svn.core.SVNMergeRange[] ranges public void setRanges (org.tmatesoft.svn.core.SVNMergeRange[]) org.tmatesoft.svn.core.SVNMergeRange[] ranges public void setInheritable (boolean) int i boolean inheritable public org.tmatesoft.svn.core.SVNMergeRange[] getRanges () public java.util.List getRangesAsList () org.tmatesoft.svn.core.SVNMergeRange range int i java.util.List list public void pushRange (long, long, boolean) long start long end boolean inheritable org.tmatesoft.svn.core.SVNMergeRange[] ranges public int getSize () public boolean isEmpty () public org.tmatesoft.svn.core.SVNMergeRangeList dup () org.tmatesoft.svn.core.SVNMergeRange range int i org.tmatesoft.svn.core.SVNMergeRange[] ranges public org.tmatesoft.svn.core.SVNMergeRangeList merge (org.tmatesoft.svn.core.SVNMergeRangeList) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange range1 org.tmatesoft.svn.core.SVNMergeRange range2 int res org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.SVNMergeRangeList rangeList int i int j org.tmatesoft.svn.core.SVNMergeRange lastRange java.util.Collection resultRanges public java.lang.String toString () org.tmatesoft.svn.core.SVNMergeRange range int i String output public org.tmatesoft.svn.core.SVNMergeRangeList diff (org.tmatesoft.svn.core.SVNMergeRangeList, boolean) org.tmatesoft.svn.core.SVNMergeRangeList eraserRangeList boolean considerInheritance public org.tmatesoft.svn.core.SVNMergeRangeList intersect (org.tmatesoft.svn.core.SVNMergeRangeList, boolean) org.tmatesoft.svn.core.SVNMergeRangeList rangeList boolean considerInheritance public boolean includes (long) org.tmatesoft.svn.core.SVNMergeRange range int i long revision public org.tmatesoft.svn.core.SVNMergeRangeList reverse () int swapInex org.tmatesoft.svn.core.SVNMergeRange range int i public org.tmatesoft.svn.core.SVNMergeRangeList getInheritableRangeList (long, long) long startRev long endRev public org.tmatesoft.svn.core.SVNMergeRangeList getInheritableRangeList (long, long, boolean) org.tmatesoft.svn.core.SVNMergeRange inheritableRange org.tmatesoft.svn.core.SVNMergeRange range int i org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.SVNMergeRangeList boundRangeList long startRev long endRev boolean inheritable java.util.LinkedList inheritableRanges org.tmatesoft.svn.core.SVNMergeRange[] ranges public static org.tmatesoft.svn.core.SVNMergeRangeList fromCollection (java.util.Collection) java.util.Collection mergeRanges private org.tmatesoft.svn.core.SVNMergeRangeList removeOrIntersect (org.tmatesoft.svn.core.SVNMergeRangeList, boolean, boolean) org.tmatesoft.svn.core.SVNMergeRange tmpRange org.tmatesoft.svn.core.SVNMergeRange tmpRange org.tmatesoft.svn.core.SVNMergeRange tmpRange org.tmatesoft.svn.core.SVNMergeRange range2 org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.SVNMergeRangeList eraserRangeList boolean remove boolean considerInheritance java.util.Collection ranges org.tmatesoft.svn.core.SVNMergeRange lastRange org.tmatesoft.svn.core.SVNMergeRange range1 int i int j int lastInd org.tmatesoft.svn.core.SVNMergeRange whiteBoardElement public org.tmatesoft.svn.core.SVNMergeRangeList remove (org.tmatesoft.svn.core.SVNMergeRangeList, boolean) org.tmatesoft.svn.core.SVNMergeRangeList remove boolean considerInheritance private org.tmatesoft.svn.core.SVNMergeRange combineWithLastRange (java.util.Collection, org.tmatesoft.svn.core.SVNMergeRange, org.tmatesoft.svn.core.SVNMergeRange, boolean, boolean) long tmpRevision java.util.Collection rangeList org.tmatesoft.svn.core.SVNMergeRange lastRange org.tmatesoft.svn.core.SVNMergeRange mRange boolean dupMRange boolean considerInheritance org.tmatesoft.svn.core.SVNMergeRange pushedMRange1 org.tmatesoft.svn.core.SVNMergeRange pushedMRange2 boolean rangesIntersect boolean rangesHaveSameInheritance public org.tmatesoft.svn.core.SVNMergeRangeList mergeRevision (long) long revision static void <clinit> () }
org/tmatesoft/svn/core/SVNCancelException.class
SVNCancelException.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNCancelException extends org.tmatesoft.svn.core.SVNException { private static final long serialVersionUID public void <init> () public void <init> (org.tmatesoft.svn.core.SVNErrorMessage) org.tmatesoft.svn.core.SVNErrorMessage errorMessage public void <init> (org.tmatesoft.svn.core.SVNErrorMessage, java.lang.Throwable) org.tmatesoft.svn.core.SVNErrorMessage errorMessage Throwable cause }
org/tmatesoft/svn/core/SVNAnnotationGenerator$1.class
SVNAnnotationGenerator.java package org.tmatesoft.svn.core synthetic org.tmatesoft.svn.core.SVNAnnotationGenerator$1 extends java.lang.Object { }
org/tmatesoft/svn/core/SVNProperty.class
SVNProperty.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNProperty extends java.lang.Object { public static final String SVN_PREFIX public static final String SVNKIT_PREFIX public static final String SVN_WC_PREFIX public static final String SVN_SYNC_PREFIX public static final String TXN_CHECK_LOCKS public static final String TXN_CHECK_OUT_OF_DATENESS public static final String SVN_ENTRY_PREFIX public static final String EOL_STYLE public static final String IGNORE public static final String MIME_TYPE public static final String KEYWORDS public static final String EXECUTABLE public static final String EXTERNALS public static final String SPECIAL public static final String MERGE_INFO public static final String REVISION public static final String COMMITTED_REVISION public static final String COMMITTED_DATE public static final String HAS_PROPS public static final String HAS_PROP_MODS public static final String CACHABLE_PROPS public static final String PRESENT_PROPS public static final String KEEP_LOCAL public static final String CHANGELIST public static final String WORKING_SIZE public static final String DEPTH public static final String FILE_EXTERNAL_PATH public static final String FILE_EXTERNAL_REVISION public static final String FILE_EXTERNAL_PEG_REVISION public static final String TREE_CONFLICT_DATA public static final String CHECKSUM public static final String URL public static final String COPYFROM_URL public static final String COPYFROM_REVISION public static final String SCHEDULE public static final String COPIED public static final String LAST_AUTHOR public static final String UUID public static final String REPOS public static final String PROP_TIME public static final String TEXT_TIME public static final String NAME public static final String KIND public static final String CONFLICT_OLD public static final String CONFLICT_NEW public static final String CONFLICT_WRK public static final String PROP_REJECT_FILE public static final String DELETED public static final String ABSENT public static final String INCOMPLETE public static final String CORRUPTED public static final String WC_URL public static final String ACTIVITY_URL public static final String LOCK_TOKEN public static final String LOCK_COMMENT public static final String LOCK_OWNER public static final String LOCK_CREATION_DATE public static final String NEEDS_LOCK public static final String KIND_DIR public static final String KIND_FILE public static final String EOL_STYLE_LF public static final String EOL_STYLE_CR public static final String EOL_STYLE_CRLF public static final String EOL_STYLE_NATIVE public static final byte[] EOL_LF_BYTES public static final byte[] EOL_CRLF_BYTES public static final byte[] EOL_CR_BYTES public static final String CHARSET public static final String NATIVE public static final String SCHEDULE_ADD public static final String SCHEDULE_DELETE public static final String SCHEDULE_REPLACE public static final long WORKING_SIZE_UNKNOWN public static final org.tmatesoft.svn.core.SVNPropertyValue BOOLEAN_PROPERTY_VALUE private static final java.util.Set ourTextMimeTypes public void <init> () public static boolean isWorkingCopyProperty (java.lang.String) String name public static boolean isEntryProperty (java.lang.String) String name public static boolean isSVNProperty (java.lang.String) String name public static boolean isSVNKitProperty (java.lang.String) String name public static boolean isRegularProperty (java.lang.String) String name public static boolean isTextMimeType (java.lang.String) String mimeType public static boolean isBinaryMimeType (java.lang.String) String mimeType public static boolean isUTF8 (java.lang.String) String charset public static boolean booleanValue (java.lang.String) String text public static long longValue (java.lang.String) NumberFormatException e String text public static java.lang.String toString (boolean) boolean b public static java.lang.String toString (long) long i public static java.lang.String shortPropertyName (java.lang.String) String longName public static org.tmatesoft.svn.core.SVNPropertyValue getValueOfBooleanProperty (java.lang.String) String propName public static boolean isBooleanProperty (java.lang.String) String propName public static void addTextMimeType (java.lang.String) String textMimeType public java.util.Set getTextMimeTypes () public static void clearTextMimeTypes () static void <clinit> () }
org/tmatesoft/svn/core/SVNRevisionProperty.class
SVNRevisionProperty.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNRevisionProperty extends java.lang.Object { private static final java.util.Collection REVISION_PROPS public static final String AUTHOR public static final String LOG public static final String DATE public static final String LOCK public static final String FROM_URL public static final String FROM_UUID public static final String LAST_MERGED_REVISION public static final String CURRENTLY_COPYING public static final String AUTOVERSIONED public static final String ORIGINAL_DATE public void <init> () public static boolean isRevisionProperty (java.lang.String) String name static void <clinit> () }
org/tmatesoft/svn/core/SVNURL.class
SVNURL.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNURL extends java.lang.Object { private static final java.util.Map DEFAULT_PORTS private String myURL private String myProtocol private String myHost private String myPath private String myUserName private int myPort private String myEncodedPath private boolean myIsDefaultPort public static org.tmatesoft.svn.core.SVNURL create (java.lang.String, java.lang.String, java.lang.String, int, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String protocol String userInfo String host int port String path boolean uriEncoded String errorMessage String url public static org.tmatesoft.svn.core.SVNURL parseURIDecoded (java.lang.String) throws org.tmatesoft.svn.core.SVNException String url public static org.tmatesoft.svn.core.SVNURL parseURIEncoded (java.lang.String) throws org.tmatesoft.svn.core.SVNException String url public static org.tmatesoft.svn.core.SVNURL fromFile (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryPath String path public static int getDefaultPortNumber (java.lang.String) String protocol Integer dPort public static void registerProtocol (java.lang.String, int) String protocolName int defaultPort private void <init> (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.net.MalformedURLException e String normalizedPath int slashInd java.net.URL testURL org.tmatesoft.svn.core.SVNErrorMessage err java.net.MalformedURLException e org.tmatesoft.svn.core.SVNErrorMessage err String originalPath Integer defaultPort String testURL java.net.URL httpURL String httpPath String url boolean uriEncoded int index public java.lang.String getProtocol () public java.lang.String getHost () public int getPort () public boolean hasPort () public java.lang.String getPath () public java.lang.String getURIEncodedPath () public java.lang.String getUserInfo () public java.lang.String toString () public java.lang.String toDecodedString () public org.tmatesoft.svn.core.SVNURL appendPath (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String segment boolean uriEncoded String path String url public org.tmatesoft.svn.core.SVNURL setPath (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String path boolean uriEncoded String url public org.tmatesoft.svn.core.SVNURL removePathTail () throws org.tmatesoft.svn.core.SVNException String newPath String url public boolean equals (java.lang.Object) Object obj org.tmatesoft.svn.core.SVNURL url boolean eq public int hashCode () int code private static java.lang.String composeURL (java.lang.String, java.lang.String, java.lang.String, int, java.lang.String) String protocol String userInfo String host int port String path StringBuffer url private static java.lang.String norlmalizeURLPath (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String token java.util.StringTokenizer tokens String url String path StringBuffer result private static java.lang.String getPath (java.net.URL) java.net.URL url String path String ref static void <clinit> () }
org/tmatesoft/svn/core/ISVNDirEntryHandler.class
ISVNDirEntryHandler.java package org.tmatesoft.svn.core public abstract org.tmatesoft.svn.core.ISVNDirEntryHandler extends java.lang.Object { public abstract void handleDirEntry (org.tmatesoft.svn.core.SVNDirEntry) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/ISVNCanceller.class
ISVNCanceller.java package org.tmatesoft.svn.core public abstract org.tmatesoft.svn.core.ISVNCanceller extends java.lang.Object { public static final org.tmatesoft.svn.core.ISVNCanceller NULL public abstract void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException static void <clinit> () }
org/tmatesoft/svn/core/SVNLogEntry.class
SVNLogEntry.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNLogEntry extends java.lang.Object implements java.io.Serializable { private static final long serialVersionUID public static org.tmatesoft.svn.core.SVNLogEntry EMPTY_ENTRY private long myRevision private java.util.Map myChangedPaths private org.tmatesoft.svn.core.SVNProperties myRevisionProperties private boolean myHasChildren private boolean myIsSubtractiveMerge private boolean myIsNonInheritable public void <init> (java.util.Map, long, java.lang.String, java.util.Date, java.lang.String) java.util.Map changedPaths long revision String author java.util.Date date String message public void <init> (java.util.Map, long, org.tmatesoft.svn.core.SVNProperties, boolean) java.util.Map changedPaths long revision org.tmatesoft.svn.core.SVNProperties revisionProperties boolean hasChildren public void setHasChildren (boolean) boolean hasChildren public java.util.Map getChangedPaths () public java.lang.String getAuthor () public java.util.Date getDate () String date public java.lang.String getMessage () public org.tmatesoft.svn.core.SVNProperties getRevisionProperties () public long getRevision () public int hashCode () int PRIME int result public boolean equals (java.lang.Object) Object obj org.tmatesoft.svn.core.SVNLogEntry other public java.lang.String toString () String propName Object propVal java.util.Iterator propNames org.tmatesoft.svn.core.SVNLogEntryPath path java.util.Iterator paths StringBuffer result public boolean hasChildren () static boolean compare (java.lang.Object, java.lang.Object) Object o1 Object o2 public void setSubtractiveMerge (boolean) boolean substractiveMerge public boolean isSubtractiveMerge () public void setNonInheriable (boolean) boolean nonInheritable public boolean isNonInheritable () static void <clinit> () }
org/tmatesoft/svn/core/SVNDepth.class
SVNDepth.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNDepth extends java.lang.Object implements java.lang.Comparable { public static final org.tmatesoft.svn.core.SVNDepth UNKNOWN public static final org.tmatesoft.svn.core.SVNDepth EXCLUDE public static final org.tmatesoft.svn.core.SVNDepth EMPTY public static final org.tmatesoft.svn.core.SVNDepth FILES public static final org.tmatesoft.svn.core.SVNDepth IMMEDIATES public static final org.tmatesoft.svn.core.SVNDepth INFINITY private int myId private String myName private void <init> (int, java.lang.String) int id String name public int getId () public java.lang.String getName () public java.lang.String toString () public boolean isRecursive () public int compareTo (java.lang.Object) Object o org.tmatesoft.svn.core.SVNDepth otherDepth public boolean equals (java.lang.Object) Object obj public static java.lang.String asString (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth public static boolean recurseFromDepth (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth public static org.tmatesoft.svn.core.SVNDepth fromRecurse (boolean) boolean recurse public static org.tmatesoft.svn.core.SVNDepth fromString (java.lang.String) String string public static org.tmatesoft.svn.core.SVNDepth fromID (int) int id public static org.tmatesoft.svn.core.SVNDepth getInfinityOrEmptyDepth (boolean) boolean recurse public static org.tmatesoft.svn.core.SVNDepth getInfinityOrFilesDepth (boolean) boolean recurse public static org.tmatesoft.svn.core.SVNDepth getInfinityOrImmediatesDepth (boolean) boolean recurse public static org.tmatesoft.svn.core.SVNDepth getUnknownOrEmptyDepth (boolean) boolean recurse public static org.tmatesoft.svn.core.SVNDepth getUnknownOrFilesDepth (boolean) boolean recurse public static org.tmatesoft.svn.core.SVNDepth getUnknownOrImmediatesDepth (boolean) boolean recurse static void <clinit> () }
org/tmatesoft/svn/core/ISVNLogEntryHandler.class
ISVNLogEntryHandler.java package org.tmatesoft.svn.core public abstract org.tmatesoft.svn.core.ISVNLogEntryHandler extends java.lang.Object { public abstract void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/SVNMergeInfo.class
SVNMergeInfo.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNMergeInfo extends java.lang.Object { private String myPath private java.util.Map myMergeSrcPathsToRangeLists public void <init> (java.lang.String, java.util.Map) String path java.util.Map srcsToRangeLists public java.lang.String getPath () public java.util.Map getMergeSourcesToMergeLists () public java.lang.String toString () }
org/tmatesoft/svn/core/SVNErrorCode.class
SVNErrorCode.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNErrorCode extends java.lang.Object implements java.io.Serializable { private static final long serialVersionUID private String myDescription private int myCategory private int myCode private static final java.util.Map ourErrorCodes private static final int ERR_BASE private static final int ERR_CATEGORY_SIZE public static final int BAD_CATEGORY public static final int XML_CATEGORY public static final int IO_CATEGORY public static final int STREAM_CATEGORY public static final int NODE_CATEGORY public static final int ENTRY_CATEGORY public static final int WC_CATEGORY public static final int FS_CATEGORY public static final int REPOS_CATEGORY public static final int RA_CATEGORY public static final int RA_DAV_CATEGORY public static final int RA_LOCAL_CATEGORY public static final int SVNDIFF_CATEGORY public static final int APMOD_CATEGORY public static final int CLIENT_CATEGORY public static final int MISC_CATEGORY public static final int CL_CATEGORY public static final int RA_SVN_CATEGORY public static final int AUTHN_CATEGORY public static final int AUTHZ_CATEGORY public static final int DIFF_CATEGORY public static final int RA_SERF_CATEGORY public static final int MALFUNC_CATEGORY public static final org.tmatesoft.svn.core.SVNErrorCode UNKNOWN public static final org.tmatesoft.svn.core.SVNErrorCode IO_ERROR public static final org.tmatesoft.svn.core.SVNErrorCode BAD_CONTAINING_POOL public static final org.tmatesoft.svn.core.SVNErrorCode BAD_FILENAME public static final org.tmatesoft.svn.core.SVNErrorCode BAD_URL public static final org.tmatesoft.svn.core.SVNErrorCode BAD_DATE public static final org.tmatesoft.svn.core.SVNErrorCode BAD_MIME_TYPE public static final org.tmatesoft.svn.core.SVNErrorCode BAD_PROPERTY_VALUE public static final org.tmatesoft.svn.core.SVNErrorCode BAD_VERSION_FILE_FORMAT public static final org.tmatesoft.svn.core.SVNErrorCode BAD_RELATIVE_PATH public static final org.tmatesoft.svn.core.SVNErrorCode BAD_UUID public static final org.tmatesoft.svn.core.SVNErrorCode BAD_CONFIG_VALUE public static final org.tmatesoft.svn.core.SVNErrorCode BAD_SERVER_SPECIFICATION public static final org.tmatesoft.svn.core.SVNErrorCode BAD_CHECKSUM_KIND public static final org.tmatesoft.svn.core.SVNErrorCode BAD_CHECKSUM_PARSE public static final org.tmatesoft.svn.core.SVNErrorCode XML_ATTRIB_NOT_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode XML_MISSING_ANCESTRY public static final org.tmatesoft.svn.core.SVNErrorCode XML_UNKNOWN_ENCODING public static final org.tmatesoft.svn.core.SVNErrorCode XML_MALFORMED public static final org.tmatesoft.svn.core.SVNErrorCode XML_UNESCAPABLE_DATA public static final org.tmatesoft.svn.core.SVNErrorCode IO_INCONSISTENT_EOL public static final org.tmatesoft.svn.core.SVNErrorCode IO_UNKNOWN_EOL public static final org.tmatesoft.svn.core.SVNErrorCode IO_CORRUPT_EOL public static final org.tmatesoft.svn.core.SVNErrorCode IO_UNIQUE_NAMES_EXHAUSTED public static final org.tmatesoft.svn.core.SVNErrorCode IO_PIPE_FRAME_ERROR public static final org.tmatesoft.svn.core.SVNErrorCode IO_PIPE_READ_ERROR public static final org.tmatesoft.svn.core.SVNErrorCode IO_WRITE_ERROR public static final org.tmatesoft.svn.core.SVNErrorCode STREAM_UNEXPECTED_EOF public static final org.tmatesoft.svn.core.SVNErrorCode STREAM_MALFORMED_DATA public static final org.tmatesoft.svn.core.SVNErrorCode STREAM_UNRECOGNIZED_DATA public static final org.tmatesoft.svn.core.SVNErrorCode NODE_UNKNOWN_KIND public static final org.tmatesoft.svn.core.SVNErrorCode NODE_UNEXPECTED_KIND public static final org.tmatesoft.svn.core.SVNErrorCode ENTRY_NOT_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode ENTRY_EXISTS public static final org.tmatesoft.svn.core.SVNErrorCode ENTRY_MISSING_REVISION public static final org.tmatesoft.svn.core.SVNErrorCode ENTRY_MISSING_URL public static final org.tmatesoft.svn.core.SVNErrorCode ENTRY_ATTRIBUTE_INVALID public static final org.tmatesoft.svn.core.SVNErrorCode ENTRY_FORBIDDEN public static final org.tmatesoft.svn.core.SVNErrorCode WC_OBSTRUCTED_UPDATE public static final org.tmatesoft.svn.core.SVNErrorCode WC_UNWIND_MISMATCH public static final org.tmatesoft.svn.core.SVNErrorCode WC_UNWIND_EMPTY public static final org.tmatesoft.svn.core.SVNErrorCode WC_UNWIND_NOT_EMPTY public static final org.tmatesoft.svn.core.SVNErrorCode WC_LOCKED public static final org.tmatesoft.svn.core.SVNErrorCode WC_NOT_LOCKED public static final org.tmatesoft.svn.core.SVNErrorCode WC_INVALID_LOCK public static final org.tmatesoft.svn.core.SVNErrorCode WC_NOT_WORKING_COPY public static final org.tmatesoft.svn.core.SVNErrorCode WC_NOT_DIRECTORY public static final org.tmatesoft.svn.core.SVNErrorCode WC_NOT_FILE public static final org.tmatesoft.svn.core.SVNErrorCode WC_BAD_ADM_LOG public static final org.tmatesoft.svn.core.SVNErrorCode WC_PATH_NOT_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode WC_NOT_UP_TO_DATE public static final org.tmatesoft.svn.core.SVNErrorCode WC_LEFT_LOCAL_MOD public static final org.tmatesoft.svn.core.SVNErrorCode WC_SCHEDULE_CONFLICT public static final org.tmatesoft.svn.core.SVNErrorCode WC_PATH_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode WC_FOUND_CONFLICT public static final org.tmatesoft.svn.core.SVNErrorCode WC_CORRUPT public static final org.tmatesoft.svn.core.SVNErrorCode WC_CORRUPT_TEXT_BASE public static final org.tmatesoft.svn.core.SVNErrorCode WC_NODE_KIND_CHANGE public static final org.tmatesoft.svn.core.SVNErrorCode WC_INVALID_OP_ON_CWD public static final org.tmatesoft.svn.core.SVNErrorCode WC_BAD_ADM_LOG_START public static final org.tmatesoft.svn.core.SVNErrorCode WC_UNSUPPORTED_FORMAT public static final org.tmatesoft.svn.core.SVNErrorCode WC_BAD_PATH public static final org.tmatesoft.svn.core.SVNErrorCode WC_INVALID_SCHEDULE public static final org.tmatesoft.svn.core.SVNErrorCode WC_INVALID_RELOCATION public static final org.tmatesoft.svn.core.SVNErrorCode WC_INVALID_SWITCH public static final org.tmatesoft.svn.core.SVNErrorCode WC_MISMATCHED_CHANGELIST public static final org.tmatesoft.svn.core.SVNErrorCode WC_CONFLICT_RESOLVER_FAILURE public static final org.tmatesoft.svn.core.SVNErrorCode WC_COPYFROM_PATH_NOT_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode WC_CHANGELIST_MOVE public static final org.tmatesoft.svn.core.SVNErrorCode WC_CANNOT_DELETE_FILE_EXTERNAL public static final org.tmatesoft.svn.core.SVNErrorCode WC_CANNOT_MOVE_FILE_EXTERNAL public static final org.tmatesoft.svn.core.SVNErrorCode WC_DB_ERROR public static final org.tmatesoft.svn.core.SVNErrorCode WC_MISSING public static final org.tmatesoft.svn.core.SVNErrorCode WC_NOT_SYMLINK public static final org.tmatesoft.svn.core.SVNErrorCode WC_PATH_UNEXPECTED_STATUS public static final org.tmatesoft.svn.core.SVNErrorCode WC_UPGRADE_REQUIRED public static final org.tmatesoft.svn.core.SVNErrorCode WC_CLEANUP_REQUIRED public static final org.tmatesoft.svn.core.SVNErrorCode WC_INVALID_OPERATION_DEPTH public static final org.tmatesoft.svn.core.SVNErrorCode FS_GENERAL public static final org.tmatesoft.svn.core.SVNErrorCode FS_CLEANUP public static final org.tmatesoft.svn.core.SVNErrorCode FS_ALREADY_OPEN public static final org.tmatesoft.svn.core.SVNErrorCode FS_NOT_OPEN public static final org.tmatesoft.svn.core.SVNErrorCode FS_CORRUPT public static final org.tmatesoft.svn.core.SVNErrorCode FS_PATH_SYNTAX public static final org.tmatesoft.svn.core.SVNErrorCode FS_NO_SUCH_REVISION public static final org.tmatesoft.svn.core.SVNErrorCode FS_NO_SUCH_TRANSACTION public static final org.tmatesoft.svn.core.SVNErrorCode FS_NO_SUCH_ENTRY public static final org.tmatesoft.svn.core.SVNErrorCode FS_NO_SUCH_REPRESENTATION public static final org.tmatesoft.svn.core.SVNErrorCode FS_NO_SUCH_STRING public static final org.tmatesoft.svn.core.SVNErrorCode FS_NO_SUCH_COPY public static final org.tmatesoft.svn.core.SVNErrorCode FS_TRANSACTION_NOT_MUTABLE public static final org.tmatesoft.svn.core.SVNErrorCode FS_NOT_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode FS_ID_NOT_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode FS_NOT_ID public static final org.tmatesoft.svn.core.SVNErrorCode FS_NOT_DIRECTORY public static final org.tmatesoft.svn.core.SVNErrorCode FS_NOT_FILE public static final org.tmatesoft.svn.core.SVNErrorCode FS_NOT_SINGLE_PATH_COMPONENT public static final org.tmatesoft.svn.core.SVNErrorCode FS_NOT_MUTABLE public static final org.tmatesoft.svn.core.SVNErrorCode FS_ALREADY_EXISTS public static final org.tmatesoft.svn.core.SVNErrorCode FS_ROOT_DIR public static final org.tmatesoft.svn.core.SVNErrorCode FS_NOT_TXN_ROOT public static final org.tmatesoft.svn.core.SVNErrorCode FS_NOT_REVISION_ROOT public static final org.tmatesoft.svn.core.SVNErrorCode FS_CONFLICT public static final org.tmatesoft.svn.core.SVNErrorCode FS_REP_CHANGED public static final org.tmatesoft.svn.core.SVNErrorCode FS_REP_NOT_MUTABLE public static final org.tmatesoft.svn.core.SVNErrorCode FS_MALFORMED_SKEL public static final org.tmatesoft.svn.core.SVNErrorCode FS_TXN_OUT_OF_DATE public static final org.tmatesoft.svn.core.SVNErrorCode FS_BERKELEY_DB public static final org.tmatesoft.svn.core.SVNErrorCode FS_BERKELEY_DB_DEADLOCK public static final org.tmatesoft.svn.core.SVNErrorCode FS_TRANSACTION_DEAD public static final org.tmatesoft.svn.core.SVNErrorCode FS_TRANSACTION_NOT_DEAD public static final org.tmatesoft.svn.core.SVNErrorCode FS_UNKNOWN_FS_TYPE public static final org.tmatesoft.svn.core.SVNErrorCode FS_NO_USER public static final org.tmatesoft.svn.core.SVNErrorCode FS_PATH_ALREADY_LOCKED public static final org.tmatesoft.svn.core.SVNErrorCode FS_PATH_NOT_LOCKED public static final org.tmatesoft.svn.core.SVNErrorCode FS_BAD_LOCK_TOKEN public static final org.tmatesoft.svn.core.SVNErrorCode FS_NO_LOCK_TOKEN public static final org.tmatesoft.svn.core.SVNErrorCode FS_LOCK_OWNER_MISMATCH public static final org.tmatesoft.svn.core.SVNErrorCode FS_NO_SUCH_LOCK public static final org.tmatesoft.svn.core.SVNErrorCode FS_LOCK_EXPIRED public static final org.tmatesoft.svn.core.SVNErrorCode FS_OUT_OF_DATE public static final org.tmatesoft.svn.core.SVNErrorCode FS_UNSUPPORTED_FORMAT public static final org.tmatesoft.svn.core.SVNErrorCode FS_REP_BEING_WRITTEN public static final org.tmatesoft.svn.core.SVNErrorCode FS_TXN_NAME_TOO_LONG public static final org.tmatesoft.svn.core.SVNErrorCode FS_NO_SUCH_NODE_ORIGIN public static final org.tmatesoft.svn.core.SVNErrorCode REPOS_LOCKED public static final org.tmatesoft.svn.core.SVNErrorCode REPOS_HOOK_FAILURE public static final org.tmatesoft.svn.core.SVNErrorCode REPOS_BAD_ARGS public static final org.tmatesoft.svn.core.SVNErrorCode REPOS_NO_DATA_FOR_REPORT public static final org.tmatesoft.svn.core.SVNErrorCode REPOS_BAD_REVISION_REPORT public static final org.tmatesoft.svn.core.SVNErrorCode REPOS_UNSUPPORTED_VERSION public static final org.tmatesoft.svn.core.SVNErrorCode REPOS_DISABLED_FEATURE public static final org.tmatesoft.svn.core.SVNErrorCode REPOS_POST_COMMIT_HOOK_FAILED public static final org.tmatesoft.svn.core.SVNErrorCode REPOS_POST_LOCK_HOOK_FAILED public static final org.tmatesoft.svn.core.SVNErrorCode REPOS_POST_UNLOCK_HOOK_FAILED public static final org.tmatesoft.svn.core.SVNErrorCode RA_ILLEGAL_URL public static final org.tmatesoft.svn.core.SVNErrorCode RA_NOT_AUTHORIZED public static final org.tmatesoft.svn.core.SVNErrorCode RA_UNKNOWN_AUTH public static final org.tmatesoft.svn.core.SVNErrorCode RA_NOT_IMPLEMENTED public static final org.tmatesoft.svn.core.SVNErrorCode RA_OUT_OF_DATE public static final org.tmatesoft.svn.core.SVNErrorCode RA_NO_REPOS_UUID public static final org.tmatesoft.svn.core.SVNErrorCode RA_UNSUPPORTED_ABI_VERSION public static final org.tmatesoft.svn.core.SVNErrorCode RA_NOT_LOCKED public static final org.tmatesoft.svn.core.SVNErrorCode RA_PARTIAL_REPLAY_NOT_SUPPORTED public static final org.tmatesoft.svn.core.SVNErrorCode RA_UUID_MISMATCH public static final org.tmatesoft.svn.core.SVNErrorCode RA_REPOS_ROOT_URL_MISMATCH public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_SOCK_INIT public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_CREATING_REQUEST public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_REQUEST_FAILED public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_OPTIONS_REQ_FAILED public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_PROPS_NOT_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_ALREADY_EXISTS public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_INVALID_CONFIG_VALUE public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_PATH_NOT_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_PROPPATCH_FAILED public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_MALFORMED_DATA public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_RESPONSE_HEADER_BADNESS public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_RELOCATED public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_CONN_TIMEOUT public static final org.tmatesoft.svn.core.SVNErrorCode RA_DAV_FORBIDDEN public static final org.tmatesoft.svn.core.SVNErrorCode RA_LOCAL_REPOS_NOT_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode RA_LOCAL_REPOS_OPEN_FAILED public static final org.tmatesoft.svn.core.SVNErrorCode RA_SVN_CMD_ERR public static final org.tmatesoft.svn.core.SVNErrorCode RA_SVN_UNKNOWN_CMD public static final org.tmatesoft.svn.core.SVNErrorCode RA_SVN_CONNECTION_CLOSED public static final org.tmatesoft.svn.core.SVNErrorCode RA_SVN_IO_ERROR public static final org.tmatesoft.svn.core.SVNErrorCode RA_SVN_MALFORMED_DATA public static final org.tmatesoft.svn.core.SVNErrorCode RA_SVN_REPOS_NOT_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode RA_SVN_BAD_VERSION public static final org.tmatesoft.svn.core.SVNErrorCode AUTHN_CREDS_UNAVAILABLE public static final org.tmatesoft.svn.core.SVNErrorCode AUTHN_NO_PROVIDER public static final org.tmatesoft.svn.core.SVNErrorCode AUTHN_PROVIDERS_EXHAUSTED public static final org.tmatesoft.svn.core.SVNErrorCode AUTHN_CREDS_NOT_SAVED public static final org.tmatesoft.svn.core.SVNErrorCode AUTHZ_ROOT_UNREADABLE public static final org.tmatesoft.svn.core.SVNErrorCode AUTHZ_UNREADABLE public static final org.tmatesoft.svn.core.SVNErrorCode AUTHZ_PARTIALLY_READABLE public static final org.tmatesoft.svn.core.SVNErrorCode AUTHZ_INVALID_CONFIG public static final org.tmatesoft.svn.core.SVNErrorCode AUTHZ_UNWRITABLE public static final org.tmatesoft.svn.core.SVNErrorCode SVNDIFF_INVALID_HEADER public static final org.tmatesoft.svn.core.SVNErrorCode SVNDIFF_CORRUPT_WINDOW public static final org.tmatesoft.svn.core.SVNErrorCode SVNDIFF_BACKWARD_VIEW public static final org.tmatesoft.svn.core.SVNErrorCode SVNDIFF_INVALID_OPS public static final org.tmatesoft.svn.core.SVNErrorCode SVNDIFF_UNEXPECTED_END public static final org.tmatesoft.svn.core.SVNErrorCode APMOD_MISSING_PATH_TO_FS public static final org.tmatesoft.svn.core.SVNErrorCode APMOD_MALFORMED_URI public static final org.tmatesoft.svn.core.SVNErrorCode APMOD_ACTIVITY_NOT_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode APMOD_BAD_BASELINE public static final org.tmatesoft.svn.core.SVNErrorCode APMOD_CONNECTION_ABORTED public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_VERSIONED_PATH_REQUIRED public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_RA_ACCESS_REQUIRED public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_BAD_REVISION public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_DUPLICATE_COMMIT_URL public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_IS_BINARY_FILE public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_INVALID_EXTERNALS_DESCRIPTION public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_MODIFIED public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_IS_DIRECTORY public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_REVISION_RANGE public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_INVALID_RELOCATION public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_REVISION_AUTHOR_CONTAINS_NEWLINE public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_PROPERTY_NAME public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_UNRELATED_RESOURCES public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_MISSING_LOCK_TOKEN public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_MULTIPLE_SOURCES_DISALLOWED public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_NO_VERSIONED_PARENT public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_NOT_READY_TO_MERGE public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_FILE_EXTERNAL_OVERWRITE_VERSIONED public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_BAD_STRIP_COUNT public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_CYCLE_DETECTED public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_MERGE_UPDATE_REQUIRED public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_INVALID_MERGEINFO_NO_MERGETRACKING public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_NO_LOCK_TOKEN public static final org.tmatesoft.svn.core.SVNErrorCode CLIENT_FORBIDDEN_BY_SERVER public static final org.tmatesoft.svn.core.SVNErrorCode BASE public static final org.tmatesoft.svn.core.SVNErrorCode PLUGIN_LOAD_FAILURE public static final org.tmatesoft.svn.core.SVNErrorCode MALFORMED_FILE public static final org.tmatesoft.svn.core.SVNErrorCode INCOMPLETE_DATA public static final org.tmatesoft.svn.core.SVNErrorCode INCORRECT_PARAMS public static final org.tmatesoft.svn.core.SVNErrorCode UNVERSIONED_RESOURCE public static final org.tmatesoft.svn.core.SVNErrorCode TEST_FAILED public static final org.tmatesoft.svn.core.SVNErrorCode UNSUPPORTED_FEATURE public static final org.tmatesoft.svn.core.SVNErrorCode BAD_PROP_KIND public static final org.tmatesoft.svn.core.SVNErrorCode ILLEGAL_TARGET public static final org.tmatesoft.svn.core.SVNErrorCode DELTA_MD5_CHECKSUM_ABSENT public static final org.tmatesoft.svn.core.SVNErrorCode DIR_NOT_EMPTY public static final org.tmatesoft.svn.core.SVNErrorCode EXTERNAL_PROGRAM public static final org.tmatesoft.svn.core.SVNErrorCode SWIG_PY_EXCEPTION_SET public static final org.tmatesoft.svn.core.SVNErrorCode CHECKSUM_MISMATCH public static final org.tmatesoft.svn.core.SVNErrorCode CANCELLED public static final org.tmatesoft.svn.core.SVNErrorCode INVALID_DIFF_OPTION public static final org.tmatesoft.svn.core.SVNErrorCode PROPERTY_NOT_FOUND public static final org.tmatesoft.svn.core.SVNErrorCode NO_AUTH_FILE_PATH public static final org.tmatesoft.svn.core.SVNErrorCode VERSION_MISMATCH public static final org.tmatesoft.svn.core.SVNErrorCode MERGE_INFO_PARSE_ERROR public static final org.tmatesoft.svn.core.SVNErrorCode CEASE_INVOCATION public static final org.tmatesoft.svn.core.SVNErrorCode REVISION_NUMBER_PARSE_ERROR public static final org.tmatesoft.svn.core.SVNErrorCode ITER_BREAK public static final org.tmatesoft.svn.core.SVNErrorCode UNKNOWN_CHANGELIST public static final org.tmatesoft.svn.core.SVNErrorCode RESERVED_FILENAME_SPECIFIED public static final org.tmatesoft.svn.core.SVNErrorCode UNKNOWN_CAPABILITY public static final org.tmatesoft.svn.core.SVNErrorCode TEST_SKIPPED public static final org.tmatesoft.svn.core.SVNErrorCode ATOMIC_INIT_FAILURE public static final org.tmatesoft.svn.core.SVNErrorCode SQLITE_ERROR public static final org.tmatesoft.svn.core.SVNErrorCode SQLITE_READONLY public static final org.tmatesoft.svn.core.SVNErrorCode UNSUPPORTED_SCHEMA public static final org.tmatesoft.svn.core.SVNErrorCode CL_ARG_PARSING_ERROR public static final org.tmatesoft.svn.core.SVNErrorCode CL_INSUFFICIENT_ARGS public static final org.tmatesoft.svn.core.SVNErrorCode CL_MUTUALLY_EXCLUSIVE_ARGS public static final org.tmatesoft.svn.core.SVNErrorCode CL_ADM_DIR_RESERVED public static final org.tmatesoft.svn.core.SVNErrorCode CL_LOG_MESSAGE_IS_VERSIONED_FILE public static final org.tmatesoft.svn.core.SVNErrorCode CL_LOG_MESSAGE_IS_PATHNAME public static final org.tmatesoft.svn.core.SVNErrorCode CL_COMMIT_IN_ADDED_DIR public static final org.tmatesoft.svn.core.SVNErrorCode CL_NO_EXTERNAL_EDITOR public static final org.tmatesoft.svn.core.SVNErrorCode CL_BAD_LOG_MESSAGE public static final org.tmatesoft.svn.core.SVNErrorCode CL_UNNECESSARY_LOG_MESSAGE public static final org.tmatesoft.svn.core.SVNErrorCode CL_NO_EXTERNAL_MERGE_TOOL public static final org.tmatesoft.svn.core.SVNErrorCode CL_ERROR_PROCESSING_EXTERNALS public static final org.tmatesoft.svn.core.SVNErrorCode ASSERTION_FAIL public static final org.tmatesoft.svn.core.SVNErrorCode BAD_CHANGELIST_NAME public static org.tmatesoft.svn.core.SVNErrorCode getErrorCode (int) int code org.tmatesoft.svn.core.SVNErrorCode errorCode protected void <init> (int, int, java.lang.String) int category int index String description public int getCode () public int getCategory () public java.lang.String getDescription () public int hashCode () public boolean equals (java.lang.Object) Object o public boolean isAuthentication () private java.lang.Object readResolve () public java.lang.String toString () static void <clinit> () }
org/tmatesoft/svn/core/SVNMergeInfoInheritance.class
SVNMergeInfoInheritance.java package org.tmatesoft.svn.core public org.tmatesoft.svn.core.SVNMergeInfoInheritance extends java.lang.Object { public static final org.tmatesoft.svn.core.SVNMergeInfoInheritance EXPLICIT public static final org.tmatesoft.svn.core.SVNMergeInfoInheritance INHERITED public static final org.tmatesoft.svn.core.SVNMergeInfoInheritance NEAREST_ANCESTOR private String myName private void <init> (java.lang.String) String name public java.lang.String toString () static void <clinit> () }
org/tmatesoft/svn/core/ISVNCanceller$1.class
ISVNCanceller.java package org.tmatesoft.svn.core final org.tmatesoft.svn.core.ISVNCanceller$1 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNCanceller { void <init> () public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException }
org/tmatesoft/svn/core/auth/
org/tmatesoft/svn/core/auth/SVNPasswordAuthentication.class
SVNPasswordAuthentication.java package org.tmatesoft.svn.core.auth public org.tmatesoft.svn.core.auth.SVNPasswordAuthentication extends org.tmatesoft.svn.core.auth.SVNAuthentication { private String myPassword public void <init> (java.lang.String, java.lang.String, boolean) String userName String password boolean storageAllowed public void <init> (java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.SVNURL, boolean) String userName String password boolean storageAllowed org.tmatesoft.svn.core.SVNURL url boolean isPartial public java.lang.String getPassword () }
org/tmatesoft/svn/core/auth/ISVNSSHHostVerifier.class
ISVNSSHHostVerifier.java package org.tmatesoft.svn.core.auth public abstract org.tmatesoft.svn.core.auth.ISVNSSHHostVerifier extends java.lang.Object { public abstract void verifyHostKey (java.lang.String, int, java.lang.String, byte[]) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/auth/SVNAuthentication.class
SVNAuthentication.java package org.tmatesoft.svn.core.auth public org.tmatesoft.svn.core.auth.SVNAuthentication extends java.lang.Object { private String myUserName private boolean myIsStorageAllowed private String myKind private org.tmatesoft.svn.core.SVNURL myURL private boolean myIsPartial public void <init> (java.lang.String, java.lang.String, boolean) String kind String userName boolean storageAllowed public void <init> (java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.SVNURL, boolean) String kind String userName boolean storageAllowed org.tmatesoft.svn.core.SVNURL url boolean isPartial public java.lang.String getUserName () public boolean isStorageAllowed () public boolean isPartial () public java.lang.String getKind () public org.tmatesoft.svn.core.SVNURL getURL () }
org/tmatesoft/svn/core/auth/SVNUserNameAuthentication.class
SVNUserNameAuthentication.java package org.tmatesoft.svn.core.auth public org.tmatesoft.svn.core.auth.SVNUserNameAuthentication extends org.tmatesoft.svn.core.auth.SVNAuthentication { public void <init> (java.lang.String, boolean) String userName boolean storageAllowed public void <init> (java.lang.String, boolean, org.tmatesoft.svn.core.SVNURL, boolean) String userName boolean storageAllowed org.tmatesoft.svn.core.SVNURL url boolean isPartial }
org/tmatesoft/svn/core/auth/ISVNProxyManager.class
ISVNProxyManager.java package org.tmatesoft.svn.core.auth public abstract org.tmatesoft.svn.core.auth.ISVNProxyManager extends java.lang.Object { public abstract java.lang.String getProxyHost () public abstract int getProxyPort () public abstract java.lang.String getProxyUserName () public abstract java.lang.String getProxyPassword () public abstract void acknowledgeProxyContext (boolean, org.tmatesoft.svn.core.SVNErrorMessage) }
org/tmatesoft/svn/core/auth/ISVNAuthenticationProvider.class
ISVNAuthenticationProvider.java package org.tmatesoft.svn.core.auth public abstract org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider extends java.lang.Object { public static final int REJECTED public static final int ACCEPTED_TEMPORARY public static final int ACCEPTED public abstract org.tmatesoft.svn.core.auth.SVNAuthentication requestClientAuthentication (java.lang.String, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.auth.SVNAuthentication, boolean) public abstract int acceptServerAuthentication (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.Object, boolean) }
org/tmatesoft/svn/core/auth/SVNSSHAuthentication.class
SVNSSHAuthentication.java package org.tmatesoft.svn.core.auth public org.tmatesoft.svn.core.auth.SVNSSHAuthentication extends org.tmatesoft.svn.core.auth.SVNAuthentication { private String myPassword private String myPassphrase private java.io.File myPrivateKeyFile private int myPortNumber private char[] myPrivateKeyValue public void <init> (java.lang.String, java.lang.String, int, boolean) String userName String password int portNumber boolean storageAllowed public void <init> (java.lang.String, java.lang.String, int, boolean, org.tmatesoft.svn.core.SVNURL, boolean) String userName String password int portNumber boolean storageAllowed org.tmatesoft.svn.core.SVNURL url boolean isPartial public void <init> (java.lang.String, java.io.File, java.lang.String, int, boolean) String userName java.io.File keyFile String passphrase int portNumber boolean storageAllowed public void <init> (java.lang.String, java.io.File, java.lang.String, int, boolean, org.tmatesoft.svn.core.SVNURL, boolean) String userName java.io.File keyFile String passphrase int portNumber boolean storageAllowed org.tmatesoft.svn.core.SVNURL url boolean isPartial public void <init> (java.lang.String, char[], java.lang.String, int, boolean) String userName char[] privateKey String passphrase int portNumber boolean storageAllowed public void <init> (java.lang.String, char[], java.lang.String, int, boolean, org.tmatesoft.svn.core.SVNURL, boolean) String userName char[] privateKey String passphrase int portNumber boolean storageAllowed org.tmatesoft.svn.core.SVNURL url boolean isPartial private void <init> (java.lang.String, int, boolean, org.tmatesoft.svn.core.SVNURL, boolean) String userName int portNumber boolean storageAllowed org.tmatesoft.svn.core.SVNURL url boolean isPartial public java.lang.String getPassword () public java.lang.String getPassphrase () public java.io.File getPrivateKeyFile () public char[] getPrivateKey () public int getPortNumber () public boolean hasPrivateKey () }
org/tmatesoft/svn/core/auth/ISVNAuthenticationManager.class
ISVNAuthenticationManager.java package org.tmatesoft.svn.core.auth public abstract org.tmatesoft.svn.core.auth.ISVNAuthenticationManager extends java.lang.Object { public static final String PASSWORD public static final String SSH public static final String SSL public static final String USERNAME public abstract void setAuthenticationProvider (org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider) public abstract org.tmatesoft.svn.core.auth.ISVNProxyManager getProxyManager (org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException public abstract javax.net.ssl.TrustManager getTrustManager (org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.auth.SVNAuthentication getFirstAuthentication (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.auth.SVNAuthentication getNextAuthentication (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException public abstract void acknowledgeAuthentication (boolean, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException public abstract void acknowledgeTrustManager (javax.net.ssl.TrustManager) public abstract boolean isAuthenticationForced () public abstract int getReadTimeout (org.tmatesoft.svn.core.io.SVNRepository) public abstract int getConnectTimeout (org.tmatesoft.svn.core.io.SVNRepository) }
org/tmatesoft/svn/core/auth/SVNSSLAuthentication.class
SVNSSLAuthentication.java package org.tmatesoft.svn.core.auth public org.tmatesoft.svn.core.auth.SVNSSLAuthentication extends org.tmatesoft.svn.core.auth.SVNAuthentication { public static final String MSCAPI public static final String SSL private java.io.File myCertificate private String myPassword private String mySSLKind private String myAlias private String myCertificatePath public void <init> (java.io.File, java.lang.String, boolean) java.io.File certFile String password boolean storageAllowed public void <init> (java.io.File, java.lang.String, boolean, org.tmatesoft.svn.core.SVNURL, boolean) java.io.File certFile String password boolean storageAllowed org.tmatesoft.svn.core.SVNURL url boolean isPartial public void <init> (java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.SVNURL, boolean) String sslKind String alias boolean storageAllowed org.tmatesoft.svn.core.SVNURL url boolean isPartial public java.lang.String getPassword () public java.io.File getCertificateFile () public java.lang.String getSSLKind () public java.lang.String getAlias () public java.lang.String getCertificatePath () public void setCertificatePath (java.lang.String) String path public static boolean isCertificatePath (java.lang.String) String path }
org/tmatesoft/svn/core/auth/ISVNAuthenticationManagerExt.class
ISVNAuthenticationManagerExt.java package org.tmatesoft.svn.core.auth public abstract org.tmatesoft.svn.core.auth.ISVNAuthenticationManagerExt extends java.lang.Object implements org.tmatesoft.svn.core.auth.ISVNAuthenticationManager { public abstract void acknowledgeConnectionSuccessful (org.tmatesoft.svn.core.SVNURL) public abstract void acknowledgeAuthentication (boolean, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.auth.SVNAuthentication, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/auth/BasicAuthenticationManager.class
BasicAuthenticationManager.java package org.tmatesoft.svn.core.auth public org.tmatesoft.svn.core.auth.BasicAuthenticationManager extends java.lang.Object implements org.tmatesoft.svn.core.auth.ISVNAuthenticationManager org.tmatesoft.svn.core.auth.ISVNProxyManager org.tmatesoft.svn.core.auth.ISVNSSHHostVerifier { private java.util.List myPasswordAuthentications private java.util.List mySSHAuthentications private java.util.List myUserNameAuthentications private java.util.List mySSLAuthentications private int mySSHIndex private int myPasswordIndex private int myUserNameIndex private int mySSLIndex private String myProxyHost private int myProxyPort private String myProxyUserName private String myProxyPassword private boolean myIsAuthenticationForced public static void acknowledgeAuthentication (boolean, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.auth.SVNAuthentication, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.auth.ISVNAuthenticationManager) throws org.tmatesoft.svn.core.SVNException boolean accepted String kind String realm org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.auth.SVNAuthentication authentication org.tmatesoft.svn.core.SVNURL accessedURL org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager public void <init> (java.lang.String, java.lang.String) String userName String password public void <init> (java.lang.String, java.io.File, java.lang.String, int) String userName java.io.File keyFile String passphrase int portNumber public void <init> (org.tmatesoft.svn.core.auth.SVNAuthentication[]) org.tmatesoft.svn.core.auth.SVNAuthentication[] authentications public void setAuthentications (org.tmatesoft.svn.core.auth.SVNAuthentication[]) org.tmatesoft.svn.core.auth.SVNAuthentication auth int i org.tmatesoft.svn.core.auth.SVNAuthentication[] authentications public void setProxy (java.lang.String, int, java.lang.String, java.lang.String) String proxyHost int proxyPort String proxyUserName String proxyPassword public org.tmatesoft.svn.core.auth.SVNAuthentication getFirstAuthentication (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException String kind String realm org.tmatesoft.svn.core.SVNURL url public org.tmatesoft.svn.core.auth.SVNAuthentication getNextAuthentication (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException String kind String realm org.tmatesoft.svn.core.SVNURL url public void setAuthenticationProvider (org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider) org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider provider public org.tmatesoft.svn.core.auth.ISVNProxyManager getProxyManager (org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url public javax.net.ssl.TrustManager getTrustManager (org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url public void acknowledgeAuthentication (boolean, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.auth.SVNAuthentication) boolean accepted String kind String realm org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.auth.SVNAuthentication authentication public void acknowledgeTrustManager (javax.net.ssl.TrustManager) javax.net.ssl.TrustManager manager public boolean isAuthenticationForced () public void setAuthenticationForced (boolean) boolean forced public java.lang.String getProxyHost () public int getProxyPort () public java.lang.String getProxyUserName () public java.lang.String getProxyPassword () public void acknowledgeProxyContext (boolean, org.tmatesoft.svn.core.SVNErrorMessage) boolean accepted org.tmatesoft.svn.core.SVNErrorMessage errorMessage public int getReadTimeout (org.tmatesoft.svn.core.io.SVNRepository) org.tmatesoft.svn.core.io.SVNRepository repository String protocol public int getConnectTimeout (org.tmatesoft.svn.core.io.SVNRepository) org.tmatesoft.svn.core.io.SVNRepository repository String protocol public void verifyHostKey (java.lang.String, int, java.lang.String, byte[]) throws org.tmatesoft.svn.core.SVNException String hostName int port String keyAlgorithm byte[] hostKey }
org/tmatesoft/svn/core/replicator/
org/tmatesoft/svn/core/replicator/SVNRepositoryReplicator$2.class
SVNRepositoryReplicator.java package org.tmatesoft.svn.core.replicator org.tmatesoft.svn.core.replicator.SVNRepositoryReplicator$2 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { final synthetic long val$previousRev final synthetic org.tmatesoft.svn.core.replicator.SVNRepositoryReplicator this$0 void <init> (org.tmatesoft.svn.core.replicator.SVNRepositoryReplicator, long) public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNReporter reporter }
org/tmatesoft/svn/core/replicator/SVNRepositoryReplicator$1.class
SVNRepositoryReplicator.java package org.tmatesoft.svn.core.replicator org.tmatesoft.svn.core.replicator.SVNRepositoryReplicator$1 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { final synthetic org.tmatesoft.svn.core.SVNLogEntry[] val$currentRevision final synthetic org.tmatesoft.svn.core.replicator.SVNRepositoryReplicator this$0 void <init> (org.tmatesoft.svn.core.replicator.SVNRepositoryReplicator, org.tmatesoft.svn.core.SVNLogEntry[]) public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry }
org/tmatesoft/svn/core/replicator/ISVNReplicationHandler.class
ISVNReplicationHandler.java package org.tmatesoft.svn.core.replicator public abstract org.tmatesoft.svn.core.replicator.ISVNReplicationHandler extends java.lang.Object { public abstract void revisionReplicating (org.tmatesoft.svn.core.replicator.SVNRepositoryReplicator, org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException public abstract void revisionReplicated (org.tmatesoft.svn.core.replicator.SVNRepositoryReplicator, org.tmatesoft.svn.core.SVNCommitInfo) throws org.tmatesoft.svn.core.SVNException public abstract void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException }
org/tmatesoft/svn/core/replicator/SVNReplicationEditor$EntryBaton.class
SVNReplicationEditor.java package org.tmatesoft.svn.core.replicator org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton extends java.lang.Object { private String myPath private int myPropsAct private int myTextAct private org.tmatesoft.svn.core.SVNProperties myProps public void <init> (java.lang.String) String path static synthetic int access$002 (org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton, int) org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton x0 int x1 static synthetic org.tmatesoft.svn.core.SVNProperties access$102 (org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic int access$000 (org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton) org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$100 (org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton) org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton x0 static synthetic java.lang.String access$200 (org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton) org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton x0 static synthetic int access$302 (org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton, int) org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton x0 int x1 static synthetic int access$300 (org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton) org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton x0 }
org/tmatesoft/svn/core/replicator/SVNRepositoryReplicator.class
SVNRepositoryReplicator.java package org.tmatesoft.svn.core.replicator public org.tmatesoft.svn.core.replicator.SVNRepositoryReplicator extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { private org.tmatesoft.svn.core.replicator.ISVNReplicationHandler myHandler private void <init> () public static org.tmatesoft.svn.core.replicator.SVNRepositoryReplicator newInstance () public long replicateRepository (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.io.SVNRepository, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository src org.tmatesoft.svn.core.io.SVNRepository dst boolean incremental long fromRevision public long replicateRepository (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.io.SVNRepository, long, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNProperties zeroRevisionProperties org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long previousRev org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err Throwable th String author java.util.Date date org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNProperties revisionProps String commitMessage org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.replicator.SVNReplicationEditor bridgeEditor org.tmatesoft.svn.core.SVNCommitInfo commitInfo long i org.tmatesoft.svn.core.io.SVNRepository src org.tmatesoft.svn.core.io.SVNRepository dst long fromRevision long toRevision long dstLatestRevision long latestRev org.tmatesoft.svn.core.SVNLogEntry[] currentRevision long count private void updateRevisionProperties (org.tmatesoft.svn.core.io.SVNRepository, long, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value java.util.Iterator names org.tmatesoft.svn.core.io.SVNRepository repository long revision org.tmatesoft.svn.core.SVNProperties properties public void setReplicationHandler (org.tmatesoft.svn.core.replicator.ISVNReplicationHandler) org.tmatesoft.svn.core.replicator.ISVNReplicationHandler handler protected void fireReplicatingEvent (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry revision protected void fireReplicatedEvent (org.tmatesoft.svn.core.SVNCommitInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNCommitInfo commitInfo public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException }
org/tmatesoft/svn/core/replicator/SVNReplicationEditor.class
SVNReplicationEditor.java package org.tmatesoft.svn.core.replicator public org.tmatesoft.svn.core.replicator.SVNReplicationEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private static final int ACCEPT private static final int IGNORE private static final int DECIDE private org.tmatesoft.svn.core.io.ISVNEditor myCommitEditor private java.util.Map myCopiedPaths private java.util.Map myChangedPaths private java.util.Set myDeletedPaths private org.tmatesoft.svn.core.io.SVNRepository myRepos private java.util.Map myPathsToFileBatons private java.util.Stack myDirsStack private long myPreviousRevision private long myTargetRevision private org.tmatesoft.svn.core.SVNCommitInfo myCommitInfo private org.tmatesoft.svn.core.io.SVNRepository mySourceRepository public void <init> (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.io.ISVNEditor, org.tmatesoft.svn.core.SVNLogEntry) String path org.tmatesoft.svn.core.SVNLogEntryPath pathChange java.util.Iterator paths org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.SVNLogEntry revision public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton baton public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path long revision String absPath org.tmatesoft.svn.core.SVNLogEntryPath deletedPath public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNErrorMessage err String path String copyFromPath long copyFromRevision String absPath org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton baton org.tmatesoft.svn.core.SVNLogEntryPath changedPath public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton baton public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue propVal String name org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton baton public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton currentDir public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNLogEntryPath realPath org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNErrorMessage err String path String copyFromPath long copyFromRevision String absPath org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton baton org.tmatesoft.svn.core.SVNLogEntryPath changedPath public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton baton public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton baton public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton baton public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton baton public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue propVal String path String name org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton baton public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String textChecksum org.tmatesoft.svn.core.replicator.SVNReplicationEditor$EntryBaton baton public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void abortEdit () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.SVNCommitInfo getCommitInfo () private org.tmatesoft.svn.core.io.SVNRepository getSourceRepository () throws org.tmatesoft.svn.core.SVNException private void completeDeletion (java.lang.String) throws org.tmatesoft.svn.core.SVNException String relativePath String path org.tmatesoft.svn.core.SVNLogEntryPath pathChange java.util.Iterator paths String nextRelativePath String nextRelativePathToDelete String[] entries int j String pathToDelete String absPathToDelete int i String dirPath java.util.Collection pathsToDelete String[] pathsArray String currentOpened private org.tmatesoft.svn.core.SVNLogEntryPath getFileCopyOrigin (java.lang.String) throws org.tmatesoft.svn.core.SVNException String copiedPath int i String candidateParent org.tmatesoft.svn.core.SVNLogEntryPath changedPath String fileRelativePath int i String path Object[] paths org.tmatesoft.svn.core.SVNLogEntryPath realPath java.util.List candidates private boolean areFileContentsEqual (java.lang.String, long, java.lang.String, long, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String path1 long rev1 String path2 long rev2 org.tmatesoft.svn.core.SVNProperties props2 org.tmatesoft.svn.core.SVNProperties props1 org.tmatesoft.svn.core.io.SVNRepository repos String crc1 String crc2 }
org/tmatesoft/svn/core/wc2/
org/tmatesoft/svn/core/wc2/ISvnOperationHandler.class
ISvnOperationHandler.java package org.tmatesoft.svn.core.wc2 public abstract org.tmatesoft.svn.core.wc2.ISvnOperationHandler extends java.lang.Object { public static final org.tmatesoft.svn.core.wc2.ISvnOperationHandler NOOP public abstract void beforeOperation (org.tmatesoft.svn.core.wc2.SvnOperation) throws org.tmatesoft.svn.core.SVNException public abstract void afterOperationSuccess (org.tmatesoft.svn.core.wc2.SvnOperation) throws org.tmatesoft.svn.core.SVNException public abstract void afterOperationFailure (org.tmatesoft.svn.core.wc2.SvnOperation) static void <clinit> () }
org/tmatesoft/svn/core/wc2/SvnCheckout.class
SvnCheckout.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnCheckout extends org.tmatesoft.svn.core.wc2.AbstractSvnUpdate { private org.tmatesoft.svn.core.wc2.SvnTarget source protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public org.tmatesoft.svn.core.wc2.SvnTarget getSource () public void setSource (org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget source protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnCleanup.class
SvnCleanup.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnCleanup extends org.tmatesoft.svn.core.wc2.SvnOperation { private boolean deleteWCProperties protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isDeleteWCProperties () public void setDeleteWCProperties (boolean) boolean deleteWCProperties public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnUnlock.class
SvnUnlock.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnUnlock extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private boolean breakLock protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isBreakLock () public void setBreakLock (boolean) boolean breakLock protected int getMaximumTargetsCount () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnAnnotate.class
SvnAnnotate.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnAnnotate extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private boolean useMergeHistory private boolean ignoreMimeType private org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler private org.tmatesoft.svn.core.wc.SVNRevision startRevision private org.tmatesoft.svn.core.wc.SVNRevision endRevision private String inputEncoding private org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public org.tmatesoft.svn.core.wc.ISVNAnnotateHandler getHandler () public void setHandler (org.tmatesoft.svn.core.wc.ISVNAnnotateHandler) org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler public boolean isUseMergeHistory () public void setUseMergeHistory (boolean) boolean useMergeHistory public boolean isIgnoreMimeType () public void setIgnoreMimeType (boolean) boolean ignoreMimeType public org.tmatesoft.svn.core.wc.SVNRevision getStartRevision () public void setStartRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision startRevision public org.tmatesoft.svn.core.wc.SVNRevision getEndRevision () public void setEndRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision endRevision public java.lang.String getInputEncoding () public void setInputEncoding (java.lang.String) String inputEncoding public org.tmatesoft.svn.core.wc.SVNDiffOptions getDiffOptions () public void setDiffOptions (org.tmatesoft.svn.core.wc.SVNDiffOptions) org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnDiff.class
SvnDiff.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnDiff extends org.tmatesoft.svn.core.wc2.SvnOperation { private org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator diffGenerator private org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions private java.io.OutputStream output private org.tmatesoft.svn.core.wc2.SvnTarget source private org.tmatesoft.svn.core.wc2.SvnTarget firstSource private org.tmatesoft.svn.core.wc2.SvnTarget secondSource private org.tmatesoft.svn.core.wc.SVNRevision startRevision private org.tmatesoft.svn.core.wc.SVNRevision endRevision private boolean ignoreAncestry private boolean noDiffDeleted private boolean showCopiesAsAdds private boolean ignoreContentType private java.io.File relativeToDirectory private boolean useGitDiffFormat protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public void setSource (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc2.SvnTarget source org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end public void setSources (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget source1 org.tmatesoft.svn.core.wc2.SvnTarget source2 public org.tmatesoft.svn.core.wc2.SvnTarget getSource () public org.tmatesoft.svn.core.wc.SVNRevision getStartRevision () public org.tmatesoft.svn.core.wc.SVNRevision getEndRevision () public org.tmatesoft.svn.core.wc2.SvnTarget getFirstSource () public org.tmatesoft.svn.core.wc2.SvnTarget getSecondSource () public void setRelativeToDirectory (java.io.File) java.io.File relativeToDirectory public java.io.File getRelativeToDirectory () public org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator getDiffGenerator () public void setDiffGenerator (org.tmatesoft.svn.core.wc.ISVNDiffGenerator) org.tmatesoft.svn.core.wc.ISVNDiffGenerator diffGenerator public void setDiffGenerator (org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator) org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator diffGenerator public org.tmatesoft.svn.core.wc.SVNDiffOptions getDiffOptions () public void setDiffOptions (org.tmatesoft.svn.core.wc.SVNDiffOptions) org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions public java.io.OutputStream getOutput () public void setOutput (java.io.OutputStream) java.io.OutputStream output public boolean isIgnoreAncestry () public void setIgnoreAncestry (boolean) boolean ignoreAncestry public boolean isNoDiffDeleted () public void setNoDiffDeleted (boolean) boolean noDiffDeleted public boolean isShowCopiesAsAdds () public void setShowCopiesAsAdds (boolean) boolean showCopiesAsAdds public boolean isIgnoreContentType () public void setIgnoreContentType (boolean) boolean ignoreContentType public boolean isUseGitDiffFormat () public void setUseGitDiffFormat (boolean) boolean useGitDiffFormat protected int getMinimumTargetsCount () protected int getMaximumTargetsCount () protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err protected java.io.File getOperationalWorkingCopy () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnScheduleForAddition.class
SvnScheduleForAddition.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnScheduleForAddition extends org.tmatesoft.svn.core.wc2.SvnOperation { private boolean force private boolean includeIgnored private boolean applyAutoProperties private boolean addParents private boolean mkDir private org.tmatesoft.svn.core.wc2.ISvnAddParameters addParameters protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory protected void initDefaults () public boolean isForce () public boolean isIncludeIgnored () public boolean isApplyAutoProperties () public boolean isAddParents () public void setForce (boolean) boolean force public void setIncludeIgnored (boolean) boolean includeIgnored public void setApplyAutoProperties (boolean) boolean applyAutoProperties public void setAddParents (boolean) boolean addParents public boolean isMkDir () public void setMkDir (boolean) boolean mkDir protected int getMaximumTargetsCount () public boolean isUseParentWcFormat () public org.tmatesoft.svn.core.wc2.ISvnAddParameters getAddParameters () public void setAddParameters (org.tmatesoft.svn.core.wc2.ISvnAddParameters) org.tmatesoft.svn.core.wc2.ISvnAddParameters addParameters public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnCommit.class
SvnCommit.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnCommit extends org.tmatesoft.svn.core.wc2.AbstractSvnCommit { private boolean keepChangelists private boolean keepLocks private org.tmatesoft.svn.core.wc2.ISvnCommitParameters commitParameters private org.tmatesoft.svn.core.wc2.SvnCommitPacket packet private boolean force protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isKeepChangelists () public void setKeepChangelists (boolean) boolean keepChangelists public boolean isKeepLocks () public void setKeepLocks (boolean) boolean keepLocks public org.tmatesoft.svn.core.wc2.ISvnCommitParameters getCommitParameters () public void setCommitParameters (org.tmatesoft.svn.core.wc2.ISvnCommitParameters) org.tmatesoft.svn.core.wc2.ISvnCommitParameters commitParameters public org.tmatesoft.svn.core.wc2.SvnCommitPacket collectCommitItems () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.SVNCommitInfo run () throws org.tmatesoft.svn.core.SVNException protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException protected int getMaximumTargetsCount () public void setForce (boolean) boolean force public boolean isForce () public boolean isChangesWorkingCopy () public volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc2/SvnUpgrade.class
SvnUpgrade.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnUpgrade extends org.tmatesoft.svn.core.wc2.SvnOperation { protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnRevisionRange.class
SvnRevisionRange.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnRevisionRange extends org.tmatesoft.svn.core.wc2.SvnObject { private org.tmatesoft.svn.core.wc.SVNRevision start private org.tmatesoft.svn.core.wc.SVNRevision end public static org.tmatesoft.svn.core.wc2.SvnRevisionRange create (org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end private void <init> (org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end public java.lang.String toString () public org.tmatesoft.svn.core.wc.SVNRevision getStart () public org.tmatesoft.svn.core.wc.SVNRevision getEnd () }
org/tmatesoft/svn/core/wc2/SvnMarkReplaced.class
SvnMarkReplaced.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnMarkReplaced extends org.tmatesoft.svn.core.wc2.SvnOperation { protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnSchedule.class
SvnSchedule.java package org.tmatesoft.svn.core.wc2 public final enum org.tmatesoft.svn.core.wc2.SvnSchedule extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.wc2.SvnSchedule NORMAL public static final enum org.tmatesoft.svn.core.wc2.SvnSchedule ADD public static final enum org.tmatesoft.svn.core.wc2.SvnSchedule DELETE public static final enum org.tmatesoft.svn.core.wc2.SvnSchedule REPLACE private static final synthetic org.tmatesoft.svn.core.wc2.SvnSchedule[] $VALUES public static org.tmatesoft.svn.core.wc2.SvnSchedule[] values () public static org.tmatesoft.svn.core.wc2.SvnSchedule valueOf (java.lang.String) String name private void <init> (java.lang.String, int) public java.lang.String asString () public static org.tmatesoft.svn.core.wc2.SvnSchedule fromString (java.lang.String) String str static void <clinit> () }
org/tmatesoft/svn/core/wc2/SvnSetLock.class
SvnSetLock.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnSetLock extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private boolean stealLock private String lockMessage protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isStealLock () public void setStealLock (boolean) boolean stealLock public java.lang.String getLockMessage () public void setLockMessage (java.lang.String) String lockMessage protected int getMaximumTargetsCount () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/AbstractSvnUpdate.class
AbstractSvnUpdate.java package org.tmatesoft.svn.core.wc2 public abstract org.tmatesoft.svn.core.wc2.AbstractSvnUpdate extends org.tmatesoft.svn.core.wc2.SvnOperation { private boolean ignoreExternals private boolean updateLocksOnDemand private boolean allowUnversionedObstructions private org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler externalsHandler protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isIgnoreExternals () public void setIgnoreExternals (boolean) boolean ignoreExternals public boolean isUpdateLocksOnDemand () public void setUpdateLocksOnDemand (boolean) boolean updateLocksOnDemand public boolean isAllowUnversionedObstructions () public void setAllowUnversionedObstructions (boolean) boolean allowUnversionedObstructions public org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler getExternalsHandler () public void setExternalsHandler (org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler) org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler externalsHandler }
org/tmatesoft/svn/core/wc2/SvnCopy.class
SvnCopy.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnCopy extends org.tmatesoft.svn.core.wc2.SvnOperation { private java.util.Collection sources private boolean move private boolean makeParents private boolean failWhenDstExist private boolean ignoreExternals private boolean virtual private boolean disjoint protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.util.Collection getSources () public void addCopySource (org.tmatesoft.svn.core.wc2.SvnCopySource) org.tmatesoft.svn.core.wc2.SvnCopySource source public boolean isMove () public void setMove (boolean) boolean isMove public boolean isMakeParents () public void setMakeParents (boolean) boolean isMakeParents public boolean isFailWhenDstExists () public void setFailWhenDstExists (boolean) boolean isFailWhenDstExist public boolean isIgnoreExternals () public void setIgnoreExternals (boolean) boolean ignoreExternals public boolean isVirtual () public void setVirtual (boolean) boolean virtual public boolean isDisjoint () public void setDisjoint (boolean) boolean disjoint public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnSuggestMergeSources.class
SvnSuggestMergeSources.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnSuggestMergeSources extends org.tmatesoft.svn.core.wc2.SvnOperation { protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnTarget.class
SvnTarget.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnTarget extends java.lang.Object { private org.tmatesoft.svn.core.SVNURL url private java.io.File file private org.tmatesoft.svn.core.wc.SVNRevision pegRevision public static org.tmatesoft.svn.core.wc2.SvnTarget fromFile (java.io.File) java.io.File file public static org.tmatesoft.svn.core.wc2.SvnTarget fromFile (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) java.io.File file org.tmatesoft.svn.core.wc.SVNRevision pegRevision public static org.tmatesoft.svn.core.wc2.SvnTarget fromURL (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public static org.tmatesoft.svn.core.wc2.SvnTarget fromURL (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision private void <init> (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) java.io.File file org.tmatesoft.svn.core.wc.SVNRevision pegRevision private void <init> (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision private org.tmatesoft.svn.core.SVNURL getCanonicalUrl (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL canonicalUrl public boolean isLocal () public boolean isFile () public boolean isURL () public org.tmatesoft.svn.core.SVNURL getURL () public java.io.File getFile () public org.tmatesoft.svn.core.wc.SVNRevision getPegRevision () public org.tmatesoft.svn.core.wc.SVNRevision getResolvedPegRevision () public org.tmatesoft.svn.core.wc.SVNRevision getResolvedPegRevision (org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision defaultRemote org.tmatesoft.svn.core.wc.SVNRevision defaultLocal private void setPegRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision revision public java.lang.String getPathOrUrlString () public java.lang.String getPathOrUrlDecodedString () public java.lang.String toString () }
org/tmatesoft/svn/core/wc2/SvnLogMergeInfo.class
SvnLogMergeInfo.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnLogMergeInfo extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private boolean findMerged private org.tmatesoft.svn.core.wc2.SvnTarget source private boolean discoverChangedPaths private String[] revisionProperties protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isFindMerged () public void setFindMerged (boolean) boolean findMerged public org.tmatesoft.svn.core.wc2.SvnTarget getSource () public void setSource (org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget source public boolean isDiscoverChangedPaths () public void setDiscoverChangedPaths (boolean) boolean discoverChangedPaths public java.lang.String[] getRevisionProperties () public void setRevisionProperties (java.lang.String[]) String[] revisionProperties protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnGetStatusSummary.class
SvnGetStatusSummary.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnGetStatusSummary extends org.tmatesoft.svn.core.wc2.SvnOperation { private String trailUrl private boolean isCommitted protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isCommitted () public void setCommitted (boolean) boolean isCommitted public java.lang.String getTrailUrl () public void setTrailUrl (java.lang.String) String trailUrl public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnCopySource.class
SvnCopySource.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnCopySource extends org.tmatesoft.svn.core.wc2.SvnObject { private org.tmatesoft.svn.core.wc2.SvnTarget source private org.tmatesoft.svn.core.wc.SVNRevision revision private boolean copyContents public static org.tmatesoft.svn.core.wc2.SvnCopySource create (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc2.SvnTarget source org.tmatesoft.svn.core.wc.SVNRevision revision private void <init> (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc2.SvnTarget source org.tmatesoft.svn.core.wc.SVNRevision revision public boolean isLocal () public org.tmatesoft.svn.core.wc2.SvnTarget getSource () public org.tmatesoft.svn.core.wc.SVNRevision getRevision () private void setSource (org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget source private void setRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision revision public boolean isCopyContents () public void setCopyContents (boolean) boolean copyContents public int hashCode () int prime int result public boolean equals (java.lang.Object) Object obj org.tmatesoft.svn.core.wc2.SvnCopySource other public java.lang.String toString () }
org/tmatesoft/svn/core/wc2/SvnResolve.class
SvnResolve.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnResolve extends org.tmatesoft.svn.core.wc2.SvnOperation { private org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice private boolean resolveContents private boolean resolveProperties private boolean resolveTree protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public org.tmatesoft.svn.core.wc.SVNConflictChoice getConflictChoice () public void setConflictChoice (org.tmatesoft.svn.core.wc.SVNConflictChoice) org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice public boolean isResolveContents () public void setResolveContents (boolean) boolean resolveContents public boolean isResolveProperties () public void setResolveProperties (boolean) boolean resolveProperties public boolean isResolveTree () public void setResolveTree (boolean) boolean resolveTree public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnRelocate.class
SvnRelocate.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnRelocate extends org.tmatesoft.svn.core.wc2.SvnOperation { private org.tmatesoft.svn.core.SVNURL fromUrl private org.tmatesoft.svn.core.SVNURL toUrl private boolean ignoreExternals private boolean recursive protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public org.tmatesoft.svn.core.SVNURL getFromUrl () public void setFromUrl (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL fromUrl public org.tmatesoft.svn.core.SVNURL getToUrl () public void setToUrl (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL toUrl public boolean isIgnoreExternals () public void setIgnoreExternals (boolean) boolean ignoreExternals public void setRecursive (boolean) boolean recursive public boolean isRecursive () protected void initDefaults () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnGetChangelistPaths.class
SvnGetChangelistPaths.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnGetChangelistPaths extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory protected int getMaximumTargetsCount () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnAnnotateItem.class
SvnAnnotateItem.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnAnnotateItem extends java.lang.Object { private long revision private org.tmatesoft.svn.core.SVNProperties revisionProperties private org.tmatesoft.svn.core.SVNProperties mergedRevisionProperties private String line private long mergedRevision private String mergedPath private int lineNumber private java.io.File contents private boolean isEof private boolean isRevision private boolean isLine private boolean returnResult public void <init> (boolean) boolean isEof public void <init> (java.util.Date, long, java.lang.String, java.lang.String, java.util.Date, long, java.lang.String, java.lang.String, int) java.util.Date date long revision String author String line java.util.Date mergedDate long mergedRevision String mergedAuthor String mergedPath int lineNumber public void <init> (java.util.Date, long, java.lang.String, java.io.File) java.util.Date date long revision String author java.io.File contents public java.util.Date getDate () public long getRevision () public org.tmatesoft.svn.core.SVNProperties getRevisionProperties () public java.lang.String getAuthor () public java.util.Date getMergedDate () public java.lang.String getLine () public long getMergedRevision () public org.tmatesoft.svn.core.SVNProperties getMergedRevisionProperties () public java.lang.String getMergedAuthor () public java.lang.String getMergedPath () public int getLineNumber () public java.io.File getContents () public boolean isEof () public boolean isLine () public boolean isRevision () public void setReturnResult (boolean) boolean returnResult public boolean getReturnResult () private org.tmatesoft.svn.core.SVNProperties createRevisionProperties (java.lang.String, java.util.Date) String author java.util.Date date org.tmatesoft.svn.core.SVNProperties properties private java.lang.String getAuthor (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties revisionProperties private java.util.Date getDate (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties revisionProperties String dateString }
org/tmatesoft/svn/core/wc2/SvnStatus.class
SvnStatus.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnStatus extends org.tmatesoft.svn.core.wc2.SvnObject { private org.tmatesoft.svn.core.SVNNodeKind kind private java.io.File path private long fileSize private boolean versioned private boolean conflicted private org.tmatesoft.svn.core.wc.SVNStatusType nodeStatus private org.tmatesoft.svn.core.wc.SVNStatusType textStatus private org.tmatesoft.svn.core.wc.SVNStatusType propertiesStatus private boolean wcLocked private boolean copied private org.tmatesoft.svn.core.SVNURL copyFromUrl private long copyFromRevision private org.tmatesoft.svn.core.SVNURL repositoryRootUrl private String repositoryUuid private String repositoryRelativePath private long revision private long changedRevision private org.tmatesoft.svn.core.internal.util.SVNDate changedDate private String changedAuthor private boolean switched private boolean fileExternal private org.tmatesoft.svn.core.SVNLock lock private String changelist private org.tmatesoft.svn.core.SVNDepth depth private org.tmatesoft.svn.core.SVNNodeKind repositoryKind private org.tmatesoft.svn.core.wc.SVNStatusType repositoryNodeStatus private org.tmatesoft.svn.core.wc.SVNStatusType repositoryTextStatus private org.tmatesoft.svn.core.wc.SVNStatusType repositoryPropertiesStatus private org.tmatesoft.svn.core.SVNLock repositoryLock private long repositoryChangedRevision private org.tmatesoft.svn.core.internal.util.SVNDate repositoryChangedDate private String repositoryChangedAuthor public void <init> () public org.tmatesoft.svn.core.SVNNodeKind getKind () public java.io.File getPath () public long getFileSize () public boolean isVersioned () public boolean isConflicted () public org.tmatesoft.svn.core.wc.SVNStatusType getNodeStatus () public org.tmatesoft.svn.core.wc.SVNStatusType getTextStatus () public org.tmatesoft.svn.core.wc.SVNStatusType getPropertiesStatus () public boolean isWcLocked () public boolean isCopied () public org.tmatesoft.svn.core.SVNURL getRepositoryRootUrl () public java.lang.String getRepositoryUuid () public java.lang.String getRepositoryRelativePath () public long getRevision () public long getChangedRevision () public org.tmatesoft.svn.core.internal.util.SVNDate getChangedDate () public java.lang.String getChangedAuthor () public boolean isSwitched () public boolean isFileExternal () public org.tmatesoft.svn.core.SVNLock getLock () public org.tmatesoft.svn.core.SVNDepth getDepth () public org.tmatesoft.svn.core.SVNNodeKind getRepositoryKind () public org.tmatesoft.svn.core.wc.SVNStatusType getRepositoryNodeStatus () public org.tmatesoft.svn.core.wc.SVNStatusType getRepositoryTextStatus () public org.tmatesoft.svn.core.wc.SVNStatusType getRepositoryPropertiesStatus () public org.tmatesoft.svn.core.SVNLock getRepositoryLock () public long getRepositoryChangedRevision () public org.tmatesoft.svn.core.internal.util.SVNDate getRepositoryChangedDate () public java.lang.String getRepositoryChangedAuthor () public void setKind (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind kind public void setPath (java.io.File) java.io.File path public void setFileSize (long) long fileSize public void setVersioned (boolean) boolean versioned public void setConflicted (boolean) boolean conflicted public void setNodeStatus (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType nodeStatus public void setTextStatus (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType textStatus public void setPropertiesStatus (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType propertiesStatus public void setWcLocked (boolean) boolean wcLocked public void setCopied (boolean) boolean copied public void setRepositoryRootUrl (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL repositoryRootUrl public void setRepositoryUuid (java.lang.String) String repositoryUuid public void setRepositoryRelativePath (java.lang.String) String repositoryRelativePath public void setRevision (long) long revision public void setChangedRevision (long) long changedRevision public void setChangedDate (org.tmatesoft.svn.core.internal.util.SVNDate) org.tmatesoft.svn.core.internal.util.SVNDate changedDate public void setChangedAuthor (java.lang.String) String changedAuthor public void setSwitched (boolean) boolean switched public void setFileExternal (boolean) boolean fileExternal public void setLock (org.tmatesoft.svn.core.SVNLock) org.tmatesoft.svn.core.SVNLock lock public void setDepth (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth public void setRepositoryKind (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind repositoryKind public void setRepositoryNodeStatus (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType repositoryNodeStatus public void setRepositoryTextStatus (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType repositoryTextStatus public void setRepositoryPropertiesStatus (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType repositoryPropertiesStatus public void setRepositoryLock (org.tmatesoft.svn.core.SVNLock) org.tmatesoft.svn.core.SVNLock repositoryLock public void setRepositoryChangedRevision (long) long repositoryChangedRevision public void setRepositoryChangedDate (org.tmatesoft.svn.core.internal.util.SVNDate) org.tmatesoft.svn.core.internal.util.SVNDate repositoryChangedDate public void setRepositoryChangedAuthor (java.lang.String) String repositoryChangedAuthor public java.lang.String getChangelist () public void setChangelist (java.lang.String) String changelist public void setCopyFromUrl (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL copyFromUrl public org.tmatesoft.svn.core.SVNURL getCopyFromUrl () public void setCopyFromRevision (long) long copyFromRevision public long getCopyFromRevision () }
org/tmatesoft/svn/core/wc2/SvnGetMergeInfo.class
SvnGetMergeInfo.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnGetMergeInfo extends org.tmatesoft.svn.core.wc2.SvnOperation { protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnWorkingCopyInfo.class
SvnWorkingCopyInfo.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnWorkingCopyInfo extends java.lang.Object { private java.io.File path private org.tmatesoft.svn.core.wc2.SvnSchedule schedule private org.tmatesoft.svn.core.SVNURL copyFromUrl private long copyFromRevision private org.tmatesoft.svn.core.wc2.SvnChecksum checksum private String changelist private org.tmatesoft.svn.core.SVNDepth depth private long recordedSize private long recordedTime private java.util.Collection conflicts private java.io.File wcRoot public void <init> () public java.io.File getPath () public org.tmatesoft.svn.core.wc2.SvnSchedule getSchedule () public org.tmatesoft.svn.core.SVNURL getCopyFromUrl () public org.tmatesoft.svn.core.wc2.SvnChecksum getChecksum () public java.lang.String getChangelist () public org.tmatesoft.svn.core.SVNDepth getDepth () public long getRecordedSize () public long getRecordedTime () public java.util.Collection getConflicts () public java.io.File getWcRoot () public void setPath (java.io.File) java.io.File path public void setSchedule (org.tmatesoft.svn.core.wc2.SvnSchedule) org.tmatesoft.svn.core.wc2.SvnSchedule schedule public void setCopyFromUrl (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL copyFromURL public void setChecksum (org.tmatesoft.svn.core.wc2.SvnChecksum) org.tmatesoft.svn.core.wc2.SvnChecksum checksum public void setChangelist (java.lang.String) String changelist public void setDepth (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth public void setRecordedSize (long) long recordedSize public void setRecordedTime (long) long recordedTime public void setConflicts (java.util.Collection) java.util.Collection conflicts public void setWcRoot (java.io.File) java.io.File wcRoot public long getCopyFromRevision () public void setCopyFromRevision (long) long copyFromRevision }
org/tmatesoft/svn/core/wc2/SvnLog.class
SvnLog.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnLog extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private long limit private boolean useMergeHistory private boolean stopOnCopy private boolean discoverChangedPaths private String[] targetPaths private String[] revisionProperties private java.util.Collection revisionRanges protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public long getLimit () public void setLimit (long) long limit public boolean isUseMergeHistory () public void setUseMergeHistory (boolean) boolean useMergeHistory public boolean isDiscoverChangedPaths () public void setDiscoverChangedPaths (boolean) boolean discoverChangedPaths public boolean isStopOnCopy () public void setStopOnCopy (boolean) boolean stopOnCopy public java.util.Collection getRevisionRanges () public void setRevisionRanges (java.util.Collection) java.util.Collection revisionRanges public java.lang.String[] getTargetPaths () public void setTargetPaths (java.lang.String[]) String[] targetPaths public java.lang.String[] getRevisionProperties () public void setRevisionProperties (java.lang.String[]) String[] revisionProperties protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err public void addRange (org.tmatesoft.svn.core.wc2.SvnRevisionRange) org.tmatesoft.svn.core.wc2.SvnRevisionRange range protected int getMaximumTargetsCount () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnSetChangelist.class
SvnSetChangelist.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnSetChangelist extends org.tmatesoft.svn.core.wc2.SvnOperation { private String changelistName private boolean remove protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getChangelistName () public void setChangelistName (java.lang.String) String changelistName public boolean isRemove () public void setRemove (boolean) boolean remove protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err protected int getMaximumTargetsCount () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnCanonicalizeUrls.class
SvnCanonicalizeUrls.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnCanonicalizeUrls extends org.tmatesoft.svn.core.wc2.SvnOperation { private boolean omitDefaultPort private boolean ignoreExternals protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isOmitDefaultPort () public void setOmitDefaultPort (boolean) boolean omitDefaultPort public boolean isIgnoreExternals () public void setIgnoreExternals (boolean) boolean ignoreExternals protected void initDefaults () }
org/tmatesoft/svn/core/wc2/SvnObject.class
SvnObject.java package org.tmatesoft.svn.core.wc2 public abstract org.tmatesoft.svn.core.wc2.SvnObject extends java.lang.Object { private Object userData public void <init> () public java.lang.Object getUserData () public void setUserData (java.lang.Object) Object userData }
org/tmatesoft/svn/core/wc2/SvnRemoteMkDir.class
SvnRemoteMkDir.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnRemoteMkDir extends org.tmatesoft.svn.core.wc2.AbstractSvnCommit { private boolean makeParents public boolean isMakeParents () public void setMakeParents (boolean) boolean makeParents protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory protected int getMaximumTargetsCount () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnChecksum.class
SvnChecksum.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnChecksum extends java.lang.Object { private org.tmatesoft.svn.core.wc2.SvnChecksum$Kind kind private String digest public void <init> (org.tmatesoft.svn.core.wc2.SvnChecksum$Kind, java.lang.String) org.tmatesoft.svn.core.wc2.SvnChecksum$Kind kind String digest public org.tmatesoft.svn.core.wc2.SvnChecksum$Kind getKind () public java.lang.String getDigest () public void setKind (org.tmatesoft.svn.core.wc2.SvnChecksum$Kind) org.tmatesoft.svn.core.wc2.SvnChecksum$Kind kind public void setDigest (java.lang.String) String digest public java.lang.String toString () public int hashCode () int hashCode public boolean equals (java.lang.Object) Object obj org.tmatesoft.svn.core.wc2.SvnChecksum other boolean equals public static org.tmatesoft.svn.core.wc2.SvnChecksum fromString (java.lang.String) throws org.tmatesoft.svn.core.SVNException String checksum org.tmatesoft.svn.core.wc2.SvnChecksum$Kind kind String digest }
org/tmatesoft/svn/core/wc2/AbstractSvnCommit$1.class
AbstractSvnCommit.java package org.tmatesoft.svn.core.wc2 org.tmatesoft.svn.core.wc2.AbstractSvnCommit$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler { final synthetic org.tmatesoft.svn.core.wc2.AbstractSvnCommit this$0 void <init> (org.tmatesoft.svn.core.wc2.AbstractSvnCommit) public org.tmatesoft.svn.core.SVNProperties getRevisionProperties (java.lang.String, org.tmatesoft.svn.core.wc2.SvnCommitItem[], org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String message org.tmatesoft.svn.core.wc2.SvnCommitItem[] commitables org.tmatesoft.svn.core.SVNProperties revisionProperties public java.lang.String getCommitMessage (java.lang.String, org.tmatesoft.svn.core.wc2.SvnCommitItem[]) throws org.tmatesoft.svn.core.SVNException String message org.tmatesoft.svn.core.wc2.SvnCommitItem[] commitables }
org/tmatesoft/svn/core/wc2/SvnSwitch.class
SvnSwitch.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnSwitch extends org.tmatesoft.svn.core.wc2.AbstractSvnUpdate { private boolean depthIsSticky private boolean ignoreAncestry private org.tmatesoft.svn.core.wc2.SvnTarget switchTarget protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isDepthIsSticky () public boolean isIgnoreAncestry () public org.tmatesoft.svn.core.wc2.SvnTarget getSwitchTarget () public void setDepthIsSticky (boolean) boolean depthIsSticky public void setIgnoreAncestry (boolean) boolean ignoreAncestry public void setSwitchTarget (org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget switchTarget protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnRemoteCopy.class
SvnRemoteCopy.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnRemoteCopy extends org.tmatesoft.svn.core.wc2.AbstractSvnCommit { private boolean move private boolean makeParents private boolean failWhenDstExists private org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler externalsHandler private org.tmatesoft.svn.core.wc2.ISvnCommitParameters commitParameters private boolean disableLocalModifications private java.util.Collection sources protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isMove () public void setMove (boolean) boolean move public boolean isMakeParents () public void setMakeParents (boolean) boolean makeParents public boolean isDisableLocalModifications () public void setDisableLocalModifications (boolean) boolean disableLocalModifications public java.util.Collection getSources () public void addCopySource (org.tmatesoft.svn.core.wc2.SvnCopySource) org.tmatesoft.svn.core.wc2.SvnCopySource source public boolean isFailWhenDstExists () public void setFailWhenDstExists (boolean) boolean failWhenDstExists public org.tmatesoft.svn.core.SVNCommitInfo run () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler getExternalsHandler () public void setExternalsHandler (org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler) org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler externalsHandler public org.tmatesoft.svn.core.wc2.ISvnCommitParameters getCommitParameters () public void setCommitParameters (org.tmatesoft.svn.core.wc2.ISvnCommitParameters) org.tmatesoft.svn.core.wc2.ISvnCommitParameters commitParameters public boolean isChangesWorkingCopy () protected java.io.File getOperationalWorkingCopy () org.tmatesoft.svn.core.wc2.SvnCopySource firstSource public volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc2/SvnDiffStatus.class
SvnDiffStatus.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnDiffStatus extends org.tmatesoft.svn.core.wc2.SvnObject { private org.tmatesoft.svn.core.wc.SVNStatusType modificationType private boolean propertiesModified private org.tmatesoft.svn.core.SVNNodeKind kind private org.tmatesoft.svn.core.SVNURL url private String path private java.io.File file public void <init> () public org.tmatesoft.svn.core.wc.SVNStatusType getModificationType () public void setModificationType (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType modificationType public boolean isPropertiesModified () public void setPropertiesModified (boolean) boolean propertiesModified public org.tmatesoft.svn.core.SVNNodeKind getKind () public void setKind (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind kind public org.tmatesoft.svn.core.SVNURL getUrl () public void setUrl (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public java.lang.String getPath () public void setPath (java.lang.String) String path public java.io.File getFile () public void setFile (java.io.File) java.io.File file }
org/tmatesoft/svn/core/wc2/AbstractSvnCommit.class
AbstractSvnCommit.java package org.tmatesoft.svn.core.wc2 public abstract org.tmatesoft.svn.core.wc2.AbstractSvnCommit extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private String commitMessage private org.tmatesoft.svn.core.SVNProperties revisionProperties private org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler commitHandler protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public org.tmatesoft.svn.core.SVNProperties getRevisionProperties () public void setRevisionProperties (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties revisionProperties public java.lang.String getCommitMessage () public void setCommitMessage (java.lang.String) String commitMessage public void setRevisionProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) String name org.tmatesoft.svn.core.SVNPropertyValue value public org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler getCommitHandler () public void setCommitHandler (org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler) org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler commitHandler }
org/tmatesoft/svn/core/wc2/SvnChecksum$Kind.class
SvnChecksum.java package org.tmatesoft.svn.core.wc2 public final enum org.tmatesoft.svn.core.wc2.SvnChecksum$Kind extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.wc2.SvnChecksum$Kind sha1 public static final enum org.tmatesoft.svn.core.wc2.SvnChecksum$Kind md5 private static final synthetic org.tmatesoft.svn.core.wc2.SvnChecksum$Kind[] $VALUES public static org.tmatesoft.svn.core.wc2.SvnChecksum$Kind[] values () public static org.tmatesoft.svn.core.wc2.SvnChecksum$Kind valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/wc2/ISvnCommitParameters.class
ISvnCommitParameters.java package org.tmatesoft.svn.core.wc2 public abstract org.tmatesoft.svn.core.wc2.ISvnCommitParameters extends java.lang.Object { public abstract org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action onMissingFile (java.io.File) public abstract org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action onMissingDirectory (java.io.File) public abstract boolean onDirectoryDeletion (java.io.File) public abstract boolean onFileDeletion (java.io.File) }
org/tmatesoft/svn/core/wc2/SvnCommitItem.class
SvnCommitItem.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnCommitItem extends java.lang.Object { public static final int ADD public static final int DELETE public static final int TEXT_MODIFIED public static final int PROPS_MODIFIED public static final int COPY public static final int LOCK private java.io.File path private org.tmatesoft.svn.core.SVNNodeKind kind private org.tmatesoft.svn.core.SVNURL url private long revision private org.tmatesoft.svn.core.SVNURL copyFromUrl private long copyFromRevision private int flags private java.util.Map outgoingProperties private java.util.Map incomingProperties public void <init> () public java.io.File getPath () public org.tmatesoft.svn.core.SVNNodeKind getKind () public org.tmatesoft.svn.core.SVNURL getUrl () public long getRevision () public org.tmatesoft.svn.core.SVNURL getCopyFromUrl () public long getCopyFromRevision () public int getFlags () public void setPath (java.io.File) java.io.File path public void setKind (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind kind public void setUrl (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public void setRevision (long) long revision public void setCopyFromUrl (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL copyFromUrl public void setCopyFromRevision (long) long copyFromRevision public void setFlags (int) int commitFlags public boolean hasFlag (int) int flag public java.util.Map getOutgoingProperties () public void addOutgoingProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) String name org.tmatesoft.svn.core.SVNPropertyValue value public java.util.Map getIncomingProperties () public void addIncomingProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) String name org.tmatesoft.svn.core.SVNPropertyValue value }
org/tmatesoft/svn/core/wc2/SvnSetProperty.class
SvnSetProperty.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnSetProperty extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private boolean force private boolean revisionProperty private String propertyName private org.tmatesoft.svn.core.SVNPropertyValue propertyValue private org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider propertyValueProvider protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isForce () public void setForce (boolean) boolean force public org.tmatesoft.svn.core.SVNPropertyValue getPropertyValue () public void setPropertyValue (org.tmatesoft.svn.core.SVNPropertyValue) org.tmatesoft.svn.core.SVNPropertyValue propertyValue public void setPropertyValueProvider (org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider) org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider propertyValueProvider public org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider getPropertyValueProvider () public java.lang.String getPropertyName () public void setPropertyName (java.lang.String) String propertyName protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException public void setRevisionProperty (boolean) boolean revisionProperty public boolean isRevisionProperty () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnFileKind.class
SvnFileKind.java package org.tmatesoft.svn.core.wc2 public final enum org.tmatesoft.svn.core.wc2.SvnFileKind extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.wc2.SvnFileKind FILE public static final enum org.tmatesoft.svn.core.wc2.SvnFileKind DIRECTORY public static final enum org.tmatesoft.svn.core.wc2.SvnFileKind SYMLINK public static final enum org.tmatesoft.svn.core.wc2.SvnFileKind UNKNOWN private static final synthetic org.tmatesoft.svn.core.wc2.SvnFileKind[] $VALUES public static org.tmatesoft.svn.core.wc2.SvnFileKind[] values () public static org.tmatesoft.svn.core.wc2.SvnFileKind valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/wc2/SvnGetProperties.class
SvnGetProperties.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnGetProperties extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private boolean revisionProperties private long revisionNumber protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException public boolean isRevisionProperties () public void setRevisionProperties (boolean) boolean revisionProperties public long getRevisionNumber () public void setRevisionNumber (long) long revisionNumber public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnRevert.class
SvnRevert.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnRevert extends org.tmatesoft.svn.core.wc2.SvnOperation { private boolean revertMissingDirectories protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isRevertMissingDirectories () public void setRevertMissingDirectories (boolean) boolean revertMissingDirectories protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException protected int getMaximumTargetsCount () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/ISvnMerger.class
ISvnMerger.java package org.tmatesoft.svn.core.wc2 public abstract org.tmatesoft.svn.core.wc2.ISvnMerger extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNMerger { public abstract org.tmatesoft.svn.core.wc2.SvnMergeResult mergeText (org.tmatesoft.svn.core.wc2.ISvnMerger, java.io.File, java.io.File, java.io.File, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.wc.SVNDiffOptions) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc2.SvnMergeResult mergeProperties (org.tmatesoft.svn.core.wc2.ISvnMerger, java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean, boolean) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc2/SvnInfo.class
SvnInfo.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnInfo extends org.tmatesoft.svn.core.wc2.SvnObject { private org.tmatesoft.svn.core.SVNURL url private long revision private org.tmatesoft.svn.core.SVNURL repositoryRootURL private String repositoryUuid private org.tmatesoft.svn.core.SVNNodeKind kind private long size private long lastChangedRevision private org.tmatesoft.svn.core.internal.util.SVNDate lastChangedDate private String lastChangedAuthor private org.tmatesoft.svn.core.SVNLock lock private org.tmatesoft.svn.core.wc2.SvnWorkingCopyInfo wcInfo public void <init> () public org.tmatesoft.svn.core.SVNURL getUrl () public long getRevision () public org.tmatesoft.svn.core.SVNURL getRepositoryRootUrl () public java.lang.String getRepositoryUuid () public org.tmatesoft.svn.core.SVNNodeKind getKind () public long getSize () public long getLastChangedRevision () public org.tmatesoft.svn.core.internal.util.SVNDate getLastChangedDate () public java.lang.String getLastChangedAuthor () public org.tmatesoft.svn.core.SVNLock getLock () public org.tmatesoft.svn.core.wc2.SvnWorkingCopyInfo getWcInfo () public void setUrl (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public void setRevision (long) long revision public void setRepositoryRootURL (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL repositoryRootURL public void setRepositoryUuid (java.lang.String) String repositoryUUID public void setKind (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind kind public void setSize (long) long size public void setLastChangedRevision (long) long lastChangedRevision public void setLastChangedDate (org.tmatesoft.svn.core.internal.util.SVNDate) org.tmatesoft.svn.core.internal.util.SVNDate lastChangedDate public void setLastChangedAuthor (java.lang.String) String lastChangedAuthor public void setLock (org.tmatesoft.svn.core.SVNLock) org.tmatesoft.svn.core.SVNLock lock public void setWcInfo (org.tmatesoft.svn.core.wc2.SvnWorkingCopyInfo) org.tmatesoft.svn.core.wc2.SvnWorkingCopyInfo wcInfo }
org/tmatesoft/svn/core/wc2/SvnCommitPacket.class
SvnCommitPacket.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnCommitPacket extends java.lang.Object { private java.util.Map items private java.util.Map itemsByPath private Object lockingContext private org.tmatesoft.svn.core.internal.wc2.ISvnCommitRunner runner private java.util.Map lockTokens public void <init> () public boolean hasItem (java.io.File) java.io.File path public org.tmatesoft.svn.core.wc2.SvnCommitItem getItem (java.io.File) java.io.File path public java.util.Collection getRepositoryRoots () public java.util.Collection getItems (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public void addItem (org.tmatesoft.svn.core.wc2.SvnCommitItem, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.wc2.SvnCommitItem item org.tmatesoft.svn.core.SVNURL repositoryRoot public org.tmatesoft.svn.core.wc2.SvnCommitItem addItem (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, java.lang.String, long, int) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNURL repositoryRoot String repositoryPath long revision String copyFromPath long copyFromRevision int flags org.tmatesoft.svn.core.wc2.SvnCommitItem item public org.tmatesoft.svn.core.wc2.SvnCommitItem addItem (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, int) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL rootUrl org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNURL url long revision org.tmatesoft.svn.core.SVNURL copyFromUrl long copyFromRevision int flags org.tmatesoft.svn.core.wc2.SvnCommitItem item public void setLockingContext (org.tmatesoft.svn.core.internal.wc2.ISvnCommitRunner, java.lang.Object) org.tmatesoft.svn.core.internal.wc2.ISvnCommitRunner commitRunner Object context public void dispose () throws org.tmatesoft.svn.core.SVNException public void setLockTokens (java.util.Map) java.util.Map lockTokens public java.util.Map getLockTokens () public boolean isEmpty () org.tmatesoft.svn.core.SVNURL rootUrl java.util.Iterator i$ public boolean isEmpty (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.wc2.SvnCommitItem item java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL repositoryRootUrl public java.lang.Object getLockingContext () public org.tmatesoft.svn.core.internal.wc2.ISvnCommitRunner getRunner () }
org/tmatesoft/svn/core/wc2/ISvnAddParameters$Action.class
ISvnAddParameters.java package org.tmatesoft.svn.core.wc2 public final enum org.tmatesoft.svn.core.wc2.ISvnAddParameters$Action extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.wc2.ISvnAddParameters$Action ADD_AS_BINARY public static final enum org.tmatesoft.svn.core.wc2.ISvnAddParameters$Action ADD_AS_IS public static final enum org.tmatesoft.svn.core.wc2.ISvnAddParameters$Action REPORT_ERROR private static final synthetic org.tmatesoft.svn.core.wc2.ISvnAddParameters$Action[] $VALUES public static org.tmatesoft.svn.core.wc2.ISvnAddParameters$Action[] values () public static org.tmatesoft.svn.core.wc2.ISvnAddParameters$Action valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/wc2/ISvnObjectReceiver.class
ISvnObjectReceiver.java package org.tmatesoft.svn.core.wc2 public abstract org.tmatesoft.svn.core.wc2.ISvnObjectReceiver extends java.lang.Object { public abstract void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc2/ISvnCommitParameters$Action.class
ISvnCommitParameters.java package org.tmatesoft.svn.core.wc2 public final enum org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action DELETE public static final enum org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action ERROR public static final enum org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action SKIP private static final synthetic org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action[] $VALUES public static org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action[] values () public static org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/wc2/SvnOperation.class
SvnOperation.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnOperation extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnOperationOptionsProvider { private org.tmatesoft.svn.core.SVNDepth depth private java.util.Collection targets private org.tmatesoft.svn.core.wc.SVNRevision revision private java.util.Collection changelists private org.tmatesoft.svn.core.wc2.SvnOperationFactory operationFactory private boolean isSleepForTimestamp private volatile boolean isCancelled protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public org.tmatesoft.svn.core.wc.ISVNEventHandler getEventHandler () public org.tmatesoft.svn.core.wc.ISVNOptions getOptions () protected void initDefaults () public void setSingleTarget (org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget target public void addTarget (org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget target public java.util.Collection getTargets () public org.tmatesoft.svn.core.wc2.SvnTarget getFirstTarget () public void setDepth (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth public org.tmatesoft.svn.core.SVNDepth getDepth () public void setRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision revision public org.tmatesoft.svn.core.wc.SVNRevision getRevision () public void setApplicalbeChangelists (java.util.Collection) java.util.Collection changelists public java.util.Collection getApplicableChangelists () public org.tmatesoft.svn.core.wc2.SvnOperationFactory getOperationFactory () public boolean hasLocalTargets () org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ public boolean hasRemoteTargets () org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ protected void ensureEnoughTargets () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err int targetsCount protected int getMinimumTargetsCount () protected int getMaximumTargetsCount () public void cancel () public boolean isCancelled () public java.lang.Object run () throws org.tmatesoft.svn.core.SVNException protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException protected boolean needsHomohenousTargets () protected void ensureHomohenousTargets () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.wc.ISVNRepositoryPool getRepositoryPool () public org.tmatesoft.svn.core.auth.ISVNAuthenticationManager getAuthenticationManager () public org.tmatesoft.svn.core.ISVNCanceller getCanceller () public boolean isSleepForTimestamp () public void setSleepForTimestamp (boolean) boolean isSleepForTimestamp public boolean hasFileTargets () org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ public boolean isUseParentWcFormat () public boolean isChangesWorkingCopy () protected java.io.File getOperationalWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnCat.class
SvnCat.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnCat extends org.tmatesoft.svn.core.wc2.SvnOperation { private boolean expandKeywords private java.io.OutputStream output protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isExpandKeywords () public void setExpandKeywords (boolean) boolean expandKeywords public java.io.OutputStream getOutput () public void setOutput (java.io.OutputStream) java.io.OutputStream output protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNRevision resolvedRevision org.tmatesoft.svn.core.wc.SVNRevision resolvedPegRevision org.tmatesoft.svn.core.wc.SVNRevision resolvedRevision org.tmatesoft.svn.core.wc.SVNRevision resolvedRevision org.tmatesoft.svn.core.wc.SVNRevision resolvedPegRevision org.tmatesoft.svn.core.wc.SVNRevision resolvedRevision public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnRemoteSetProperty.class
SvnRemoteSetProperty.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnRemoteSetProperty extends org.tmatesoft.svn.core.wc2.AbstractSvnCommit { private boolean force private String propertyName private org.tmatesoft.svn.core.SVNPropertyValue propertyValue private org.tmatesoft.svn.core.wc.SVNRevision baseRevision private org.tmatesoft.svn.core.wc2.ISvnObjectReceiver propertyReceiver private org.tmatesoft.svn.core.SVNPropertyValue originalPropertyValue protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isForce () public void setForce (boolean) boolean force public java.lang.String getPropertyName () public void setPropertyName (java.lang.String) String propertyName public org.tmatesoft.svn.core.SVNPropertyValue getPropertyValue () public void setPropertyValue (org.tmatesoft.svn.core.SVNPropertyValue) org.tmatesoft.svn.core.SVNPropertyValue propertyValue public org.tmatesoft.svn.core.wc.SVNRevision getBaseRevision () public void setBaseRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision baseRevision public org.tmatesoft.svn.core.wc2.ISvnObjectReceiver getPropertyReceiver () public void setPropertyReceiver (org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) org.tmatesoft.svn.core.wc2.ISvnObjectReceiver propertyReceiver public org.tmatesoft.svn.core.SVNPropertyValue getOriginalPropertyValue () public void setOriginalPropertyValue (org.tmatesoft.svn.core.SVNPropertyValue) org.tmatesoft.svn.core.SVNPropertyValue originalPropertyValue protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnDiffSummarize.class
SvnDiffSummarize.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnDiffSummarize extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private org.tmatesoft.svn.core.wc2.SvnTarget firstSource private org.tmatesoft.svn.core.wc2.SvnTarget secondSource private org.tmatesoft.svn.core.wc2.SvnTarget source private org.tmatesoft.svn.core.wc.SVNRevision startRevision private org.tmatesoft.svn.core.wc.SVNRevision endRevision private boolean ignoreAncestry protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public void setSource (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc2.SvnTarget source org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end public void setSources (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget source1 org.tmatesoft.svn.core.wc2.SvnTarget source2 public org.tmatesoft.svn.core.wc2.SvnTarget getSource () public org.tmatesoft.svn.core.wc.SVNRevision getStartRevision () public org.tmatesoft.svn.core.wc.SVNRevision getEndRevision () public org.tmatesoft.svn.core.wc2.SvnTarget getFirstSource () public org.tmatesoft.svn.core.wc2.SvnTarget getSecondSource () public boolean isIgnoreAncestry () public void setIgnoreAncestry (boolean) boolean ignoreAncestry protected java.io.File getOperationalWorkingCopy () protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget firstSource org.tmatesoft.svn.core.wc2.SvnTarget secondSource org.tmatesoft.svn.core.wc2.SvnTarget source private void ensureArgumentsAreValid (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err boolean isRepos1 boolean isRepos2 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url1 java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 org.tmatesoft.svn.core.wc.SVNRevision pegRevision boolean isPath1Local boolean isPath2Local boolean isRepos1 boolean isRepos2 private void ensureRevisionIsValid (org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNRevision revision boolean revisionIsValid public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnExport.class
SvnExport.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnExport extends org.tmatesoft.svn.core.wc2.AbstractSvnUpdate { private boolean force private boolean expandKeywords private String eolStyle private org.tmatesoft.svn.core.wc2.SvnTarget source protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isForce () public boolean isExpandKeywords () public java.lang.String getEolStyle () public void setForce (boolean) boolean force public void setExpandKeywords (boolean) boolean expandKeywords public void setEolStyle (java.lang.String) String eolStyle public org.tmatesoft.svn.core.wc2.SvnTarget getSource () public void setSource (org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget source protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err protected void initDefaults () protected java.io.File getOperationalWorkingCopy () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/ISvnOperationRunner.class
ISvnOperationRunner.java package org.tmatesoft.svn.core.wc2 public abstract org.tmatesoft.svn.core.wc2.ISvnOperationRunner extends java.lang.Object { public abstract boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException public abstract java.lang.Object run (org.tmatesoft.svn.core.wc2.SvnOperation) throws org.tmatesoft.svn.core.SVNException public abstract void setWcContext (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) public abstract void reset (org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) public abstract org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getWcGeneration () }
org/tmatesoft/svn/core/wc2/SvnGetInfo.class
SvnGetInfo.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnGetInfo extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private boolean fetchExcluded private boolean fetchActualOnly protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public void initDefaults () public void setFetchExcluded (boolean) boolean fetchExcluded public void setFetchActualOnly (boolean) boolean fetchActualOnly public boolean isFetchExcluded () public boolean isFetchActualOnly () protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnGetStatus.class
SvnGetStatus.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnGetStatus extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private boolean remote private boolean depthAsSticky private boolean reportIgnored private boolean reportAll private boolean reportExternals private org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook fileListHook private boolean collectParentExternals private long remoteRevision protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isRemote () public boolean isDepthAsSticky () public boolean isReportIgnored () public boolean isReportAll () public boolean isReportExternals () public org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook getFileListHook () public void setRemote (boolean) boolean remote public void setDepthAsSticky (boolean) boolean depthAsSticky public void setReportIgnored (boolean) boolean reportIgnored public void setReportAll (boolean) boolean reportAll public void setReportExternals (boolean) boolean reportExternals public void setFileListHook (org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook) org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook fileListHook protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err public void initDefaults () public boolean isCollectParentExternals () public void setCollectParentExternals (boolean) boolean collect public void setRemoteRevision (long) long revision public long getRemoteRevision () public boolean isUseParentWcFormat () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/ISvnOperationHandler$1.class
ISvnOperationHandler.java package org.tmatesoft.svn.core.wc2 final org.tmatesoft.svn.core.wc2.ISvnOperationHandler$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnOperationHandler { void <init> () public void beforeOperation (org.tmatesoft.svn.core.wc2.SvnOperation) org.tmatesoft.svn.core.wc2.SvnOperation operation public void afterOperationSuccess (org.tmatesoft.svn.core.wc2.SvnOperation) org.tmatesoft.svn.core.wc2.SvnOperation operation public void afterOperationFailure (org.tmatesoft.svn.core.wc2.SvnOperation) org.tmatesoft.svn.core.wc2.SvnOperation operation }
org/tmatesoft/svn/core/wc2/SvnList.class
SvnList.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnList extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private boolean isFetchLocks private int entryFields protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public int getEntryFields () public void setEntryFields (int) int entryFields public boolean isFetchLocks () public void setFetchLocks (boolean) boolean isFetchLocks public boolean isChangesWorkingCopy () protected void initDefaults () }
org/tmatesoft/svn/core/wc2/SvnMerge.class
SvnMerge.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnMerge extends org.tmatesoft.svn.core.wc2.SvnOperation { private org.tmatesoft.svn.core.wc2.SvnTarget firstSource private org.tmatesoft.svn.core.wc2.SvnTarget secondSource private boolean ignoreAncestry private boolean force private boolean recordOnly private boolean dryRun private boolean allowMixedRevisions private org.tmatesoft.svn.core.wc2.SvnTarget source private boolean reintegrate private java.util.Collection ranges private org.tmatesoft.svn.core.wc.SVNDiffOptions mergeOptions protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public void addRevisionRange (org.tmatesoft.svn.core.wc2.SvnRevisionRange) org.tmatesoft.svn.core.wc2.SvnRevisionRange range org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end public java.util.Collection getRevisionRanges () public void setSource (org.tmatesoft.svn.core.wc2.SvnTarget, boolean) org.tmatesoft.svn.core.wc2.SvnTarget source boolean reintegrate public void setSources (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget source1 org.tmatesoft.svn.core.wc2.SvnTarget source2 public org.tmatesoft.svn.core.wc2.SvnTarget getSource () public org.tmatesoft.svn.core.wc2.SvnTarget getFirstSource () public org.tmatesoft.svn.core.wc2.SvnTarget getSecondSource () public boolean isReintegrate () public boolean isIgnoreAncestry () public void setIgnoreAncestry (boolean) boolean ignoreAncestry public boolean isForce () public void setForce (boolean) boolean force public boolean isRecordOnly () public void setRecordOnly (boolean) boolean recordOnly public boolean isDryRun () public void setDryRun (boolean) boolean dryRun public boolean isAllowMixedRevisions () public void setAllowMixedRevisions (boolean) boolean allowMixedRevisions public org.tmatesoft.svn.core.wc.SVNDiffOptions getMergeOptions () public void setMergeOptions (org.tmatesoft.svn.core.wc.SVNDiffOptions) org.tmatesoft.svn.core.wc.SVNDiffOptions mergeOptions public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnImport.class
SvnImport.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnImport extends org.tmatesoft.svn.core.wc2.AbstractSvnCommit { private boolean applyAutoProperties private boolean useGlobalIgnores private boolean force private java.io.File source public boolean isApplyAutoProperties () public void setApplyAutoProperties (boolean) boolean applyAutoProperties public java.io.File getSource () public void setSource (java.io.File) java.io.File source public boolean isForce () public void setForce (boolean) boolean force protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isUseGlobalIgnores () public void setUseGlobalIgnores (boolean) boolean useGlobalIgnores protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnMergeResult.class
SvnMergeResult.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnMergeResult extends java.lang.Object { private final org.tmatesoft.svn.core.wc.SVNStatusType mergeOutcome private org.tmatesoft.svn.core.SVNProperties actualProperties private org.tmatesoft.svn.core.SVNProperties baseProperties public static org.tmatesoft.svn.core.wc2.SvnMergeResult create (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType mergeOutcome private void <init> (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType mergeOutcome public org.tmatesoft.svn.core.wc.SVNStatusType getMergeOutcome () public org.tmatesoft.svn.core.SVNProperties getActualProperties () public void setActualProperties (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties actualProperties public org.tmatesoft.svn.core.SVNProperties getBaseProperties () public void setBaseProperties (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties baseProperties }
org/tmatesoft/svn/core/wc2/SvnReceivingOperation.class
SvnReceivingOperation.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnReceivingOperation extends org.tmatesoft.svn.core.wc2.SvnOperation implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { private org.tmatesoft.svn.core.wc2.ISvnObjectReceiver receiver private Object first private Object last private java.util.Collection receivedObjects protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public void setReceiver (org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) org.tmatesoft.svn.core.wc2.ISvnObjectReceiver receiver public org.tmatesoft.svn.core.wc2.ISvnObjectReceiver getReceiver () public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target Object object public java.lang.Object first () public java.lang.Object last () public java.util.Collection run (java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.util.Collection objects protected void initDefaults () private void setReceivingContainer (java.util.Collection) java.util.Collection receivingContainer private java.util.Collection getReceivedObjects () }
org/tmatesoft/svn/core/wc2/ISvnAddParameters.class
ISvnAddParameters.java package org.tmatesoft.svn.core.wc2 public abstract org.tmatesoft.svn.core.wc2.ISvnAddParameters extends java.lang.Object { public static final org.tmatesoft.svn.core.wc2.ISvnAddParameters DEFAULT public abstract org.tmatesoft.svn.core.wc2.ISvnAddParameters$Action onInconsistentEOLs (java.io.File) static void <clinit> () }
org/tmatesoft/svn/core/wc2/SvnStatusSummary.class
SvnStatusSummary.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnStatusSummary extends org.tmatesoft.svn.core.wc2.SvnObject { private long minRevision private long maxRevision private boolean isModified private boolean isSparseCheckout private boolean isSwitched public void <init> () public long getMinRevision () public long getMaxRevision () public boolean isModified () public boolean isSparseCheckout () public boolean isSwitched () public void setMinRevision (long) long minRevision public void setMaxRevision (long) long maxRevision public void setModified (boolean) boolean isModified public void setSparseCheckout (boolean) boolean isSparseCheckout public void setSwitched (boolean) boolean isSwitched public java.lang.String toString () StringBuffer result }
org/tmatesoft/svn/core/wc2/ISvnAddParameters$1.class
ISvnAddParameters.java package org.tmatesoft.svn.core.wc2 final org.tmatesoft.svn.core.wc2.ISvnAddParameters$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnAddParameters { void <init> () public org.tmatesoft.svn.core.wc2.ISvnAddParameters$Action onInconsistentEOLs (java.io.File) java.io.File file }
org/tmatesoft/svn/core/wc2/SvnUpdate.class
SvnUpdate.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnUpdate extends org.tmatesoft.svn.core.wc2.AbstractSvnUpdate { private boolean depthIsSticky private boolean makeParents private boolean treatAddsAsModifications protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ public boolean isDepthIsSticky () public void setDepthIsSticky (boolean) boolean depthIsSticky public boolean isMakeParents () public void setMakeParents (boolean) boolean makeParents public boolean isTreatAddsAsModifications () public void setTreatAddsAsModifications (boolean) boolean treatAddsAsModifications protected int getMaximumTargetsCount () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/ISvnOperationOptionsProvider.class
ISvnOperationOptionsProvider.java package org.tmatesoft.svn.core.wc2 public abstract org.tmatesoft.svn.core.wc2.ISvnOperationOptionsProvider extends java.lang.Object { public abstract org.tmatesoft.svn.core.wc.ISVNEventHandler getEventHandler () public abstract org.tmatesoft.svn.core.wc.ISVNOptions getOptions () public abstract org.tmatesoft.svn.core.wc.ISVNRepositoryPool getRepositoryPool () public abstract org.tmatesoft.svn.core.auth.ISVNAuthenticationManager getAuthenticationManager () public abstract org.tmatesoft.svn.core.ISVNCanceller getCanceller () }
org/tmatesoft/svn/core/wc2/SvnScheduleForRemoval.class
SvnScheduleForRemoval.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnScheduleForRemoval extends org.tmatesoft.svn.core.wc2.SvnOperation { private boolean force private boolean dryRun private boolean deleteFiles protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public boolean isForce () public void setForce (boolean) boolean force public boolean isDryRun () public void setDryRun (boolean) boolean dryRun public void setDeleteFiles (boolean) boolean deleteFiles public boolean isDeleteFiles () protected void initDefaults () protected int getMaximumTargetsCount () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/SvnOperationFactory.class
SvnOperationFactory.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnOperationFactory extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnOperationOptionsProvider { private java.util.Map anyFormatOperationRunners private java.util.Map noneOperationRunners private java.util.Map v17OperationRunners private java.util.Map v16OperationRunners private org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authenticationManager private org.tmatesoft.svn.core.ISVNCanceller canceller private org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler private org.tmatesoft.svn.core.wc.ISVNOptions options private org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool private org.tmatesoft.svn.core.wc2.ISvnOperationHandler operationHandler private boolean autoCloseContext private boolean autoDisposeRepositoryPool private org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext private org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration primaryWcGeneration private int runLevel public void <init> () public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private void registerRunners () public boolean isAutoCloseContext () public void setAutoCloseContext (boolean) boolean autoCloseContext public org.tmatesoft.svn.core.auth.ISVNAuthenticationManager getAuthenticationManager () public org.tmatesoft.svn.core.ISVNCanceller getCanceller () public org.tmatesoft.svn.core.wc.ISVNEventHandler getEventHandler () public org.tmatesoft.svn.core.wc2.ISvnOperationHandler getOperationHandler () public org.tmatesoft.svn.core.wc.ISVNRepositoryPool getRepositoryPool () public org.tmatesoft.svn.core.wc.ISVNOptions getOptions () public void setAuthenticationManager (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authenticationManager public void setCanceller (org.tmatesoft.svn.core.ISVNCanceller) org.tmatesoft.svn.core.ISVNCanceller canceller public void setEventHandler (org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler public void setOptions (org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNOptions options public void setRepositoryPool (org.tmatesoft.svn.core.wc.ISVNRepositoryPool) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool public void setOperationHandler (org.tmatesoft.svn.core.wc2.ISvnOperationHandler) org.tmatesoft.svn.core.wc2.ISvnOperationHandler operationHandler public void dispose () public org.tmatesoft.svn.core.wc2.SvnAnnotate createAnnotate () public org.tmatesoft.svn.core.wc2.SvnCat createCat () public org.tmatesoft.svn.core.wc2.SvnImport createImport () public org.tmatesoft.svn.core.wc2.SvnCopy createCopy () public org.tmatesoft.svn.core.wc2.SvnRemoteCopy createRemoteCopy () public org.tmatesoft.svn.core.wc2.SvnRemoteMkDir createRemoteMkDir () public org.tmatesoft.svn.core.wc2.SvnRemoteSetProperty createRemoteSetProperty () public org.tmatesoft.svn.core.wc2.SvnSetChangelist createSetChangelist () public org.tmatesoft.svn.core.wc2.SvnGetChangelistPaths createGetChangelistPaths () public org.tmatesoft.svn.core.wc2.SvnSetLock createSetLock () public org.tmatesoft.svn.core.wc2.SvnUnlock createUnlock () public org.tmatesoft.svn.core.wc2.SvnUpgrade createUpgrade () public org.tmatesoft.svn.core.wc2.SvnGetInfo createGetInfo () public org.tmatesoft.svn.core.wc2.SvnGetProperties createGetProperties () public org.tmatesoft.svn.core.wc2.SvnGetStatus createGetStatus () public org.tmatesoft.svn.core.wc2.SvnUpdate createUpdate () public org.tmatesoft.svn.core.wc2.SvnSwitch createSwitch () public org.tmatesoft.svn.core.wc2.SvnCheckout createCheckout () public org.tmatesoft.svn.core.wc2.SvnRelocate createRelocate () public org.tmatesoft.svn.core.wc2.SvnExport createExport () public org.tmatesoft.svn.core.wc2.SvnScheduleForAddition createScheduleForAddition () public org.tmatesoft.svn.core.wc2.SvnCommit createCommit () public org.tmatesoft.svn.core.wc2.SvnScheduleForRemoval createScheduleForRemoval () public org.tmatesoft.svn.core.wc2.SvnMarkReplaced createMarkReplaced () public org.tmatesoft.svn.core.wc2.SvnRevert createRevert () public org.tmatesoft.svn.core.wc2.SvnSetProperty createSetProperty () public org.tmatesoft.svn.core.wc2.SvnLog createLog () public org.tmatesoft.svn.core.wc2.SvnRemoteMkDir createMkDir () public org.tmatesoft.svn.core.wc2.SvnRemoteDelete createRemoteDelete () public org.tmatesoft.svn.core.wc2.SvnMerge createMerge () public org.tmatesoft.svn.core.wc2.SvnDiff createDiff () public org.tmatesoft.svn.core.wc2.SvnDiffSummarize createDiffSummarize () public org.tmatesoft.svn.core.wc2.SvnSuggestMergeSources createSuggestMergeSources () public org.tmatesoft.svn.core.wc2.SvnGetMergeInfo createGetMergeInfo () public org.tmatesoft.svn.core.wc2.SvnLogMergeInfo createLogMergeInfo () public org.tmatesoft.svn.core.wc2.SvnResolve createResolve () public org.tmatesoft.svn.core.wc2.SvnCleanup createCleanup () public org.tmatesoft.svn.core.wc2.SvnList createList () public org.tmatesoft.svn.core.wc2.SvnCanonicalizeUrls createCanonicalizeUrls () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryDump createRepositoryDump () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryCreate createRepositoryCreate () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryHotCopy createRepositoryHotCopy () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryLoad createRepositoryLoad () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryListLocks createRepositoryListLocks () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryListTransactions createRepositoryListTransactions () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryPack createRepositoryPack () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryRecover createRepositoryRecover () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryRemoveLocks createRepositoryRemoveLocks () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryRemoveTransactions createRepositoryRemoveTransactions () public org.tmatesoft.svn.core.wc2.admin.SvnRepositorySetUUID createRepositorySetUUID () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryUpgrade createRepositoryUpgrade () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryVerify createRepositoryVerify () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryInitialize createRepositoryInitialize () public org.tmatesoft.svn.core.wc2.admin.SvnRepositorySyncInfo createRepositorySyncInfo () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryCopyRevisionProperties createRepositoryCopyRevisionProperties () public org.tmatesoft.svn.core.wc2.admin.SvnRepositorySynchronize createRepositorySynchronize () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryFilter createRepositoryFilter () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetAuthor createRepositoryGetAuthor () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetDate createRepositoryGetDate () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetInfo createRepositoryGetInfo () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetLock createRepositoryGetLock () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetLog createRepositoryGetLog () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetUUID createRepositoryGetUUID () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetYoungest createRepositoryGetYoungest () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetProperty createRepositoryGetProperty () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetRevisionProperty createRepositoryGetRevisionProperty () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetProperties createRepositoryGetProperties () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryCat createRepositoryGetCat () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetChanged createRepositoryGetChanged () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetChangedDirectories createRepositoryGetChangedDirectories () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetDiff createRepositoryGetDiff () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetHistory createRepositoryGetHistory () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetTree createRepositoryGetTree () public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetRevisionProperties createRepositoryGetRevisionProperties () public org.tmatesoft.svn.core.wc2.SvnGetStatusSummary createGetStatusSummary () public void setAutoDisposeRepositoryPool (boolean) boolean dispose protected java.lang.Object run (org.tmatesoft.svn.core.wc2.SvnOperation) throws org.tmatesoft.svn.core.SVNException Object result org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext org.tmatesoft.svn.core.wc2.SvnOperation operation org.tmatesoft.svn.core.wc2.ISvnOperationRunner runner private void releaseWcContext (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext private org.tmatesoft.svn.core.internal.wc17.SVNWCContext obtainWcContext () private void disposeWcContext () private boolean isAutoDisposeRepositoryPool () protected org.tmatesoft.svn.core.wc2.ISvnOperationRunner getImplementation (org.tmatesoft.svn.core.wc2.SvnOperation) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File wcPath int format boolean isApplicable org.tmatesoft.svn.core.wc2.ISvnOperationRunner candidateRunner java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnOperation operation boolean isAdditionMode org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration java.util.List candidateRunners org.tmatesoft.svn.core.wc2.ISvnOperationRunner runner public boolean isPrimaryWcGenerationOnly () public boolean isAssertRefCount () protected void registerOperationRunner (java.lang.Class, org.tmatesoft.svn.core.wc2.ISvnOperationRunner) java.util.Set formatsSet java.util.List runners java.util.Map runnerMap java.util.Iterator i$ Class operationClass org.tmatesoft.svn.core.wc2.ISvnOperationRunner runner java.util.Collection maps org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration[] scope public static boolean isWorkingCopyRoot (java.io.File) org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e java.io.File versionedDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public static boolean isVersionedDirectory (java.io.File) java.io.File directory public static boolean isVersionedDirectory (java.io.File, boolean) org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo nodeInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo info org.tmatesoft.svn.core.SVNException e1 org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File directory boolean isAdditionMode java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File adminDirectory public static java.io.File getWorkingCopyRoot (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File versionedDir boolean stopOnExternals org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration private static java.io.File getWorkingCopyRootOld (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNExternal external java.io.File externalFile int i org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String externalsProperty org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess parentAccess java.io.File parentRoot java.io.File versionedDir boolean stopOnExternals java.io.File parent private static java.io.File getWorkingCopyRootNg (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File targetAbsPath int i String externalDefinition org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals java.io.File defPath java.util.Iterator i$ java.io.File parentWcRoot org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore storage org.tmatesoft.svn.core.SVNException e java.io.File wcRoot java.io.File versionedDir boolean stopOnExternals org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db public static org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration detectWcGeneration (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean climbUp public static org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration detectWcGeneration (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.SVNException inner org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.SVNException inner org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File path boolean climbUp boolean isAdditionMode private static java.util.List getRunners (java.lang.Class, java.util.Map) Class clazz java.util.Map map java.util.List list public org.tmatesoft.svn.core.internal.wc17.SVNWCContext getWcContext () public org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getPrimaryWcGeneration () String systemProperty public org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getSecondaryWcGeneration () public void setPrimaryWcGeneration (org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration primaryWcGeneration private org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration[] getRunnerScope (org.tmatesoft.svn.core.wc2.ISvnOperationRunner) org.tmatesoft.svn.core.wc2.ISvnOperationRunner runner org.tmatesoft.svn.core.wc2.SvnCommitPacket collectCommitItems (org.tmatesoft.svn.core.wc2.SvnCommit) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext org.tmatesoft.svn.core.wc2.SvnCommit operation org.tmatesoft.svn.core.wc2.ISvnOperationRunner runner private void assertRefCount (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirParsedInfo java.io.File operationalWorkingCopy org.tmatesoft.svn.core.wc2.SvnOperation operation org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb wcdb }
org/tmatesoft/svn/core/wc2/SvnRemoteDelete.class
SvnRemoteDelete.java package org.tmatesoft.svn.core.wc2 public org.tmatesoft.svn.core.wc2.SvnRemoteDelete extends org.tmatesoft.svn.core.wc2.AbstractSvnCommit { protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory protected int getMaximumTargetsCount () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/hooks/
org/tmatesoft/svn/core/wc2/hooks/ISvnPropertyValueProvider.class
ISvnPropertyValueProvider.java package org.tmatesoft.svn.core.wc2.hooks public abstract org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider extends java.lang.Object { public abstract org.tmatesoft.svn.core.SVNProperties providePropertyValues (java.io.File, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc2/hooks/ISvnFileListHook.class
ISvnFileListHook.java package org.tmatesoft.svn.core.wc2.hooks public abstract org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook extends java.lang.Object { public abstract java.util.Map listFiles (java.io.File) }
org/tmatesoft/svn/core/wc2/hooks/ISvnExternalsHandler.class
ISvnExternalsHandler.java package org.tmatesoft.svn.core.wc2.hooks public abstract org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler extends java.lang.Object { public abstract org.tmatesoft.svn.core.wc.SVNRevision[] handleExternal (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision) }
org/tmatesoft/svn/core/wc2/hooks/ISvnCommitHandler.class
ISvnCommitHandler.java package org.tmatesoft.svn.core.wc2.hooks public abstract org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler extends java.lang.Object { public abstract java.lang.String getCommitMessage (java.lang.String, org.tmatesoft.svn.core.wc2.SvnCommitItem[]) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNProperties getRevisionProperties (java.lang.String, org.tmatesoft.svn.core.wc2.SvnCommitItem[], org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc2/admin/
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetRevisionProperties.class
SvnRepositoryGetRevisionProperties.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetRevisionProperties extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String transactionName public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetInfo.class
SvnRepositoryGetInfo.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetInfo extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String transactionName public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryCreate.class
SvnRepositoryCreate.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryCreate extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String uuid private boolean enableRevisionProperties private boolean force private boolean pre14Compatible private boolean pre15Compatible private boolean pre16Compatible private boolean pre17Compatible private boolean with17Compatible public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getUuid () public void setUuid (java.lang.String) String uuid public boolean isEnableRevisionProperties () public void setEnableRevisionProperties (boolean) boolean enableRevisionProperties public boolean isForce () public void setForce (boolean) boolean force public boolean isPre15Compatible () public void setPre15Compatible (boolean) boolean pre15Compatible public boolean isPre16Compatible () public void setPre16Compatible (boolean) boolean pre16Compatible public boolean isPre17Compatible () public void setPre17Compatible (boolean) boolean pre17Compatible public boolean isWith17Compatible () public void setWith17Compatible (boolean) boolean with17Compatible public boolean isPre14Compatible () public void setPre14Compatible (boolean) boolean pre14Compatible }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryDump.class
SvnRepositoryDump.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryDump extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { private java.io.OutputStream out private org.tmatesoft.svn.core.wc.SVNRevision startRevision private org.tmatesoft.svn.core.wc.SVNRevision endRevision private boolean useDelta private boolean incremental public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.io.OutputStream getOut () public void setOut (java.io.OutputStream) java.io.OutputStream out public org.tmatesoft.svn.core.wc.SVNRevision getStartRevision () public void setStartRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision startRevision public org.tmatesoft.svn.core.wc.SVNRevision getEndRevision () public void setEndRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision endRevision public boolean isUseDelta () public void setUseDelta (boolean) boolean useDelta public boolean isIncremental () public void setIncremental (boolean) boolean incremental protected void ensureArgumentsAreValid () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryLoad.class
SvnRepositoryLoad.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryLoad extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { private java.io.InputStream dumpStream private boolean usePreCommitHook private boolean usePostCommitHook private org.tmatesoft.svn.core.wc.admin.SVNUUIDAction uuidAction private String parentDir public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory protected void initDefaults () public java.io.InputStream getDumpStream () public void setDumpStream (java.io.InputStream) java.io.InputStream dumpStream public boolean isUsePreCommitHook () public void setUsePreCommitHook (boolean) boolean usePreCommitHook public boolean isUsePostCommitHook () public void setUsePostCommitHook (boolean) boolean usePostCommitHook public org.tmatesoft.svn.core.wc.admin.SVNUUIDAction getUuidAction () public void setUuidAction (org.tmatesoft.svn.core.wc.admin.SVNUUIDAction) org.tmatesoft.svn.core.wc.admin.SVNUUIDAction uuidAction public java.lang.String getParentDir () public void setParentDir (java.lang.String) String parentDir }
org/tmatesoft/svn/core/wc2/admin/SvnRepositorySyncInfo.class
SvnRepositorySyncInfo.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositorySyncInfo extends org.tmatesoft.svn.core.wc2.SvnOperation { private org.tmatesoft.svn.core.SVNURL toUrl public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public org.tmatesoft.svn.core.SVNURL getToUrl () public void setToUrl (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL toUrl }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryInitialize.class
SvnRepositoryInitialize.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryInitialize extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private org.tmatesoft.svn.core.SVNURL fromURL private org.tmatesoft.svn.core.SVNURL toURL public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public org.tmatesoft.svn.core.SVNURL getFromURL () public void setFromURL (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL fromURL public org.tmatesoft.svn.core.SVNURL getToURL () public void setToURL (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL toURL }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetChanged.class
SvnRepositoryGetChanged.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetChanged extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { private String transactionName private boolean includeCopyInfo public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName public boolean isIncludeCopyInfo () public void setIncludeCopyInfo (boolean) boolean includeCopyInfo }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryListTransactions.class
SvnRepositoryListTransactions.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryListTransactions extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetProperty.class
SvnRepositoryGetProperty.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetProperty extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String transactionName private String path private String propName public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName public java.lang.String getPath () public void setPath (java.lang.String) String path public java.lang.String getPropName () public void setPropName (java.lang.String) String propName }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetRevisionProperty.class
SvnRepositoryGetRevisionProperty.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetRevisionProperty extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String transactionName private String propName public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName public java.lang.String getPropName () public void setPropName (java.lang.String) String propName }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryCopyRevisionProperties.class
SvnRepositoryCopyRevisionProperties.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryCopyRevisionProperties extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { private org.tmatesoft.svn.core.SVNURL toURL private long startRevision private long endRevision public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public org.tmatesoft.svn.core.SVNURL getToURL () public void setToURL (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL toURL public long getStartRevision () public void setStartRevision (long) long startRevision public long getEndRevision () public void setEndRevision (long) long endRevision }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetYoungest.class
SvnRepositoryGetYoungest.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetYoungest extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryReceivingOperation.class
SvnRepositoryReceivingOperation.java package org.tmatesoft.svn.core.wc2.admin public abstract org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private java.io.File repositoryRoot protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public void setRepositoryRoot (java.io.File) java.io.File repositoryRoot public java.io.File getRepositoryRoot () }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetChangedDirectories.class
SvnRepositoryGetChangedDirectories.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetChangedDirectories extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { private String transactionName public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryRemoveTransactions.class
SvnRepositoryRemoveTransactions.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryRemoveTransactions extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { private String[] transactions public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String[] getTransactions () public void setTransactions (java.lang.String[]) String[] transactions }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryOperation.class
SvnRepositoryOperation.java package org.tmatesoft.svn.core.wc2.admin public abstract org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation extends org.tmatesoft.svn.core.wc2.SvnOperation { private java.io.File repositoryRoot protected void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public void setRepositoryRoot (java.io.File) java.io.File repositoryRoot public java.io.File getRepositoryRoot () public boolean isChangesWorkingCopy () }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetLock.class
SvnRepositoryGetLock.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetLock extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String path public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getPath () public void setPath (java.lang.String) String path }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryPack.class
SvnRepositoryPack.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryPack extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory }
org/tmatesoft/svn/core/wc2/admin/SvnRepositorySetUUID.class
SvnRepositorySetUUID.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositorySetUUID extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String uuid public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getUUID () public void setUUID (java.lang.String) String uuid }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetLog.class
SvnRepositoryGetLog.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetLog extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String transactionName public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetProperties.class
SvnRepositoryGetProperties.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetProperties extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String transactionName private String path public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName public java.lang.String getPath () public void setPath (java.lang.String) String path }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryHotCopy.class
SvnRepositoryHotCopy.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryHotCopy extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private java.io.File srcRepositoryRoot public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.io.File getSrcRepositoryRoot () public void setSrcRepositoryRoot (java.io.File) java.io.File srcRepositoryRoot public java.io.File getNewRepositoryRoot () public void setNewRepositoryRoot (java.io.File) java.io.File newRepositoryRoot }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryRemoveLocks.class
SvnRepositoryRemoveLocks.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryRemoveLocks extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { private String[] paths public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String[] getPaths () public void setPaths (java.lang.String[]) String[] paths }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryRecover.class
SvnRepositoryRecover.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryRecover extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetHistory.class
SvnRepositoryGetHistory.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetHistory extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { private String path private boolean includeIDs private long limit public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getPath () public void setPath (java.lang.String) String path public boolean isIncludeIDs () public void setIncludeIDs (boolean) boolean includeIDs public long getLimit () public void setLimit (long) long limit }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryUpgrade.class
SvnRepositoryUpgrade.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryUpgrade extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetUUID.class
SvnRepositoryGetUUID.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetUUID extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetDate.class
SvnRepositoryGetDate.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetDate extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String transactionName public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName }
org/tmatesoft/svn/core/wc2/admin/SvnRepositorySynchronize.class
SvnRepositorySynchronize.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositorySynchronize extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private org.tmatesoft.svn.core.SVNURL toURL public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public org.tmatesoft.svn.core.SVNURL getToURL () public void setToURL (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL toURL }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetAuthor.class
SvnRepositoryGetAuthor.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetAuthor extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String transactionName public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryFilter.class
SvnRepositoryFilter.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryFilter extends org.tmatesoft.svn.core.wc2.SvnReceivingOperation { private java.io.InputStream dumpStream private java.io.OutputStream resultDumpStream private boolean exclude private boolean renumberRevisions private boolean dropEmptyRevisions private boolean preserveRevisionProperties private java.util.Collection prefixes private boolean skipMissingMergeSources public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.io.InputStream getDumpStream () public void setDumpStream (java.io.InputStream) java.io.InputStream dumpStream public java.io.OutputStream getResultDumpStream () public void setResultDumpStream (java.io.OutputStream) java.io.OutputStream resultDumpStream public boolean isExclude () public void setExclude (boolean) boolean exclude public boolean isRenumberRevisions () public void setRenumberRevisions (boolean) boolean renumberRevisions public boolean isDropEmptyRevisions () public void setDropEmptyRevisions (boolean) boolean dropEmptyRevisions public boolean isPreserveRevisionProperties () public void setPreserveRevisionProperties (boolean) boolean preserveRevisionProperties public java.util.Collection getPrefixes () public void setPrefixes (java.util.Collection) java.util.Collection prefixes public boolean isSkipMissingMergeSources () public void setSkipMissingMergeSources (boolean) boolean skipMissingMergeSources protected int getMinimumTargetsCount () }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryListLocks.class
SvnRepositoryListLocks.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryListLocks extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetDiff.class
SvnRepositoryGetDiff.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetDiff extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String transactionName private boolean diffDeleted private boolean diffAdded private boolean diffCopyFrom private java.io.OutputStream outputStream public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName public boolean isDiffDeleted () public void setDiffDeleted (boolean) boolean diffDeleted public boolean isDiffAdded () public void setDiffAdded (boolean) boolean diffAdded public boolean isDiffCopyFrom () public void setDiffCopyFrom (boolean) boolean diffCopyFrom public java.io.OutputStream getOutputStream () public void setOutputStream (java.io.OutputStream) java.io.OutputStream outputStream }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryCat.class
SvnRepositoryCat.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryCat extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryOperation { private String transactionName private String path private java.io.OutputStream outputStream public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName public java.lang.String getPath () public void setPath (java.lang.String) String path public java.io.OutputStream getOutputStream () public void setOutputStream (java.io.OutputStream) java.io.OutputStream outputStream }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryGetTree.class
SvnRepositoryGetTree.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryGetTree extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { private String transactionName private String path private boolean includeIDs private boolean recursive public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory public java.lang.String getTransactionName () public void setTransactionName (java.lang.String) String transactionName public java.lang.String getPath () public void setPath (java.lang.String) String path public boolean isIncludeIDs () public void setIncludeIDs (boolean) boolean includeIDs public boolean isRecursive () public void setRecursive (boolean) boolean recursive }
org/tmatesoft/svn/core/wc2/admin/SvnRepositoryVerify.class
SvnRepositoryVerify.java package org.tmatesoft.svn.core.wc2.admin public org.tmatesoft.svn.core.wc2.admin.SvnRepositoryVerify extends org.tmatesoft.svn.core.wc2.admin.SvnRepositoryReceivingOperation { private org.tmatesoft.svn.core.wc.SVNRevision startRevision private org.tmatesoft.svn.core.wc.SVNRevision endRevision public void <init> (org.tmatesoft.svn.core.wc2.SvnOperationFactory) org.tmatesoft.svn.core.wc2.SvnOperationFactory factory protected void initDefaults () public org.tmatesoft.svn.core.wc.SVNRevision getStartRevision () public void setStartRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision startRevision public org.tmatesoft.svn.core.wc.SVNRevision getEndRevision () public void setEndRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision endRevision }
org/tmatesoft/svn/core/internal/
org/tmatesoft/svn/core/internal/wc17/
org/tmatesoft/svn/core/internal/wc17/SVNStatusEditor17.class
SVNStatusEditor17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17 extends java.lang.Object { protected org.tmatesoft.svn.core.internal.wc17.SVNWCContext myWCContext protected java.io.File myPath protected boolean myIsReportAll protected boolean myIsNoIgnore protected org.tmatesoft.svn.core.SVNDepth myDepth protected org.tmatesoft.svn.core.wc2.ISvnObjectReceiver myStatusHandler protected java.util.Map myExternalsMap protected java.util.Collection myGlobalIgnores protected org.tmatesoft.svn.core.SVNURL myRepositoryRoot protected java.util.Map myRepositoryLocks protected long myTargetRevision protected String myWCRootPath protected org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook myFileListHook protected org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook myDefaultFileListHook protected boolean myIsGetExcluded private boolean myIgnoreTextMods private org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot static final synthetic boolean $assertionsDisabled public void <init> (java.io.File, org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.wc.ISVNOptions, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) java.io.File path org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext org.tmatesoft.svn.core.wc.ISVNOptions options boolean noIgnore boolean reportAll org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc2.ISvnObjectReceiver handler protected void collectExternals (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException java.io.File anchor_abspath String target_name boolean skip_root java.io.File anchor_abspath String target_name boolean skip_root org.tmatesoft.svn.core.SVNNodeKind localKind org.tmatesoft.svn.core.SVNNodeKind kind java.io.File anchor_abspath String target_name boolean skip_root org.tmatesoft.svn.core.internal.wc.SVNFileType fileType public long getTargetRevision () public void targetRevision (long) long revision public void setFileListHook (org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook) org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook filesListHook public org.tmatesoft.svn.core.SVNDepth getDepth () protected org.tmatesoft.svn.core.wc2.ISvnObjectReceiver getDefaultHandler () protected boolean isReportAll () protected boolean isNoIgnore () private static java.util.Collection getGlobalIgnores (org.tmatesoft.svn.core.wc.ISVNOptions) int i java.util.Collection patterns String[] ignores org.tmatesoft.svn.core.wc.ISVNOptions options private void sendStatusStructure (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo, org.tmatesoft.svn.core.SVNNodeKind, boolean, boolean, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo parentReposInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo info org.tmatesoft.svn.core.SVNNodeKind pathKind boolean pathSpecial boolean getAll org.tmatesoft.svn.core.wc2.ISvnObjectReceiver handler org.tmatesoft.svn.core.SVNLock repositoryLock org.tmatesoft.svn.core.wc2.SvnStatus status private void sendUnversionedItem (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, boolean, java.util.Collection, boolean, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) throws org.tmatesoft.svn.core.SVNException java.io.File nodeAbsPath org.tmatesoft.svn.core.SVNNodeKind pathKind boolean treeConflicted java.util.Collection patterns boolean noIgnore org.tmatesoft.svn.core.wc2.ISvnObjectReceiver handler boolean isIgnored boolean isExternal org.tmatesoft.svn.core.wc2.SvnStatus status public static org.tmatesoft.svn.core.wc2.SvnStatus assembleUnversioned17 (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.SVNNodeKind pathKind boolean treeConflicted boolean isIgnored org.tmatesoft.svn.core.wc2.SvnStatus stat public static org.tmatesoft.svn.core.wc2.SvnStatus assembleStatus (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo, org.tmatesoft.svn.core.SVNNodeKind, boolean, boolean, boolean, org.tmatesoft.svn.core.SVNLock) throws org.tmatesoft.svn.core.SVNException boolean switched_p String name org.tmatesoft.svn.core.SVNException e boolean text_modified_p long fileSize long fileTime org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictInfo conflictInfo org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo scheduleInfo org.tmatesoft.svn.core.internal.wc17.db.Structure origin org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictInfo conflictInfo org.tmatesoft.svn.core.internal.wc17.db.Structure externalInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo parentReposInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo info org.tmatesoft.svn.core.SVNNodeKind pathKind boolean pathSpecial boolean getAll boolean ignoreTextMods org.tmatesoft.svn.core.SVNLock repositoryLock boolean switched_p boolean copied org.tmatesoft.svn.core.wc.SVNStatusType node_status org.tmatesoft.svn.core.wc.SVNStatusType text_status org.tmatesoft.svn.core.wc.SVNStatusType prop_status boolean conflicted org.tmatesoft.svn.core.SVNURL copyFromUrl long copyFromRevision org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo org.tmatesoft.svn.core.SVNNodeKind statusKind org.tmatesoft.svn.core.wc2.SvnStatus stat private boolean isExternal (java.io.File) java.io.File externalPath java.util.Iterator paths java.io.File nodeAbsPath private java.util.Collection collectIgnorePatterns (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, java.util.Collection) throws org.tmatesoft.svn.core.SVNException String token java.util.StringTokenizer tokens java.util.List patterns org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelPath java.util.Collection ignores org.tmatesoft.svn.core.SVNProperties props String localIgnores public void setRepositoryInfo (org.tmatesoft.svn.core.SVNURL, java.util.HashMap) org.tmatesoft.svn.core.SVNURL repositoryRoot java.util.HashMap repositoryLocks private static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo readInfo (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo result org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo public void walkStatus (java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File anchorAbsPath String targetName boolean skipRoot java.io.File localAbsPath org.tmatesoft.svn.core.SVNDepth depth boolean getAll boolean noIgnore boolean ignoreTextMods java.util.Collection ignorePatterns org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo dirInfo org.tmatesoft.svn.core.internal.wc.SVNFileType fileType java.io.File anchorAbsPath String targetName boolean skipRoot protected void getDirStatus (java.io.File, java.lang.String, boolean, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo, org.tmatesoft.svn.core.internal.wc.SVNFileType, java.util.Collection, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo pdh java.io.File localRelPath org.tmatesoft.svn.core.SVNException e java.io.File selectedAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo info java.io.File nodeAbsPath org.tmatesoft.svn.core.internal.wc.SVNFileType nodeFileType org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo nodeInfo String name java.util.Iterator i$ java.io.File localAbsPath String selected boolean skipThisDir org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo parentReposInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo dirInfo org.tmatesoft.svn.core.internal.wc.SVNFileType fileType java.util.Collection ignorePatterns org.tmatesoft.svn.core.SVNDepth depth boolean getAll boolean noIgnore org.tmatesoft.svn.core.wc2.ISvnObjectReceiver handler java.util.Map childrenFiles java.util.Set allChildren java.util.Set conflicts java.util.Map nodes java.util.Collection patterns org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo dirReposInfo private static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo getRepositoryRootUrlRelPath (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo additionInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo repoInfo org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo parentRelPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo info java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo result public static org.tmatesoft.svn.core.wc2.SvnStatus internalStatus (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info org.tmatesoft.svn.core.SVNException e boolean hidden boolean isRoot org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo parent_info org.tmatesoft.svn.core.SVNException e java.io.File parent_abspath org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind node_kind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus node_status boolean conflicted org.tmatesoft.svn.core.SVNNodeKind kind boolean isRoot org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunPrejInstall.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunPrejInstall extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation { static final synthetic boolean $assertionsDisabled public void <init> () public void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File localAbspath org.tmatesoft.svn.core.internal.util.SVNSkel conflictSkel java.io.File tmpPrejfileAbspath java.io.File prejfileAbspath static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunFileInstall.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunFileInstall extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation { public void <init> () public void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File srcPath org.tmatesoft.svn.core.internal.util.SVNDate changedDate org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File localAbspath boolean useCommitTimes boolean recordFileInfo java.io.File srcPath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo tinfo }
org/tmatesoft/svn/core/internal/wc17/SVNCommitter17.class
SVNCommitter17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNCommitter17 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler { private org.tmatesoft.svn.core.internal.wc17.SVNWCContext myContext private java.util.Map myCommittables private org.tmatesoft.svn.core.SVNURL myRepositoryRoot private java.util.Map myMd5Checksums private java.util.Map mySha1Checksums private java.util.Map myModifiedFiles private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator myDeltaGenerator private java.util.Collection deletedPaths public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.util.Map, org.tmatesoft.svn.core.SVNURL, java.util.Collection, java.util.Map, java.util.Map) org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.util.Map committables org.tmatesoft.svn.core.SVNURL repositoryRoot java.util.Collection tmpFiles java.util.Map md5Checksums java.util.Map sha1Checksums public static org.tmatesoft.svn.core.SVNCommitInfo commit (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.util.Collection, java.util.Map, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.ISVNEditor, java.util.Map, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.util.Collection tmpFiles java.util.Map committables org.tmatesoft.svn.core.SVNURL repositoryRoot org.tmatesoft.svn.core.io.ISVNEditor commitEditor java.util.Map md5Checksums java.util.Map sha1Checksums org.tmatesoft.svn.core.internal.wc17.SVNCommitter17 committer public java.util.Collection getDeletedPaths () public boolean handleCommitPath (java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String mimeType org.tmatesoft.svn.core.wc.SVNStatusType contentState org.tmatesoft.svn.core.wc.SVNStatusType propState org.tmatesoft.svn.core.SVNException e String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propsIter String copyFromPath org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException e String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propsIter org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e String commitPath org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.wc2.SvnCommitItem item boolean closeDir java.io.File localAbspath long rev org.tmatesoft.svn.core.wc.SVNEvent event long cfRev java.util.Map outgoingProperties boolean fileOpen private void fixError (java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNException, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.wc.SVNEvent event java.io.File localAbspath String path org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNErrorMessage err private java.lang.String getCopyFromPath (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url String path private void sendPropertiesDelta (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc2.SvnCommitItem, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException String propName org.tmatesoft.svn.core.SVNPropertyValue propValue Object i java.util.Iterator i$ java.io.File localAbspath String commitPath org.tmatesoft.svn.core.wc2.SvnCommitItem item org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNProperties propMods public void sendTextDeltas (org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.wc2.SvnCommitItem item java.io.File itemAbspath boolean fulltext org.tmatesoft.svn.core.internal.wc17.SVNCommitter17$TransmittedChecksums transmitTextDeltas org.tmatesoft.svn.core.wc2.SvnChecksum newTextBaseMd5Checksum org.tmatesoft.svn.core.wc2.SvnChecksum newTextBaseSha1Checksum String path java.util.Iterator i$ org.tmatesoft.svn.core.io.ISVNEditor editor private org.tmatesoft.svn.core.internal.wc17.SVNCommitter17$TransmittedChecksums transmitTextDeltas (java.lang.String, java.io.File, boolean, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PristineContentsInfo pristineContents org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WritableBaseInfo openWritableBase java.io.OutputStream newPristineStream java.io.File baseFile org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage corruptedBaseErr org.tmatesoft.svn.core.SVNException e String path java.io.File localAbspath boolean fulltext org.tmatesoft.svn.core.io.ISVNEditor editor java.io.InputStream localStream java.io.InputStream baseStream org.tmatesoft.svn.core.wc2.SvnChecksum expectedMd5Checksum org.tmatesoft.svn.core.wc2.SvnChecksum localMd5Checksum org.tmatesoft.svn.core.wc2.SvnChecksum verifyChecksum org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumOutputStream localSha1ChecksumStream org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream verifyChecksumStream org.tmatesoft.svn.core.SVNErrorMessage error java.io.File newPristineTmpAbspath org.tmatesoft.svn.core.wc2.SvnChecksum localSha1Checksum org.tmatesoft.svn.core.internal.wc17.SVNCommitter17$TransmittedChecksums result private void readRemainingStream (org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream verifyChecksumStream java.io.File sourceFile byte[] buffer int bytesRead }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$SVNEolStyleInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyleInfo extends java.lang.Object { public static final byte[] NATIVE_EOL_STR public static final byte[] LF_EOL_STR public static final byte[] CR_EOL_STR public static final byte[] CRLF_EOL_STR public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle eolStyle public byte[] eolStr public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle, byte[]) org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle style byte[] str public static org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyleInfo fromValue (java.lang.String) String value static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNCommitter17$1.class
SVNCommitter17.java package org.tmatesoft.svn.core.internal.wc17 synthetic org.tmatesoft.svn.core.internal.wc17.SVNCommitter17$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc17/SVNExternalsStore.class
SVNExternalsStore.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore extends java.lang.Object { private org.tmatesoft.svn.core.internal.util.SVNHashMap newExternals private org.tmatesoft.svn.core.internal.util.SVNHashMap oldExternals private org.tmatesoft.svn.core.internal.util.SVNHashMap depths public void <init> () public void addOldExternal (java.io.File, java.lang.String) java.io.File path String oldValue public void addNewExternal (java.io.File, java.lang.String) java.io.File path String newValue public void addExternal (java.io.File, java.lang.String, java.lang.String) java.io.File path String oldValue String newValue public void addDepth (java.io.File, org.tmatesoft.svn.core.SVNDepth) java.io.File localAbsPath org.tmatesoft.svn.core.SVNDepth depth public void removeDepth (java.lang.String) String path public void removeExternal (java.lang.String) String path public java.util.Map getNewExternals () public java.util.Map getOldExternals () public java.util.Map getDepths () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$SVNEolStyle.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle Unknown public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle None public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle Native public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle Fixed private static final synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle[] values () public static org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNUpdateEditor17$1.class
SVNUpdateEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$TreeLocalModsInfo val$modsInfo final synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17 this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17, org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$TreeLocalModsInfo) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnStatus status org.tmatesoft.svn.core.wc.SVNStatusType nodeStatus public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc17/SVNUpdateEditor17$AccumulatedChangeInfo.class
SVNUpdateEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$AccumulatedChangeInfo extends java.lang.Object { public long changedRev public org.tmatesoft.svn.core.internal.util.SVNDate changedDate public String changedAuthor private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1 x0 }
org/tmatesoft/svn/core/internal/wc17/SVNStatusEditor17$1.class
SVNStatusEditor17.java package org.tmatesoft.svn.core.internal.wc17 synthetic org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17$1 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbKind static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc17/SVNWCConflictDescription17$ConflictKind.class
SVNWCConflictDescription17.java package org.tmatesoft.svn.core.internal.wc17 public final enum org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17$ConflictKind extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17$ConflictKind TEXT public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17$ConflictKind PROPERTY public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17$ConflictKind TREE private static final synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17$ConflictKind[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17$ConflictKind[] values () public static org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17$ConflictKind valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNRemoteStatusEditor17.class
SVNRemoteStatusEditor17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17 extends org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17 implements org.tmatesoft.svn.core.io.ISVNEditor org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { private boolean myIsRootOpen private org.tmatesoft.svn.core.wc2.SvnStatus myAnchorStatus private org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo myDirectoryInfo private org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo myFileInfo private java.io.File myAnchorAbsPath private String myTargetBaseName private java.io.File myTargetAbsPath private boolean myIsMarkingDeleted public void <init> (java.io.File, java.lang.String, org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.wc.ISVNOptions, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) throws org.tmatesoft.svn.core.SVNException java.io.File anchorAbsPath String targetBaseName org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext org.tmatesoft.svn.core.wc.ISVNOptions options boolean includeIgnored boolean reportAll org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc2.ISvnObjectReceiver realHandler public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision java.io.File local_abspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind private void tweakStatusHash (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo, org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo, java.io.File, boolean, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNLock) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo dirInfo org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo childDir java.io.File localAbsPath boolean isDir org.tmatesoft.svn.core.wc.SVNStatusType reposNodeStatus org.tmatesoft.svn.core.wc.SVNStatusType reposTextStatus org.tmatesoft.svn.core.wc.SVNStatusType reposPropStatus org.tmatesoft.svn.core.wc.SVNRevision deletedRev org.tmatesoft.svn.core.SVNLock reposLock java.util.Map statushash org.tmatesoft.svn.core.wc2.SvnStatus statstruct public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatusType repos_node_status org.tmatesoft.svn.core.wc.SVNStatusType repos_text_status org.tmatesoft.svn.core.wc.SVNStatusType repos_prop_status org.tmatesoft.svn.core.wc.SVNStatusType repos_node_status org.tmatesoft.svn.core.wc.SVNStatusType repos_text_status org.tmatesoft.svn.core.wc.SVNStatusType repos_prop_status boolean was_deleted org.tmatesoft.svn.core.wc2.SvnStatus dir_status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo dirReposInfo org.tmatesoft.svn.core.wc2.SvnStatus tgt_status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo dirReposInfo org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo db org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo pb private boolean isSendableStatus (org.tmatesoft.svn.core.wc2.SvnStatus) org.tmatesoft.svn.core.wc2.SvnStatus status private void handleStatii (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo, java.util.Map, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.wc2.SvnStatus status java.util.Iterator paths org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo java.util.Map statii boolean dirWasDeleted org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc2.ISvnObjectReceiver handler public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe String path String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File repos_relpath String reposRelPathWithDirectSlashes java.io.File dir_repos_relpath org.tmatesoft.svn.core.wc.SVNStatusType repos_node_status org.tmatesoft.svn.core.wc.SVNStatusType repos_text_status org.tmatesoft.svn.core.wc.SVNStatusType repos_prop_status String path String textChecksum org.tmatesoft.svn.core.wc.SVNStatusType repos_node_status org.tmatesoft.svn.core.wc.SVNStatusType repos_text_status org.tmatesoft.svn.core.wc.SVNStatusType repos_prop_status org.tmatesoft.svn.core.SVNLock repos_lock private void tweakStatusHash (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo, java.io.File, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, long, org.tmatesoft.svn.core.SVNLock) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo fileInfo java.io.File localAbsPath org.tmatesoft.svn.core.wc.SVNStatusType reposNodeStatus org.tmatesoft.svn.core.wc.SVNStatusType reposTextStatus org.tmatesoft.svn.core.wc.SVNStatusType reposPropStatus long revnum org.tmatesoft.svn.core.SVNLock reposLock java.util.Map statushash org.tmatesoft.svn.core.wc2.SvnStatus statstruct private java.io.File findDirReposRelpath (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo dirinfo java.io.File repos_relpath org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo parent org.tmatesoft.svn.core.wc2.SvnStatus status public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnStatus status public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 static synthetic java.io.File access$2500 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17 x0 static synthetic org.tmatesoft.svn.core.wc2.SvnStatus access$2600 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17 x0 }
org/tmatesoft/svn/core/internal/wc17/SVNWCConflictDescription17.class
SVNWCConflictDescription17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17 extends java.lang.Object { private java.io.File localAbspath private org.tmatesoft.svn.core.SVNNodeKind nodeKind private org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17$ConflictKind kind private String propertyName private boolean isBinary private String mimeType private org.tmatesoft.svn.core.wc.SVNConflictAction action private org.tmatesoft.svn.core.wc.SVNConflictReason reason private java.io.File baseFile private java.io.File theirFile private java.io.File myFile private java.io.File mergedFile private org.tmatesoft.svn.core.wc.SVNOperation operation private org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcLeftVersion private org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcRightVersion static final synthetic boolean $assertionsDisabled public void <init> () public static org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17 createText (java.io.File) java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17 conflict public static org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17 createProp (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String) java.io.File localAbspath org.tmatesoft.svn.core.SVNNodeKind nodeKind String propertyName org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17 conflict public static org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17 createTree (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNOperation, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion) java.io.File localAbspath org.tmatesoft.svn.core.SVNNodeKind nodeKind org.tmatesoft.svn.core.wc.SVNOperation operation org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcLeftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcRightVersion org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17 conflict public org.tmatesoft.svn.core.wc.SVNConflictDescription toConflictDescription () String wcPath public java.io.File getLocalAbspath () public void setLocalAbspath (java.io.File) java.io.File localAbspath public org.tmatesoft.svn.core.SVNNodeKind getNodeKind () public void setNodeKind (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind nodeKind public org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17$ConflictKind getKind () public void setKind (org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17$ConflictKind) org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17$ConflictKind kind public java.lang.String getPropertyName () public void setPropertyName (java.lang.String) String propertyName public boolean isBinary () public void setBinary (boolean) boolean isBinary public java.lang.String getMimeType () public void setMimeType (java.lang.String) String mimeType public org.tmatesoft.svn.core.wc.SVNConflictAction getAction () public void setAction (org.tmatesoft.svn.core.wc.SVNConflictAction) org.tmatesoft.svn.core.wc.SVNConflictAction action public org.tmatesoft.svn.core.wc.SVNConflictReason getReason () public void setReason (org.tmatesoft.svn.core.wc.SVNConflictReason) org.tmatesoft.svn.core.wc.SVNConflictReason reason public java.io.File getBaseFile () public void setBaseFile (java.io.File) java.io.File baseFile public java.io.File getTheirFile () public void setTheirFile (java.io.File) java.io.File theirFile public java.io.File getMyFile () public void setMyFile (java.io.File) java.io.File file public java.io.File getMergedFile () public void setMergedFile (java.io.File) java.io.File mergedFile public org.tmatesoft.svn.core.wc.SVNOperation getOperation () public void setOperation (org.tmatesoft.svn.core.wc.SVNOperation) org.tmatesoft.svn.core.wc.SVNOperation operation public org.tmatesoft.svn.core.internal.wc.SVNConflictVersion getSrcLeftVersion () public void setSrcLeftVersion (org.tmatesoft.svn.core.internal.wc.SVNConflictVersion) org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcLeftVersion public org.tmatesoft.svn.core.internal.wc.SVNConflictVersion getSrcRightVersion () public void setSrcRightVersion (org.tmatesoft.svn.core.internal.wc.SVNConflictVersion) org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcRightVersion static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNUpdateEditor17$MergeFileInfo.class
SVNUpdateEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$MergeFileInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.util.SVNSkel workItems public boolean installPristine public java.io.File installFrom public org.tmatesoft.svn.core.wc.SVNStatusType contentState private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1 x0 }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$WorkQueueOperation.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation BASE_REMOVE public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation FILE_INSTALL public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation FILE_COMMIT public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation FILE_REMOVE public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation FILE_MOVE public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation FILE_COPY_TRANSLATED public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation SYNC_FILE_FLAGS public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation PREJ_INSTALL public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation RECORD_FILEINFO public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation TMP_SET_TEXT_CONFLICT_MARKERS public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation TMP_SET_PROPERTY_CONFLICT_MARKER public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation POSTUPGRADE private final String opName private final org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation operation private static final synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation[] values () public static org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation valueOf (java.lang.String) String name private void <init> (java.lang.String, int, java.lang.String, org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation) String opName org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation operation public java.lang.String getOpName () public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation getOperation () static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNUpdateEditor17$2.class
SVNUpdateEditor17.java package org.tmatesoft.svn.core.internal.wc17 synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$2 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbStatus static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunSetPropertyConflictMarkerTemp.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunSetPropertyConflictMarkerTemp extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation { public void <init> () public void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File localAbspath String prejBasename }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$CheckWCRootInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CheckWCRootInfo extends java.lang.Object { public boolean wcRoot public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind public boolean switched public void <init> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunSetTextConflictMarkersTemp.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunSetTextConflictMarkersTemp extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation { public void <init> () public void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException String value java.io.File oldBasename String value java.io.File newBasename String value java.io.File wrkBasename org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File localAbspath int listSize java.io.File oldBasename java.io.File newBasename java.io.File wrkBasename }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunFileMove.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunFileMove extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation { public void <init> () public void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File srcRelPath java.io.File dstRelPath java.io.File srcAbspath java.io.File dstAbspath org.tmatesoft.svn.core.internal.wc.SVNFileType srcType }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$SVNWCSchedule.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCSchedule extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCSchedule normal public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCSchedule add public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCSchedule delete public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCSchedule replace private static final synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCSchedule[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCSchedule[] values () public static org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCSchedule valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNDiffEditor17.class
SVNDiffEditor17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor { private long targetRevision private boolean isRootOpen private java.io.File localTarget private org.tmatesoft.svn.core.SVNDepth depth private org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo currentDirectory private org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext private java.io.File workingCopyRoot private boolean isCompareToBase private boolean isReverseDiff private org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback diffCallback private boolean useAncestry private org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo currentFile private org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor deltaProcessor private java.io.File tempDirectory private java.util.Collection changeLists private String relativeToDirectory private boolean diffUnversioned private boolean diffCopiedAsAdded public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback, boolean, java.util.Collection, boolean, boolean) org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File workingCopyRoot java.io.File localTarget org.tmatesoft.svn.core.SVNDepth depth boolean compareToBase boolean reverseDiff org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback diffCallback boolean useAncestry java.util.Collection changeLists boolean diffUnversioned boolean diffCopiedAsAdded public long getTargetRevision () public java.io.File getWorkingCopyRoot () public org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback getDiffCallback () private org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult getDiffCallbackResult () private boolean isDiffCopiedAsAdded () private boolean isDiffUnversioned () private java.io.File createTempDirectory () throws org.tmatesoft.svn.core.SVNException public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo info String path long revision java.io.File fullPath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo schedule org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo String name org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind nodeKind private void reportAddedDir (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties wcProps org.tmatesoft.svn.core.SVNProperties wcProps org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.SVNDepth depthBelowHere org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo childInfo org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo schedule org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo java.io.File child java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo info java.io.File fullPath java.util.List children private void reportAddedFile (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties wcProps org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo java.io.File sourceFile org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo info java.io.File entryPath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo schedule org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo wcDbInfo org.tmatesoft.svn.core.SVNProperties wcProps String mimeType org.tmatesoft.svn.core.SVNProperties propDiff java.io.File sourceFile private void reportModifiedFile (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure infoStructure org.tmatesoft.svn.core.wc2.SvnChecksum checksum org.tmatesoft.svn.core.SVNException e boolean modified String mimeType org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo wcDbInfo String mimeType java.io.File tmpFile org.tmatesoft.svn.core.SVNProperties originalProperties long revision String baseMimeType String mimeType org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo wcDbInfo boolean modified java.io.File tmpFile org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo dirInfo java.io.File entryPath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo schedule org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCSchedule newSchedule org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.wc2.SvnChecksum checksum java.io.File pristineFile org.tmatesoft.svn.core.SVNProperties pristineProps boolean isAdded public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.SVNDepth subDirDepth public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.SVNDepth subDirDepth public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties reposProps org.tmatesoft.svn.core.SVNProperties originalProps java.io.File fullPath org.tmatesoft.svn.core.SVNProperties diff String name public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision String name public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision String name public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo schedule org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PristineContentsInfo pristineContents String path String baseChecksum java.io.File fullPath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo schedule public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo schedule org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo String originalMimeType String commitPath String textChecksum java.io.File fullPath org.tmatesoft.svn.core.SVNProperties baseProperties org.tmatesoft.svn.core.SVNProperties reposProperties String reposMimeType java.io.File reposFile java.io.File localFile org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo schedule boolean modified org.tmatesoft.svn.core.SVNProperties originalProps public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void cleanup () private org.tmatesoft.svn.core.SVNProperties applyPropChanges (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) String name org.tmatesoft.svn.core.SVNPropertyValue value java.util.Iterator names org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties result private void localDirectoryDiff (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.SVNDepth depthBelowHere org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo childInfo org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfoStructure org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind java.io.File child java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo info java.io.File fullPath java.util.Set processedFiles java.util.List children private boolean matchesLocalTarget (java.io.File) java.io.File fullPath private void diffUnversioned (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, boolean, java.util.Set) throws org.tmatesoft.svn.core.SVNException String pattern java.util.Iterator patterns java.io.File wcRoot java.util.Collection globalIgnores java.util.Collection ignores String rootRelativePath boolean needToComputeRelativePath String mimeType1 String mimeType2 String filePath java.io.File file org.tmatesoft.svn.core.internal.wc.SVNFileType fileType int i java.io.File root org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String parentRelativePath boolean anchor java.util.Set processedFiles java.io.File[] allFiles private org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo createDirInfo (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo parent String path boolean added org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo info private org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo createFileInfo (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo, java.lang.String, boolean) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo parent String path boolean added org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo info private java.io.File detranslateFile (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File fullPath org.tmatesoft.svn.core.SVNProperties properties String keywords String eolStyle String charsetProp String mimeType org.tmatesoft.svn.core.wc.ISVNOptions options String charset boolean special byte[] eol java.io.File tmpFile java.util.Map keywordsMap private java.io.File createTempFile () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File tmpFile private java.io.File getTempDirectory () throws org.tmatesoft.svn.core.SVNException private static void reversePropChanges (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) String name org.tmatesoft.svn.core.SVNPropertyValue newValue org.tmatesoft.svn.core.SVNPropertyValue oldValue java.util.Iterator names org.tmatesoft.svn.core.SVNProperties base org.tmatesoft.svn.core.SVNProperties diff java.util.Collection namesList private static org.tmatesoft.svn.core.SVNProperties computePropsDiff (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNPropertyValue oldValue org.tmatesoft.svn.core.SVNPropertyValue value String newPropName java.util.Iterator names String oldPropName java.util.Iterator names org.tmatesoft.svn.core.SVNProperties props1 org.tmatesoft.svn.core.SVNProperties props2 org.tmatesoft.svn.core.SVNProperties propsDiff }
org/tmatesoft/svn/core/internal/wc17/SVNUpdateEditor17$TreeLocalModsInfo.class
SVNUpdateEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$TreeLocalModsInfo extends java.lang.Object { public boolean modificationsFound public boolean nonDeleteModificationsFound private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1 x0 }
org/tmatesoft/svn/core/internal/wc17/SVNDiffEditor17$1.class
SVNDiffEditor17.java package org.tmatesoft.svn.core.internal.wc17 synthetic org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc17/SVNUpdateEditor17$DirectoryBaton.class
SVNUpdateEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton extends java.lang.Object { private String name private java.io.File localAbsolutePath private java.io.File newRelativePath private java.io.File oldRelativePath private long oldRevision org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton parentBaton private boolean skipThis private boolean alreadyNotified private boolean addingDir private boolean shadowed private long changedRevsion private org.tmatesoft.svn.core.internal.util.SVNDate changedDate private String changedAuthor private java.util.Map deletionConflicts private java.util.Set notPresentFiles private boolean obstructionFound private boolean addExisted private org.tmatesoft.svn.core.SVNProperties entryPropChanges private org.tmatesoft.svn.core.SVNProperties regularPropChanges private org.tmatesoft.svn.core.SVNProperties davPropChanges private boolean edited private org.tmatesoft.svn.core.wc.SVNTreeConflictDescription editConflict private org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo bumpInfo private org.tmatesoft.svn.core.SVNDepth ambientDepth private boolean wasIncomplete final synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17 this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17) public void markEdited () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.SVNURL getURL () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.SVNURL getPreviousURL () throws org.tmatesoft.svn.core.SVNException static synthetic java.io.File access$000 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic boolean access$102 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 boolean x1 static synthetic boolean access$202 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 boolean x1 static synthetic org.tmatesoft.svn.core.SVNDepth access$302 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 org.tmatesoft.svn.core.SVNDepth x1 static synthetic boolean access$402 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 boolean x1 static synthetic java.lang.String access$502 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, java.lang.String) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 String x1 static synthetic org.tmatesoft.svn.core.internal.util.SVNDate access$602 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, org.tmatesoft.svn.core.internal.util.SVNDate) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 org.tmatesoft.svn.core.internal.util.SVNDate x1 static synthetic long access$702 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, long) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 long x1 static synthetic java.io.File access$802 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, java.io.File) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 java.io.File x1 static synthetic java.io.File access$900 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic boolean access$100 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic boolean access$1000 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic java.util.Map access$1100 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic java.util.Map access$1102 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, java.util.Map) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 java.util.Map x1 static synthetic org.tmatesoft.svn.core.SVNDepth access$300 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic java.lang.String access$1300 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic boolean access$1002 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 boolean x1 static synthetic boolean access$1402 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 boolean x1 static synthetic boolean access$1502 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 boolean x1 static synthetic boolean access$1500 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic boolean access$200 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic boolean access$1400 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic long access$1602 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, long) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 long x1 static synthetic org.tmatesoft.svn.core.wc.SVNTreeConflictDescription access$1702 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 org.tmatesoft.svn.core.wc.SVNTreeConflictDescription x1 static synthetic org.tmatesoft.svn.core.SVNProperties access$1800 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$1802 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic org.tmatesoft.svn.core.SVNProperties access$1900 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$1902 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic org.tmatesoft.svn.core.SVNProperties access$2000 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$2002 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic boolean access$2100 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo access$2200 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic boolean access$2300 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic boolean access$400 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic java.util.Set access$2400 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic long access$700 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic org.tmatesoft.svn.core.internal.util.SVNDate access$600 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic java.lang.String access$500 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic long access$1600 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 static synthetic java.util.Set access$2402 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, java.util.Set) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 java.util.Set x1 synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17, org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17 x0 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1 x1 static synthetic java.lang.String access$1302 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, java.lang.String) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 String x1 static synthetic java.io.File access$002 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, java.io.File) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 java.io.File x1 static synthetic java.io.File access$902 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, java.io.File) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 java.io.File x1 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo access$2202 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo x1 static synthetic boolean access$2302 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x0 boolean x1 }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$WritableBaseInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WritableBaseInfo extends java.lang.Object { public java.io.OutputStream stream public java.io.File tempBaseAbspath public org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumOutputStream md5ChecksumStream public org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumOutputStream sha1ChecksumStream public void <init> () public org.tmatesoft.svn.core.wc2.SvnChecksum getMD5Checksum () public org.tmatesoft.svn.core.wc2.SvnChecksum getSHA1Checksum () }
org/tmatesoft/svn/core/internal/wc17/SVNWCConflictDescription17$1.class
SVNWCConflictDescription17.java package org.tmatesoft.svn.core.internal.wc17 synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17$1 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$SVNWCConflictDescription17$ConflictKind static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc17/SVNReporter17.class
SVNReporter17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNReporter17 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { private final java.io.File path private org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext private org.tmatesoft.svn.core.SVNDepth depth private final boolean isRestoreFiles private final boolean isUseDepthCompatibilityTrick private final boolean isHonorDepthExclude private boolean isUseCommitTimes private int reportedFilesCount private int totalFilesCount static final synthetic boolean $assertionsDisabled public void <init> (java.io.File, org.tmatesoft.svn.core.internal.wc17.SVNWCContext, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean, org.tmatesoft.svn.util.ISVNDebugLog) java.io.File path org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext boolean restoreFiles boolean useDepthCompatibilityTrick org.tmatesoft.svn.core.SVNDepth depth boolean lockOnDemand boolean isStatus boolean isHonorDepthExclude boolean isUseCommitTimes org.tmatesoft.svn.util.ISVNDebugLog log public int getReportedFilesCount () public int getTotalFilesCount () public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo rInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind wrkKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus wrkStatus org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.Structure additionInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo wInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind wrkKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus wrkStatus org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo rootInfo org.tmatesoft.svn.core.SVNURL url String base java.io.File parentPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo parentInfo org.tmatesoft.svn.core.SVNDepth reportDepth org.tmatesoft.svn.core.SVNException inner org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.io.ISVNReporter reporter org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind target_kind long target_rev java.io.File repos_relpath org.tmatesoft.svn.core.SVNURL repos_root org.tmatesoft.svn.core.SVNDepth target_depth org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock target_lock boolean start_empty org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNFileType diskType public static boolean restoreNode (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File local_abspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind long target_rev boolean useCommitTimes boolean restored private void reportRevisionsAndDepths (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, java.io.File, java.io.File, long, java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNReporter, boolean, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file java.io.File[] arr$ int len$ int i$ java.io.File[] list org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind wrkKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus wrkStatus org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.Structure additionInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo wInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind wrkKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus wrkStatus String childName org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL url java.io.File reposRelPath boolean isIncomplete boolean startEmpty org.tmatesoft.svn.core.SVNDepth reportDepth boolean thisSwitched String thisReportRelpath java.io.File thisAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo ths String child java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File dirPath java.io.File dirLocalRelPath java.io.File reportRelPath long dirRev java.io.File dirReposRelPath org.tmatesoft.svn.core.SVNURL dirReposRoot org.tmatesoft.svn.core.SVNDepth dirDepth org.tmatesoft.svn.core.io.ISVNReporter reporter boolean restoreFiles org.tmatesoft.svn.core.SVNDepth depth boolean reportEverything java.util.Map baseChildren java.util.Set dirEntries private static void restoreFile (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath boolean useCommitTimes boolean removeTextConflicts org.tmatesoft.svn.core.internal.util.SVNSkel workItem private static void resolveTextConflict (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNUpdateEditor17$FileBaton.class
SVNUpdateEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton extends java.lang.Object { private String name private java.io.File localAbsolutePath private java.io.File newRelativePath private java.io.File oldRelativePath private long oldRevision private org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton directoryBaton private boolean skipThis private boolean alreadyNotified private boolean addingFile private boolean obstructionFound private boolean addExisted private boolean shadowed private long changedRevison private org.tmatesoft.svn.core.internal.util.SVNDate changedDate private String changedAuthor private org.tmatesoft.svn.core.wc2.SvnChecksum originalChecksum private org.tmatesoft.svn.core.SVNProperties entryPropChanges private org.tmatesoft.svn.core.SVNProperties regularPropChanges private org.tmatesoft.svn.core.SVNProperties davPropChanges private org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo bumpInfo private boolean edited private org.tmatesoft.svn.core.wc.SVNTreeConflictDescription editConflict java.io.File newTextBaseTmpAbsPath org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream sourceChecksumStream org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumOutputStream newTextBaseSHA1ChecksumStream org.tmatesoft.svn.core.wc2.SvnChecksum expectedSourceChecksum String newTextBaseMD5Digest public org.tmatesoft.svn.core.wc2.SvnChecksum newTextBaseSHA1Checksum final synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17 this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17) public void markEdited () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.SVNURL getURL () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.SVNURL getPreviousURL () throws org.tmatesoft.svn.core.SVNException static synthetic boolean access$2500 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic java.lang.String access$2600 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic java.io.File access$2700 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic java.io.File access$2802 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, java.io.File) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 java.io.File x1 static synthetic boolean access$2502 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 boolean x1 static synthetic boolean access$2902 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 boolean x1 static synthetic boolean access$3002 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 boolean x1 static synthetic boolean access$3000 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic java.io.File access$3100 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic boolean access$3202 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 boolean x1 static synthetic boolean access$3302 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 boolean x1 static synthetic java.lang.String access$3402 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, java.lang.String) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 String x1 static synthetic org.tmatesoft.svn.core.internal.util.SVNDate access$3502 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, org.tmatesoft.svn.core.internal.util.SVNDate) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 org.tmatesoft.svn.core.internal.util.SVNDate x1 static synthetic long access$3602 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, long) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 long x1 static synthetic long access$3702 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, long) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 long x1 static synthetic org.tmatesoft.svn.core.wc2.SvnChecksum access$3802 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, org.tmatesoft.svn.core.wc2.SvnChecksum) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 org.tmatesoft.svn.core.wc2.SvnChecksum x1 static synthetic org.tmatesoft.svn.core.wc.SVNTreeConflictDescription access$3902 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 org.tmatesoft.svn.core.wc.SVNTreeConflictDescription x1 static synthetic org.tmatesoft.svn.core.SVNProperties access$4000 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$4002 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic org.tmatesoft.svn.core.SVNProperties access$4100 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$4102 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic org.tmatesoft.svn.core.SVNProperties access$4200 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$4202 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic boolean access$4300 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo access$4400 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic boolean access$4500 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic boolean access$3200 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic boolean access$3300 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic org.tmatesoft.svn.core.internal.util.SVNDate access$3500 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic org.tmatesoft.svn.core.wc2.SvnChecksum access$3800 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic long access$3600 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic java.lang.String access$3400 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton access$4600 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic boolean access$2900 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 static synthetic long access$3700 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17, org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17 x0 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1 x1 static synthetic java.lang.String access$2602 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, java.lang.String) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 String x1 static synthetic java.io.File access$2702 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, java.io.File) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 java.io.File x1 static synthetic java.io.File access$3102 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, java.io.File) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 java.io.File x1 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo access$4402 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo x1 static synthetic boolean access$4502 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, boolean) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 boolean x1 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton access$4602 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton x0 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton x1 }
org/tmatesoft/svn/core/internal/wc17/SVNAmbientDepthFilterEditor17$FileBaton.class
SVNAmbientDepthFilterEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$FileBaton extends java.lang.Object { boolean myIsAmbientlyExcluded final synthetic org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17 this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17) synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17, org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$1) org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17 x0 org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$1 x1 }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunPostUpgrade.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunPostUpgrade extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation { public void <init> () public void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException ex org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File adminPath java.io.File entriesPath java.io.File formatPath java.io.File tempFile }
org/tmatesoft/svn/core/internal/wc17/SVNStatusReporter17.class
SVNStatusReporter17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNStatusReporter17 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton org.tmatesoft.svn.core.io.ISVNReporter { private org.tmatesoft.svn.core.io.SVNRepository repository private org.tmatesoft.svn.core.internal.wc17.SVNReporter17 reportBaton private org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17 editor private org.tmatesoft.svn.core.SVNURL repositoryLocation private java.util.HashMap locks private org.tmatesoft.svn.core.io.ISVNReporter reporter private org.tmatesoft.svn.core.SVNURL repositoryRoot public void <init> (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.internal.wc17.SVNReporter17, org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17) org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.internal.wc17.SVNReporter17 reportBaton org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17 editor public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNReporter reporter public void setPath (java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException String path String lockToken long revision boolean startEmpty public void setPath (java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException String path String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty public void deletePath (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String path String lockToken long revision boolean startEmpty public void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String path String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty org.tmatesoft.svn.core.SVNURL ancestor public void finishReport () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNLock lock int i org.tmatesoft.svn.core.SVNLock[] locks org.tmatesoft.svn.core.SVNURL oldLocation public void abortReport () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$SVNWCNodeReposInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo extends java.lang.Object { public org.tmatesoft.svn.core.SVNURL reposRootUrl public String reposUuid final synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext this$0 public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$ScheduleInternalInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCSchedule schedule public boolean copied final synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext this$0 public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) }
org/tmatesoft/svn/core/internal/wc17/SVNAmbientDepthFilterEditor17$AmbientReadInfo.class
SVNAmbientDepthFilterEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$AmbientReadInfo extends java.lang.Object { public boolean hidden public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind public org.tmatesoft.svn.core.SVNDepth depth final synthetic org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17 this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17) synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17, org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$1) org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17 x0 org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$1 x1 }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$ConflictInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictInfo extends java.lang.Object { public boolean textConflicted public boolean propConflicted public boolean treeConflicted public java.io.File baseFile public java.io.File repositoryFile public java.io.File localFile public java.io.File propRejectFile public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict public void <init> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$UniqueFileInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$UniqueFileInfo extends java.lang.Object { public java.io.File path public java.io.OutputStream stream public void <init> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunFileRemove.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunFileRemove extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation { public void <init> () public void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File localAbspath }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$ISVNWCNodeHandler.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public abstract org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ISVNWCNodeHandler extends java.lang.Object { public abstract void nodeFound (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/SVNEntry17.class
SVNEntry17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNEntry17 extends org.tmatesoft.svn.core.internal.wc.admin.SVNEntry { private java.io.File path public void <init> (java.io.File) java.io.File path public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getAdminArea () public java.io.File getPath () public void setPath (java.io.File) java.io.File path public java.util.Map getTreeConflicts () throws org.tmatesoft.svn.core.SVNException public boolean isThisDir () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunWorkQueueOperation.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public abstract org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation extends java.lang.Object { public abstract void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$MergePropertiesInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.util.SVNSkel workItems public org.tmatesoft.svn.core.wc.SVNStatusType mergeOutcome public org.tmatesoft.svn.core.SVNProperties newBaseProperties public org.tmatesoft.svn.core.SVNProperties newActualProperties public boolean treeConflicted public void <init> () }
org/tmatesoft/svn/core/internal/wc17/SVNDiffEditor17$SVNDirectoryInfo.class
SVNDiffEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo extends java.lang.Object { private boolean isAdded private String path private org.tmatesoft.svn.core.SVNProperties propertyDiff private org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo parent private java.util.Set comparedEntries private org.tmatesoft.svn.core.SVNDepth depth private void <init> () static synthetic java.util.Set access$000 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo x0 static synthetic java.lang.String access$100 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo x0 static synthetic org.tmatesoft.svn.core.SVNDepth access$200 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$300 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$302 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic boolean access$400 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo x0 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo access$500 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo x0 synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$1) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$1 x0 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo access$502 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo, org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo x0 org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo x1 static synthetic java.lang.String access$102 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo, java.lang.String) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo x0 String x1 static synthetic boolean access$402 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo, boolean) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo x0 boolean x1 static synthetic org.tmatesoft.svn.core.SVNDepth access$202 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo, org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNDirectoryInfo x0 org.tmatesoft.svn.core.SVNDepth x1 }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunFileTranslate.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunFileTranslate extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation { public void <init> () public void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File localAbspath java.io.File srcAbspath java.io.File dstAbspath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo tinf }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$MergePropStatusInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropStatusInfo extends java.lang.Object { public org.tmatesoft.svn.core.wc.SVNStatusType state public boolean conflictRemains public void <init> (org.tmatesoft.svn.core.wc.SVNStatusType, boolean) org.tmatesoft.svn.core.wc.SVNStatusType state boolean conflictRemains }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunBaseRemove.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunBaseRemove extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation { public void <init> () public void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe java.io.File dirAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo info boolean keepNotPresent org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File localAbspath long value java.io.File reposRelPath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind long revision }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$1.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext$1 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbStatus static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$TranslateInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyleInfo eolStyleInfo public java.util.Map keywords public boolean special public void <init> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$PristineContentsInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PristineContentsInfo extends java.lang.Object { public java.io.InputStream stream public java.io.File path public void <init> () }
org/tmatesoft/svn/core/internal/wc17/SVNRemoteStatusEditor17$DirectoryInfo.class
SVNRemoteStatusEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { private java.io.File localAbsPath private String name private org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo parent private java.util.TreeMap statii private long ood_changed_rev private org.tmatesoft.svn.core.internal.util.SVNDate ood_changed_date private org.tmatesoft.svn.core.SVNNodeKind ood_kind private String ood_changed_author private boolean excluded private org.tmatesoft.svn.core.SVNDepth depth private boolean added private boolean prop_changed private boolean text_changed private String repositoryRelativePath static final synthetic boolean $assertionsDisabled final synthetic org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17 this$0 public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17, java.lang.String, org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) throws org.tmatesoft.svn.core.SVNException java.io.File local_abspath org.tmatesoft.svn.core.wc2.SvnStatus status_in_parent org.tmatesoft.svn.core.wc2.SvnStatus this_dir_status java.util.Collection ignores org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo parentReposInfo String path org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo parent java.io.File local_abspath org.tmatesoft.svn.core.wc2.SvnStatus status_in_parent public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnStatus status private java.lang.String computeRepositoryRelativePath () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnStatus status String url public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo access$000 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic java.io.File access$100 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic java.util.TreeMap access$200 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic java.lang.String access$300 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic long access$400 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic org.tmatesoft.svn.core.SVNNodeKind access$500 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic org.tmatesoft.svn.core.internal.util.SVNDate access$600 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic java.lang.String access$700 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic boolean access$802 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo, boolean) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 boolean x1 static synthetic boolean access$902 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo, boolean) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 boolean x1 static synthetic boolean access$1002 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo, boolean) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 boolean x1 static synthetic long access$402 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo, long) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 long x1 static synthetic java.lang.String access$702 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo, java.lang.String) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 String x1 static synthetic org.tmatesoft.svn.core.internal.util.SVNDate access$602 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo, org.tmatesoft.svn.core.internal.util.SVNDate) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 org.tmatesoft.svn.core.internal.util.SVNDate x1 static synthetic boolean access$800 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic boolean access$1000 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic boolean access$900 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic boolean access$1100 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic org.tmatesoft.svn.core.SVNDepth access$1200 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static synthetic java.lang.String access$2400 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo x0 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNDiffEditor17$SVNFileInfo.class
SVNDiffEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo extends java.lang.Object { private boolean isAdded private String path private java.io.File file private java.io.File pristineFile private org.tmatesoft.svn.core.SVNProperties propertyDiff private void <init> () static synthetic org.tmatesoft.svn.core.SVNProperties access$600 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$602 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic boolean access$702 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo, boolean) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo x0 boolean x1 static synthetic boolean access$700 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo x0 static synthetic java.io.File access$802 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo, java.io.File) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo x0 java.io.File x1 static synthetic java.io.File access$902 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo, java.io.File) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo x0 java.io.File x1 static synthetic java.io.File access$800 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo x0 static synthetic java.io.File access$900 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo x0 synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$1) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$1 x0 static synthetic java.lang.String access$1202 (org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo, java.lang.String) org.tmatesoft.svn.core.internal.wc17.SVNDiffEditor17$SVNFileInfo x0 String x1 }
org/tmatesoft/svn/core/internal/wc17/SVNStatusEditor17$DefaultSvnFileListHook.class
SVNStatusEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17$DefaultSvnFileListHook extends java.lang.Object implements org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook { private void <init> () public java.util.Map listFiles (java.io.File) int i java.util.Map map java.io.File parent java.io.File[] children synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17$1) org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17$1 x0 }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$ConflictMarkersInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictMarkersInfo extends java.lang.Object { public String rightMarker public String leftMarker public String targetMarker public void <init> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunFileCommit.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunFileCommit extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation { public void <init> () public void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File localAbspath java.io.File tmpFile org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo info boolean sameContents boolean overwroteWorkFile }
org/tmatesoft/svn/core/internal/wc17/SVNUpdateEditor17.class
SVNUpdateEditor17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor { private org.tmatesoft.svn.core.internal.wc17.SVNWCContext myWCContext private String myTargetBasename private java.io.File myAnchorAbspath private java.io.File myTargetAbspath private String[] myExtensionPatterns private long myTargetRevision private org.tmatesoft.svn.core.SVNDepth myRequestedDepth private boolean myIsDepthSticky private boolean myIsUseCommitTimes private boolean rootOpened private boolean myIsTargetDeleted private boolean myIsUnversionedObstructionsAllowed private java.io.File mySwitchRelpath private org.tmatesoft.svn.core.SVNURL myReposRootURL private String myReposUuid private java.util.Set mySkippedTrees private org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor myDeltaProcessor private org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore myExternalsStore private org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton myCurrentDirectory private org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton myCurrentFile private boolean myAddsAsModification private java.util.Map myDirEntries private boolean myIsCleanCheckout private java.io.File myWCRootAbsPath static final synthetic boolean $assertionsDisabled public static org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor createUpdateEditor (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, long, java.io.File, java.lang.String, boolean, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean, boolean, org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher, org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext context long targetRevision java.io.File anchorAbspath String targetName boolean useCommitTimes org.tmatesoft.svn.core.SVNURL switchURL org.tmatesoft.svn.core.SVNDepth depth boolean depthIsSticky boolean allowUnversionedObstructions boolean addsAsModifications boolean serverPerformsFiltering boolean cleanCheckout org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher dirFetcher org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore externalsStore String[] preservedExtensions org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo repositoryInfo org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17 editor org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor result public static org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor createUpdateEditor (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, java.lang.String[], org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo addition org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File anchorAbspath String target org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.SVNURL switchURL org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore externalsStore boolean allowUnversionedObstructions boolean depthIsSticky org.tmatesoft.svn.core.SVNDepth depth String[] preservedExts org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher dirFetcher org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info private void <init> () public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, java.lang.String[], org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File anchorAbspath String targetBasename org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid org.tmatesoft.svn.core.SVNURL switchURL org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore externalsStore boolean allowUnversionedObstructions boolean depthIsSticky org.tmatesoft.svn.core.SVNDepth depth String[] preservedExts org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher dirFetcher private void initExcludedDirectoryEntries (org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File dirReposRelPath java.util.Map dirEntries java.io.File dirReposRelPath java.util.Map dirEntries java.io.File childAbsPath String child java.util.Iterator i$ java.util.Set children org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo info org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher dirFetcher public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public long getTargetRevision () private void rememberSkippedTree (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath java.io.File relativePath private java.io.File getWCRootAbsPath () throws org.tmatesoft.svn.core.SVNException public void openRoot (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo long revision boolean alreadyConflicted private void doNotification (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event java.io.File localAbspath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL previousURL private boolean alreadyInATreeConflict (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNConflictDescription conflict org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo java.io.File localAbspath java.io.File ancestorAbspath boolean conflicted public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus baseStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind baseKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.wc.SVNEventAction action String path long revision String base java.io.File localAbsPath boolean isRoot boolean deletingTarget org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus baseStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind baseKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info org.tmatesoft.svn.core.SVNURL previousURL org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.internal.util.SVNSkel workItem private boolean isNodeAlreadyConflicted (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictInfo info org.tmatesoft.svn.core.wc.SVNConflictDescription cd java.util.Iterator i$ java.io.File localAbspath java.util.List conflicts private org.tmatesoft.svn.core.wc.SVNTreeConflictDescription checkTreeConflict (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind, boolean, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.SVNNodeKind, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus base_status org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$TreeLocalModsInfo info java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus workingStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind workingKind boolean existsInRepos org.tmatesoft.svn.core.wc.SVNConflictAction action org.tmatesoft.svn.core.SVNNodeKind theirNodeKind java.io.File theirRelpath org.tmatesoft.svn.core.wc.SVNConflictReason reason boolean locally_replaced private org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$TreeLocalModsInfo hasLocalMods (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNCancelException cancel java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$TreeLocalModsInfo modsInfo org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17 statusEditor public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path private void absentEntry (java.lang.String, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.SVNNodeKind nodeKind String name org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind absentKind java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind java.io.File reposRelPath public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus addStatus boolean localIsNonDir org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction action String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton pb org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton db org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind wc_kind boolean conflicted boolean versionedLocallyAndPresent boolean error org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus baseStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo String path long revision org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton pb org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton db boolean isWCRoot org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind wcKind boolean have_work boolean conflicted org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus baseStatus public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException String name java.util.Iterator names String name java.util.Iterator names org.tmatesoft.svn.core.SVNProperties propertiesToDelete String newValue String oldValue org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo mergeProperiesInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNDirEntry childEntry java.io.File childAbsPath java.io.File childRelPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind childKind String childName java.util.Iterator i$ java.io.File childAbsPath java.io.File childRelPath String fileName java.util.Iterator i$ org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton db org.tmatesoft.svn.core.internal.util.SVNSkel allWorkItems org.tmatesoft.svn.core.SVNProperties entryProps org.tmatesoft.svn.core.SVNProperties davProps org.tmatesoft.svn.core.SVNPropertyValue newWCDavURL org.tmatesoft.svn.core.SVNProperties regularProps org.tmatesoft.svn.core.SVNProperties actualProps org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.wc.SVNStatusType[] propStatus org.tmatesoft.svn.core.SVNProperties newBaseProps org.tmatesoft.svn.core.SVNProperties newActualProps long newChangedRev org.tmatesoft.svn.core.internal.util.SVNDate newChangedDate String newChangedAuthor org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$AccumulatedChangeInfo change java.util.Map newChildren public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.SVNException e boolean localIsFile String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton pb org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton fb org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind wcKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status boolean conflicted boolean versionedLocallyAndPresent boolean error org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo String path long revision org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton pb org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton fb boolean isRoot boolean conflicted org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton fb public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String name java.util.Iterator i String name java.util.Iterator names org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict boolean localIsLink boolean incomingIsLink org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$MergeFileInfo fileInfo boolean recordFileInfo org.tmatesoft.svn.core.internal.util.SVNSkel wi org.tmatesoft.svn.core.internal.util.SVNSkel wi org.tmatesoft.svn.core.internal.util.SVNSkel wi boolean installPristine org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo info java.io.File installFrom org.tmatesoft.svn.core.SVNProperties fakeActualProperties org.tmatesoft.svn.core.SVNProperties fakeActualProperties org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo info org.tmatesoft.svn.core.wc.SVNEventAction action String mimeType org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNURL url String path String expectedMd5Digest org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton fb org.tmatesoft.svn.core.wc2.SvnChecksum expectedMd5Checksum org.tmatesoft.svn.core.SVNProperties entryProps org.tmatesoft.svn.core.SVNProperties davProps org.tmatesoft.svn.core.SVNPropertyValue newWCDavURL org.tmatesoft.svn.core.SVNProperties regularProps org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$AccumulatedChangeInfo lastChange long newChangedRev org.tmatesoft.svn.core.internal.util.SVNDate newChangedDate String newChangedAuthor org.tmatesoft.svn.core.wc.SVNStatusType lockState org.tmatesoft.svn.core.SVNProperties localActualProps org.tmatesoft.svn.core.SVNProperties currentBaseProps org.tmatesoft.svn.core.SVNProperties currentActualProps org.tmatesoft.svn.core.wc.SVNStatusType[] propState org.tmatesoft.svn.core.wc.SVNStatusType contentState org.tmatesoft.svn.core.SVNProperties newBaseProps org.tmatesoft.svn.core.SVNProperties newActualProps org.tmatesoft.svn.core.internal.util.SVNSkel allWorkItems boolean keepRecordedInfo org.tmatesoft.svn.core.wc2.SvnChecksum newChecksum public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status boolean error public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.InputStream source String path String expectedChecksum org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton fb org.tmatesoft.svn.core.wc2.SvnChecksum expectedBaseChecksum org.tmatesoft.svn.core.wc2.SvnChecksum recordedBaseChecksum java.io.InputStream source org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WritableBaseInfo openWritableBase java.io.OutputStream target public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String actualSourceChecksum String path private org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton makeDirectoryBaton (java.lang.String, org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, boolean) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton parent boolean adding org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton d org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo bdi private org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton makeFileBaton (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton parent String path boolean adding org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton f private static boolean isNodePresent (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus) org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status private org.tmatesoft.svn.core.wc.SVNTreeConflictDescription createTreeConflict (java.io.File, org.tmatesoft.svn.core.wc.SVNConflictReason, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.SVNNodeKind, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo scanAddition org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus addedStatus java.io.File leftReposRelpath long leftRevision org.tmatesoft.svn.core.SVNURL reposRootUrl java.io.File leftReposRelpath long leftRevision org.tmatesoft.svn.core.SVNURL reposRootUrl org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind baseKind java.io.File rightReposRelpath java.io.File rightReposRelpath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcLeftVersion java.io.File localAbspath org.tmatesoft.svn.core.wc.SVNConflictReason reason org.tmatesoft.svn.core.wc.SVNConflictAction action org.tmatesoft.svn.core.SVNNodeKind theirNodeKind java.io.File theirRelpath java.io.File leftReposRelpath long leftRevision org.tmatesoft.svn.core.SVNNodeKind leftKind java.io.File addedReposRelpath org.tmatesoft.svn.core.SVNURL reposRootUrl java.io.File rightReposRelpath org.tmatesoft.svn.core.SVNNodeKind conflictNodeKind org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcLeftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcRightVersion private void maybeBumpDirInfo (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo bdi private org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$AccumulatedChangeInfo accumulateLastChange (java.io.File, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String propertyName String propertyValue java.util.Iterator i java.io.File localAbspath org.tmatesoft.svn.core.SVNProperties entryProps org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$AccumulatedChangeInfo info public static org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo performFileMerge (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum, org.tmatesoft.svn.core.wc2.SvnChecksum, org.tmatesoft.svn.core.SVNProperties, java.lang.String[], long, long, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException java.io.File tmpDir org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath java.io.File wriAbsPath org.tmatesoft.svn.core.wc2.SvnChecksum newChecksum org.tmatesoft.svn.core.wc2.SvnChecksum originalChecksum org.tmatesoft.svn.core.SVNProperties actualProperties String[] extPatterns long oldRevision long targetRevision org.tmatesoft.svn.core.SVNProperties propChanges java.io.File mergeLeft boolean deleteLeft java.io.File newTextBaseTmpAbsPath String oldRevStr String newRevStr String mineStr org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo mergeInfo private org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$MergeFileInfo mergeFile (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNDate) throws org.tmatesoft.svn.core.SVNException boolean isLocallyModified org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo mergeInfo java.io.File tmpText org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo translateInfo org.tmatesoft.svn.core.internal.util.SVNDate date org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$FileBaton fb org.tmatesoft.svn.core.SVNProperties actualProps org.tmatesoft.svn.core.internal.util.SVNDate lastChangedDate org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$DirectoryBaton pb boolean isLocallyModified boolean magicPropsChanged org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$MergeFileInfo mergeFileInfo org.tmatesoft.svn.core.SVNProperties propChanges static synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext access$4700 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17 x0 static synthetic void access$4800 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17, java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17 x0 java.io.File x1 org.tmatesoft.svn.core.SVNNodeKind x2 org.tmatesoft.svn.core.wc.SVNEventAction x3 org.tmatesoft.svn.core.SVNURL x4 org.tmatesoft.svn.core.SVNURL x5 static synthetic org.tmatesoft.svn.core.SVNURL access$4900 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17 x0 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCUtils$UnserializedFileExternalInfo.class
SVNWCUtils.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCUtils$UnserializedFileExternalInfo extends java.lang.Object { public String path public org.tmatesoft.svn.core.wc.SVNRevision pegRevision public org.tmatesoft.svn.core.wc.SVNRevision revision public void <init> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext extends java.lang.Object { public static String CONFLICT_OP_UPDATE public static String CONFLICT_OP_SWITCH public static String CONFLICT_OP_MERGE public static String CONFLICT_OP_PATCH public static String CONFLICT_KIND_TEXT public static String CONFLICT_KIND_PROP public static String CONFLICT_KIND_TREE public static String CONFLICT_KIND_REJECT public static String CONFLICT_KIND_OBSTRUCTED private static java.util.List STATUS_ORDERING public static final long INVALID_REVNUM public static final int STREAM_CHUNK_SIZE public static final String THIS_DIR_PREJ public static final String PROP_REJ_EXT public static final String CONFLICT_LOCAL_LABEL public static final String CONFLICT_LATEST_LABEL public static final byte[] CONFLICT_START public static final byte[] CONFLICT_END public static final byte[] CONFLICT_SEPARATOR public static final int WC_NG_VERSION public static final int WC_WCPROPS_MANY_FILES_VERSION public static final int WC_WCPROPS_LOST public static final String WC_ADM_FORMAT public static final String WC_ADM_ENTRIES public static final String WC_ADM_TMP public static final String WC_ADM_PRISTINE public static final String WC_ADM_NONEXISTENT_PATH public static final String WC_NON_ENTRIES_STRING private org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb db private boolean closeDb private java.util.Stack eventHandler private java.util.List cleanupHandlers static final synthetic boolean $assertionsDisabled public static boolean isAdminDirectory (java.lang.String) String name public void <init> (org.tmatesoft.svn.core.wc.ISVNOptions, org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNOptions config org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler public void <init> (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode, org.tmatesoft.svn.core.wc.ISVNOptions, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode mode org.tmatesoft.svn.core.wc.ISVNOptions config boolean autoUpgrade boolean enforceEmptyWQ org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler public void <init> (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb, org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb db org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler public org.tmatesoft.svn.core.wc.ISVNEventHandler getEventHandler () public void pushEventHandler (org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNEventHandler handler public void popEventHandler () public void setEventHandler (org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNEventHandler handler public void close () public void registerCleanupHandler (org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CleanupHandler) org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CleanupHandler ch public void cleanup () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CleanupHandler ch java.util.Iterator i$ public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb getDb () public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException public org.tmatesoft.svn.core.wc.ISVNOptions getOptions () public org.tmatesoft.svn.core.SVNNodeKind readKind (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info org.tmatesoft.svn.core.SVNException e java.io.File localAbsPath boolean showHidden public boolean isNodeAdded (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status public boolean isNodeReplaced (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo java.io.File path org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status boolean haveBase org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus baseStatus public long getRevisionNumber (org.tmatesoft.svn.core.wc.SVNRevision, long[], org.tmatesoft.svn.core.io.SVNRepository, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long latestRevision org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err long revnum org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNRevision revision long[] latestRevisionNumber org.tmatesoft.svn.core.io.SVNRepository repository java.io.File path public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo getNodeChangedInfo (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path public long getNodeCommitBaseRev (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo addInfo java.io.File parentAbspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo parentInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus parentStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo parentAddInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo delInfo java.io.File workDelAbspath java.io.File local_abspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info long commitBaseRevision org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status boolean haveBase public long getNodeBaseRev (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo java.io.File local_abspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info long baseRevision boolean haveBase public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo getNodeScheduleInternal (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File work_del_abspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo workingInfo java.io.File localAbsPath boolean schedule boolean copied org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status java.io.File copyFromRelpath public boolean isTextModified (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException boolean compare long recordedSize java.io.File localAbsPath boolean exactComparison org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.wc.SVNFileType fileType java.io.File pristineFile boolean modified private boolean compareAndVerify (java.io.File, java.io.File, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException byte[] eolStr java.io.InputStream versionedStream java.io.InputStream pristineStream java.io.File tmpFile java.io.File localAbsPath java.io.File pristineFile boolean hasProps boolean propMods boolean exactComparison boolean translationRequired org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo translateInfo public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PristineContentsInfo getPristineContents (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo scanAddition org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File localAbspath boolean openStream boolean getPath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PristineContentsInfo info org.tmatesoft.svn.core.internal.wc17.db.Structure readInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.wc2.SvnChecksum checksum org.tmatesoft.svn.core.wc2.SvnChecksum oldchecksum private boolean isSameContents (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File file1 java.io.File file2 java.io.InputStream stream1 java.io.InputStream stream2 private boolean isSameContents (java.io.InputStream, java.io.InputStream) throws org.tmatesoft.svn.core.SVNException byte[] buf1 byte[] buf2 long bytes_read1 long bytes_read2 boolean same org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.InputStream stream1 java.io.InputStream stream2 public static java.io.InputStream readSpecialFile (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String linkPath String symlinkContents java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc.SVNFileType filetype private boolean isTranslationRequired (org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle, byte[], java.util.Map, boolean, boolean) org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle style byte[] eol java.util.Map keywords boolean special boolean force_eol_check public java.lang.String getCharset (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNProperties properties String mimeType public boolean isSpecial (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path String property public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyleInfo getEolStyle (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath String propVal public java.util.Map getKeyWords (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException String list java.io.File localAbsPath String forceList String list org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo getTranslateInfo (java.io.File, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath boolean fetchEolStyle boolean fetchKeywords boolean fetchSpecial public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo getTranslateInfo (java.io.File, org.tmatesoft.svn.core.SVNProperties, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException String keywordsProp java.io.File localAbspath org.tmatesoft.svn.core.SVNProperties props boolean forNormalization boolean fetchEolStyle boolean fetchKeywords boolean fetchSpecial org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo info private java.util.Map expandKeywords (java.io.File, java.io.File, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL svnUrl org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info long changedRev java.io.File localAbsPath java.io.File wriAbspath String keywordsList boolean forNormalization String url org.tmatesoft.svn.core.internal.util.SVNDate changedDate long changedRev String changedAuthor public boolean isFileExternal (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path String serialized public org.tmatesoft.svn.core.SVNURL getNodeUrl (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure additionInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirParsedInfo org.tmatesoft.svn.core.internal.wc17.db.Structure baseInfo java.io.File workRelpath org.tmatesoft.svn.core.internal.wc17.db.Structure additionInfo java.io.File localRelPath org.tmatesoft.svn.core.internal.wc17.db.Structure deletionInfo java.io.File baseDelRelpath java.io.File workDelRelpath java.io.File parentPath org.tmatesoft.svn.core.SVNURL url java.io.File path org.tmatesoft.svn.core.internal.wc17.db.Structure info java.io.File reposRelPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status long reposId org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dpi org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo reposInfo public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictInfo getConflicted (java.io.File, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNNodeKind kind java.io.File path org.tmatesoft.svn.core.SVNNodeKind kind java.io.File path org.tmatesoft.svn.core.SVNNodeKind kind java.io.File path org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNMergeFileSet cdf org.tmatesoft.svn.core.wc.SVNConflictDescription cd java.util.Iterator i$ java.io.File localAbsPath boolean isTextNeed boolean isPropNeed boolean isTreeNeed org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictInfo info java.io.File dir_path java.util.List conflicts public java.lang.String getProperty (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath String name org.tmatesoft.svn.core.SVNProperties properties public org.tmatesoft.svn.core.SVNPropertyValue getPropertyValue (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath String name org.tmatesoft.svn.core.SVNProperties properties private org.tmatesoft.svn.core.SVNProperties getProperties (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File localAbsPath String name org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind wcKind boolean hidden private org.tmatesoft.svn.core.SVNProperties getActualProperties (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath public org.tmatesoft.svn.core.SVNURL getUrlFromPath (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$EntryLocationInfo getEntryLocation (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL node_url java.io.File localAbsPath org.tmatesoft.svn.core.wc.SVNRevision pegRevisionKind boolean fetchRevnum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromInfo copyFrom org.tmatesoft.svn.core.internal.wc17.SVNWCContext$EntryLocationInfo result public transient org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromInfo getNodeCopyFromInfo (java.io.File, org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromField[]) throws org.tmatesoft.svn.core.SVNException java.io.File parent_abspath String base_name org.tmatesoft.svn.core.SVNURL parent_copyfrom_url org.tmatesoft.svn.core.SVNURL my_copyfrom_url org.tmatesoft.svn.core.SVNURL src_parent_url String src_relpath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo scanAddition java.io.File op_root_abspath java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromField[] fields java.util.EnumSet f org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.SVNURL original_root_url java.io.File original_repos_relpath long original_revision org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromInfo copyFrom public transient org.tmatesoft.svn.core.internal.wc17.db.Structure getNodeOrigin (java.io.File, boolean, org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeOriginInfo[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo belowInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo addInfo java.io.File relPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo java.io.File localAbsPath boolean scanDeleted org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeOriginInfo[] fields org.tmatesoft.svn.core.internal.wc17.db.Structure readInfo org.tmatesoft.svn.core.internal.wc17.db.Structure result org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status boolean scanWorking public static boolean isErrorAccess (org.tmatesoft.svn.core.SVNException) org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorCode errorCode public boolean isPropsModified (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath public void nodeWalkChildren (java.io.File, org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ISVNWCNodeHandler, boolean, org.tmatesoft.svn.core.SVNDepth, java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ISVNWCNodeHandler nodeHandler boolean showHidden org.tmatesoft.svn.core.SVNDepth walkDepth java.util.Collection changelists org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.SVNErrorMessage err public boolean matchesChangelist (java.io.File, java.util.Collection) org.tmatesoft.svn.core.SVNException e java.io.File localAbspath java.util.Collection changelists org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo private void walkerHelper (java.io.File, org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ISVNWCNodeHandler, boolean, org.tmatesoft.svn.core.SVNDepth, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDepth depth_below_here org.tmatesoft.svn.core.internal.wc17.db.Structure childInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus childStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind childKind java.io.File childAbspath String child java.util.Iterator i$ java.io.File dirAbspath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ISVNWCNodeHandler nodeHandler boolean showHidden org.tmatesoft.svn.core.SVNDepth depth java.util.Collection changelists java.util.Map relChildren public java.io.File acquireWriteLock (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath boolean lockAnchor boolean returnLockRoot public java.io.File obtainAnchorPath (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e boolean disjoint org.tmatesoft.svn.core.SVNErrorMessage err java.io.File parentAbspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind parentKind org.tmatesoft.svn.core.SVNErrorMessage err java.io.File localAbspath boolean lockAnchor boolean returnLockRoot org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind private boolean isChildDisjoint (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo scanAddition org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo scanBaseRepository java.io.File localAbspath boolean disjoint java.io.File parentAbspath String base org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.SVNURL nodeReposRoot java.io.File nodeReposRelpath String nodeReposUuid org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus parentStatus org.tmatesoft.svn.core.SVNURL parentReposRoot java.io.File parentReposRelpath String parentReposUuid public void releaseWriteLock (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbWorkQueueInfo wqInfo public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CheckWCRootInfo checkWCRoot (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err boolean isRoot java.io.File expectedRelpath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo parent java.io.File localAbspath boolean fetchSwitched java.io.File parentAbspath String name java.io.File reposRelpath org.tmatesoft.svn.core.SVNURL reposRoot String reposUuid org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CheckWCRootInfo info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo public void exclude (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.SVNEvent event java.io.File localAbspath boolean isRoot boolean isSwitched org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind long revision java.io.File reposRelpath org.tmatesoft.svn.core.SVNURL reposRoot String reposUuid boolean haveBase org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CheckWCRootInfo checkWCRoot org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo public static org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CheckSpecialInfo checkSpecialPath (java.io.File) java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CheckSpecialInfo info org.tmatesoft.svn.core.internal.wc.SVNFileType fileType public void removeFromRevisionControl (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err boolean textModified org.tmatesoft.svn.core.wc2.SvnChecksum baseSha1Checksum org.tmatesoft.svn.core.wc2.SvnChecksum workingSha1Checksum boolean wcSpecial org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CheckSpecialInfo checkSpecialPath boolean localSpecial org.tmatesoft.svn.core.SVNException e java.io.File entryAbspath boolean hidden String entryName java.util.Iterator i$ boolean isRoot org.tmatesoft.svn.core.SVNException e java.util.Set children org.tmatesoft.svn.core.SVNErrorMessage err java.io.File localAbspath boolean destroyWf boolean instantError boolean leftSomething org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind private void destroyAdm (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File dirAbspath java.io.File admAbspath public void cropTree (java.io.File, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind java.io.File localAbspath org.tmatesoft.svn.core.SVNDepth depth private void cropChildren (java.io.File, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDepth removeBelow org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNEvent event java.io.File childAbspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus childStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind String childName java.util.Iterator i$ java.io.File localAbspath org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.SVNDepth dirDepth java.util.Set children public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo getNodeReposInfo (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo dinfo java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo addInfo public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription getTreeConflict (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File victimAbspath public void writeCheck (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File localAbspath boolean locked public org.tmatesoft.svn.core.SVNProperties getPristineProps (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status public org.tmatesoft.svn.core.SVNProperties getActualProps (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo mergeProperties (java.io.File, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String propName java.util.Iterator i$ org.tmatesoft.svn.core.SVNProperties actualProps java.io.File dirAbsPath java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion org.tmatesoft.svn.core.SVNProperties baseProperties org.tmatesoft.svn.core.SVNProperties propChanges boolean dryRun org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.SVNProperties pristineProps org.tmatesoft.svn.core.SVNProperties actualProps org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo result java.io.File dirAbsPath org.tmatesoft.svn.core.internal.util.SVNSkel workItems public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo mergeProperties2 (org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnMergeResult result org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo mergeInfo java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion org.tmatesoft.svn.core.SVNProperties serverBaseProperties org.tmatesoft.svn.core.SVNProperties pristineProperties org.tmatesoft.svn.core.SVNProperties actualProperties org.tmatesoft.svn.core.SVNProperties propChanges boolean baseMerge boolean dryRun org.tmatesoft.svn.core.internal.wc17.DefaultSvnMerger defaultMerger org.tmatesoft.svn.core.wc2.ISvnMerger customMerger org.tmatesoft.svn.core.wc2.SvnMergeResult result private org.tmatesoft.svn.core.wc2.ISvnMerger createCustomMerger () org.tmatesoft.svn.core.wc.ISVNMerger merger private org.tmatesoft.svn.core.internal.wc17.DefaultSvnMerger createDefaultMerger () java.io.File getPrejfileAbspath (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNConflictDescription cd java.util.Iterator i$ java.io.File localAbspath java.util.List conflicts void conflictSkelAddPropConflict (org.tmatesoft.svn.core.internal.util.SVNSkel, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.util.SVNSkel skel String propName org.tmatesoft.svn.core.SVNPropertyValue baseVal org.tmatesoft.svn.core.SVNPropertyValue mineVal org.tmatesoft.svn.core.SVNPropertyValue toVal org.tmatesoft.svn.core.SVNPropertyValue fromVal org.tmatesoft.svn.core.internal.util.SVNSkel propSkel private void prependPropValue (org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue fromVal org.tmatesoft.svn.core.internal.util.SVNSkel skel org.tmatesoft.svn.core.internal.util.SVNSkel valueSkel org.tmatesoft.svn.core.wc.SVNStatusType setPropMergeState (org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType state org.tmatesoft.svn.core.wc.SVNStatusType newValue int statusInd int newStatusInd org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropStatusInfo applySinglePropAdd (org.tmatesoft.svn.core.wc.SVNStatusType, java.io.File, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, boolean, org.tmatesoft.svn.core.SVNProperties, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.ISVNConflictHandler, boolean) throws org.tmatesoft.svn.core.SVNException String mergedVal org.tmatesoft.svn.core.wc.SVNStatusType state java.io.File localAbspath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion boolean isDir org.tmatesoft.svn.core.SVNProperties workingProps String propname org.tmatesoft.svn.core.SVNPropertyValue baseVal org.tmatesoft.svn.core.SVNPropertyValue toVal org.tmatesoft.svn.core.wc.ISVNConflictHandler conflictResolver boolean dryRun boolean conflictRemains org.tmatesoft.svn.core.SVNPropertyValue workingVal private boolean maybeGeneratePropConflict (java.io.File, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, boolean, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.ISVNConflictHandler, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue theVal org.tmatesoft.svn.core.SVNPropertyValue theVal org.tmatesoft.svn.core.SVNPropertyValue theVal de.regnis.q.sequence.line.QSequenceLineRAData baseData de.regnis.q.sequence.line.QSequenceLineRAData localData de.regnis.q.sequence.line.QSequenceLineRAData latestData org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.wc.FSMergerBySequence merger java.io.OutputStream result org.tmatesoft.svn.core.SVNPropertyValue theVal org.tmatesoft.svn.core.wc.SVNConflictDescription cd org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String mergedString String mimePropval org.tmatesoft.svn.core.wc.SVNConflictResult result org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice java.io.File localAbspath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion boolean isDir String propname org.tmatesoft.svn.core.SVNProperties workingProps org.tmatesoft.svn.core.SVNPropertyValue oldVal org.tmatesoft.svn.core.SVNPropertyValue newVal org.tmatesoft.svn.core.SVNPropertyValue baseVal org.tmatesoft.svn.core.SVNPropertyValue workingVal org.tmatesoft.svn.core.wc.ISVNConflictHandler conflictResolver boolean dryRun boolean conflictRemains org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17 cdesc private boolean mimeTypeIsBinary (java.lang.String) String mimeType int len private java.io.File writeUnique (java.io.File, byte[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File path byte[] value java.io.File tmpPath java.io.OutputStream os org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropStatusInfo applySinglePropDelete (org.tmatesoft.svn.core.wc.SVNStatusType, java.io.File, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, boolean, org.tmatesoft.svn.core.SVNProperties, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.ISVNConflictHandler, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatusType state java.io.File localAbspath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion boolean isDir org.tmatesoft.svn.core.SVNProperties workingProps String propname org.tmatesoft.svn.core.SVNPropertyValue baseVal org.tmatesoft.svn.core.SVNPropertyValue oldVal org.tmatesoft.svn.core.wc.ISVNConflictHandler conflictResolver boolean dryRun boolean conflictRemains org.tmatesoft.svn.core.SVNPropertyValue workingVal org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropStatusInfo applySinglePropChange (org.tmatesoft.svn.core.wc.SVNStatusType, java.io.File, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, boolean, org.tmatesoft.svn.core.SVNProperties, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.ISVNConflictHandler, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatusType state java.io.File localAbspath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion boolean isDir org.tmatesoft.svn.core.SVNProperties workingProps String propname org.tmatesoft.svn.core.SVNPropertyValue baseVal org.tmatesoft.svn.core.SVNPropertyValue oldVal org.tmatesoft.svn.core.SVNPropertyValue newVal org.tmatesoft.svn.core.wc.ISVNConflictHandler conflictResolver boolean dryRun private org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropStatusInfo applySingleGenericPropChange (org.tmatesoft.svn.core.wc.SVNStatusType, java.io.File, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, boolean, org.tmatesoft.svn.core.SVNProperties, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.ISVNConflictHandler, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatusType state java.io.File localAbspath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion boolean isDir org.tmatesoft.svn.core.SVNProperties workingProps String propname org.tmatesoft.svn.core.SVNPropertyValue baseVal org.tmatesoft.svn.core.SVNPropertyValue oldVal org.tmatesoft.svn.core.SVNPropertyValue newVal org.tmatesoft.svn.core.wc.ISVNConflictHandler conflictResolver boolean dryRun boolean conflictRemains org.tmatesoft.svn.core.SVNPropertyValue workingVal private org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropStatusInfo applySingleMergeinfoPropChange (org.tmatesoft.svn.core.wc.SVNStatusType, java.io.File, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, boolean, org.tmatesoft.svn.core.SVNProperties, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.ISVNConflictHandler, boolean) throws org.tmatesoft.svn.core.SVNException java.util.Map deleted java.util.Map added String mergeinfoString org.tmatesoft.svn.core.wc.SVNStatusType state java.io.File localAbspath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion boolean isDir org.tmatesoft.svn.core.SVNProperties workingProps String propname org.tmatesoft.svn.core.SVNPropertyValue baseVal org.tmatesoft.svn.core.SVNPropertyValue oldVal org.tmatesoft.svn.core.SVNPropertyValue newVal org.tmatesoft.svn.core.wc.ISVNConflictHandler conflictResolver boolean dryRun boolean conflictRemains org.tmatesoft.svn.core.SVNPropertyValue workingVal public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WritableBaseInfo openWritableBase (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath boolean md5Checksum boolean sha1Checksum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WritableBaseInfo info java.io.File tempDirAbspath public boolean hasMagicProperty (org.tmatesoft.svn.core.SVNProperties) String property java.util.Iterator i org.tmatesoft.svn.core.SVNProperties properties public java.io.InputStream getTranslatedStream (java.io.File, java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File localAbspath java.io.File versionedAbspath boolean translateToNormalForm boolean repairEOL org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo translateInfo boolean special org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle eolStyle byte[] eolStr java.util.Map keywords String charset boolean translationRequired public java.io.File getTranslatedFile (java.io.File, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File xlated_path java.io.File tmpDir org.tmatesoft.svn.core.SVNErrorMessage err java.io.File tmpDir java.io.File tmpVFile boolean repairForced boolean expand java.io.File src java.io.File versionedAbspath boolean toNormalFormat boolean forceEOLRepair boolean useGlobalTmp boolean forceCopy org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo translateInfo org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle style byte[] eol java.util.Map keywords boolean special java.io.File xlated_path public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo mergeText (java.io.File, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, boolean, org.tmatesoft.svn.core.wc.SVNDiffOptions, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException java.io.File left java.io.File right java.io.File target String leftLabel String rightLabel String targetLabel org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion boolean dryRun org.tmatesoft.svn.core.wc.SVNDiffOptions options org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo result org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.SVNProperties actualProps public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo merge (java.io.File, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, java.io.File, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean, org.tmatesoft.svn.core.wc.SVNDiffOptions, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind boolean hidden org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File leftAbspath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion java.io.File rightAbspath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion java.io.File targetAbspath java.io.File wriAbspath String leftLabel String rightLabel String targetLabel org.tmatesoft.svn.core.SVNProperties actualProps boolean dryRun org.tmatesoft.svn.core.wc.SVNDiffOptions options org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo info boolean isBinary org.tmatesoft.svn.core.SVNPropertyValue mimeprop java.io.File detranslatedTargetAbspath org.tmatesoft.svn.core.wc2.ISvnMerger customMerger private void attemptTrivialMerge (org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo, java.io.File, java.io.File, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.util.SVNSkel item org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo info java.io.File leftAbspath java.io.File rightAbspath java.io.File targetAbspath boolean dryRun org.tmatesoft.svn.core.internal.wc.SVNFileType ft boolean sameContents private boolean isMarkedAsBinary (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath String value private java.io.File detranslateWCFile (java.io.File, boolean, org.tmatesoft.svn.core.SVNProperties, java.io.File) throws org.tmatesoft.svn.core.SVNException boolean isBinary org.tmatesoft.svn.core.SVNPropertyValue prop org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle style byte[] eol java.util.Map keywords boolean special org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo translateInfo org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle style byte[] eol java.util.Map keywords boolean special org.tmatesoft.svn.core.SVNPropertyValue prop org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle style byte[] eol java.util.Map keywords boolean special org.tmatesoft.svn.core.internal.wc17.SVNWCContext$TranslateInfo translateInfo org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle style byte[] eol java.util.Map keywords boolean special org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyleInfo propEolStyle org.tmatesoft.svn.core.SVNPropertyValue prop org.tmatesoft.svn.core.SVNErrorMessage err java.io.File detranslated java.io.File targetAbspath boolean forceCopy org.tmatesoft.svn.core.SVNProperties propDiff java.io.File sourceAbspath boolean isBinary org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNEolStyle style byte[] eol java.util.Map keywords boolean special public static org.tmatesoft.svn.core.internal.wc17.SVNWCContext$UniqueFileInfo openUniqueFile (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File dirPath boolean openStream org.tmatesoft.svn.core.internal.wc17.SVNWCContext$UniqueFileInfo info private java.io.File maybeUpdateTargetEols (java.io.File, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException byte[] eol java.io.File tmpNew java.io.File oldTargetAbspath org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.SVNPropertyValue prop private org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo mergeTextFile (org.tmatesoft.svn.core.wc2.ISvnMerger, java.io.File, java.io.File, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.wc.SVNDiffOptions, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, java.io.File, java.io.File, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.ISVNConflictHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PresevePreMergeFileInfo preserveInfo org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File leftCopy java.io.File rightCopy java.io.File targetCopy boolean special boolean same org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.wc2.ISvnMerger customMerger java.io.File leftAbspath java.io.File rightAbspath java.io.File targetAbspath java.io.File wriAbspath String leftLabel String rightLabel String targetLabel boolean dryRun org.tmatesoft.svn.core.wc.SVNDiffOptions options org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion java.io.File copyfromText java.io.File detranslatedTargetAbspath org.tmatesoft.svn.core.SVNPropertyValue mimeprop org.tmatesoft.svn.core.wc.ISVNConflictHandler conflictResolver org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo info String baseName java.io.File tempDir java.io.File resultTarget boolean containsConflicts private boolean doTextMerge (org.tmatesoft.svn.core.wc2.ISvnMerger, java.io.File, java.io.File, java.io.File, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.wc.SVNDiffOptions) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnMergeResult mergeResult org.tmatesoft.svn.core.wc2.ISvnMerger customMerger java.io.File resultFile java.io.File targetAbsPath java.io.File detranslatedTargetAbspath java.io.File leftAbspath java.io.File rightAbspath String targetLabel String leftLabel String rightLabel org.tmatesoft.svn.core.wc.SVNDiffOptions options org.tmatesoft.svn.core.wc2.ISvnMerger defaultMerger org.tmatesoft.svn.core.wc2.SvnMergeResult mergeResult org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictMarkersInfo initConflictMarkers (java.lang.String, java.lang.String, java.lang.String) String targetLabel String leftLabel String rightLabel org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictMarkersInfo info private org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PresevePreMergeFileInfo preservePreMergeFiles (java.io.File, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File tmpLeft java.io.File tmpRight java.io.File detranslatedTargetCopy org.tmatesoft.svn.core.SVNException e java.io.File leftAbspath java.io.File rightAbspath java.io.File targetAbspath String leftLabel String rightLabel String targetLabel java.io.File detranslatedTargetAbspath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PresevePreMergeFileInfo info java.io.File dirAbspath String targetName java.io.File tempDir java.io.File tmpLeft java.io.File tmpRight java.io.File detranslatedTargetCopy org.tmatesoft.svn.core.internal.util.SVNSkel workItem private org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo maybeResolveConflicts (java.io.File, java.io.File, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, java.io.File, java.io.File, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.SVNDiffOptions, org.tmatesoft.svn.core.wc.ISVNConflictHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNConflictResult result org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNConflictDescription cdesc java.io.File leftAbspath java.io.File rightAbspath java.io.File targetAbspath java.io.File copyfromText String leftLabel String rightLabel String targetLabel org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion java.io.File resultTarget java.io.File detranslatedTarget org.tmatesoft.svn.core.SVNPropertyValue mimeprop org.tmatesoft.svn.core.wc.SVNDiffOptions options org.tmatesoft.svn.core.wc.ISVNConflictHandler conflictResolver org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo info org.tmatesoft.svn.core.wc.SVNConflictResult result java.io.File dirAbspath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo evalInfo org.tmatesoft.svn.core.internal.util.SVNSkel workItem private org.tmatesoft.svn.core.wc.SVNConflictDescription setupTextConflictDesc (java.io.File, java.io.File, java.io.File, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, java.io.File, java.io.File, org.tmatesoft.svn.core.SVNPropertyValue, boolean) java.io.File leftAbspath java.io.File rightAbspath java.io.File targetAbspath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion java.io.File resultTarget java.io.File detranslatedTarget org.tmatesoft.svn.core.SVNPropertyValue mimeprop boolean isBinary org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17 cdesc private org.tmatesoft.svn.core.internal.util.SVNSkel saveMergeResult (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File versionedAbspath java.io.File source java.io.File dirAbspath String filename java.io.File editedCopyAbspath private org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo evalConflictResolverResult (org.tmatesoft.svn.core.wc.SVNConflictChoice, java.io.File, java.io.File, java.io.File, java.io.File, java.io.File, java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNDiffOptions) throws org.tmatesoft.svn.core.SVNException de.regnis.q.sequence.line.QSequenceLineRAData baseData de.regnis.q.sequence.line.QSequenceLineRAData localData de.regnis.q.sequence.line.QSequenceLineRAData latestData org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle style java.io.File tempDir org.tmatesoft.svn.core.internal.wc.FSMergerBySequence merger java.io.RandomAccessFile localIS java.io.RandomAccessFile latestIS java.io.RandomAccessFile baseIS org.tmatesoft.svn.core.internal.wc17.SVNWCContext$UniqueFileInfo uniqFile java.io.File chosenPath java.io.OutputStream chosenStream org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.wc.SVNConflictChoice choice java.io.File wriAbspath java.io.File leftAbspath java.io.File rightAbspath java.io.File targetAbspath java.io.File copyfromText java.io.File mergedFile java.io.File detranslatedTarget org.tmatesoft.svn.core.wc.SVNDiffOptions options java.io.File installFrom boolean removeSource org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo info private org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo mergeBinaryFile (java.io.File, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, java.io.File, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.ISVNConflictHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File installFrom org.tmatesoft.svn.core.wc.SVNConflictDescription cdesc org.tmatesoft.svn.core.wc.SVNConflictResult result java.io.File mineCopy java.io.File conflictWrk java.io.File leftAbspath java.io.File rightAbspath java.io.File targetAbspath String leftLabel String rightLabel String targetLabel org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion java.io.File detranslatedTargetAbspath org.tmatesoft.svn.core.SVNPropertyValue mimeprop org.tmatesoft.svn.core.wc.ISVNConflictHandler conflictResolver org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo info java.io.File leftCopy java.io.File rightCopy java.io.File conflictWrk org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File mergeDirpath String mergeFilename public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildFileMove (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File srcAbspath java.io.File dstAbspath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.util.SVNSkel result public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildFileMove (java.io.File, java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File anchorPath java.io.File srcAbspath java.io.File dstAbspath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File anchorRelativePath org.tmatesoft.svn.core.internal.util.SVNSkel result public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildFileCopyTranslated (java.io.File, java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File localAbspath java.io.File srcAbspath java.io.File dstAbspath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.util.SVNSkel result public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildSetTextConflictMarkersTmp (java.io.File, java.io.File, java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath java.io.File old java.io.File neo java.io.File wrk org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File wcRoot String oldPath String newPath String wrkPath org.tmatesoft.svn.core.internal.util.SVNSkel result public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildBaseRemove (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath boolean keepNotPresent org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.util.SVNSkel result public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildBaseRemove (java.io.File, long, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath long notPresentRevision org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind notPresentKind org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.util.SVNSkel result public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildRecordFileinfo (java.io.File, org.tmatesoft.svn.core.internal.util.SVNDate) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.util.SVNDate setTime org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.util.SVNSkel result public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildFileInstall (java.io.File, java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath java.io.File sourceAbspath boolean useCommitTimes boolean recordFileinfo org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.util.SVNSkel result public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildSyncFileFlags (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.util.SVNSkel result public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildFileRemove (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.util.SVNSkel result public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildPrejInstall (java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.util.SVNSkel conflictSkel org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.util.SVNSkel result public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildSetPropertyConflictMarkerTemp (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath java.io.File prejFile org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File wcRoot String prejPath org.tmatesoft.svn.core.internal.util.SVNSkel result public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildPostUpgrade () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.util.SVNSkel result org.tmatesoft.svn.core.internal.util.SVNSkel workItem public org.tmatesoft.svn.core.internal.util.SVNSkel wqMerge (org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.util.SVNSkel result int i org.tmatesoft.svn.core.internal.util.SVNSkel workItem1 org.tmatesoft.svn.core.internal.util.SVNSkel workItem2 int listSize public void wqRun (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbWorkQueueInfo fetchWorkQueue java.io.File dirAbspath java.io.File wcRootAbspath private void dispatchWorkItem (java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation scan org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WorkQueueOperation[] arr$ int len$ int i$ java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.SVNErrorMessage err public void removeBaseNode (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus baseStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind baseKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo java.io.File childAbspath String childName java.util.Iterator i$ java.util.Set children java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus wrkStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind wrkKind boolean haveBase org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus baseStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind baseKind public void getAndRecordFileInfo (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.util.SVNDate lastModified long length java.io.File localAbspath boolean ignoreError public void syncFileFlags (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath private boolean maybeSetReadOnly (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.SVNException e java.io.File localAbspath boolean didSet org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock lock String needsLock org.tmatesoft.svn.core.SVNProperties pristineProperties private boolean maybeSetExecutable (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath boolean didSet String propval public java.io.File createPrejFile (java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.util.SVNSkel child int i int listSize java.io.File localAbspath org.tmatesoft.svn.core.internal.util.SVNSkel conflictSkel java.io.File tempDirAbspath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$UniqueFileInfo openUniqueFile java.io.OutputStream stream java.io.File tempAbspath private void appendPropConflict (java.io.OutputStream, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.OutputStream stream org.tmatesoft.svn.core.internal.util.SVNSkel propSkel String message private java.lang.String messageFromSkel (org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.IOException e java.io.IOException e org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictMarkersInfo markersInfo String targetMarker String leftMarker String rightMarker org.tmatesoft.svn.core.internal.wc.FSMergerBySequence merger int mergeResult java.io.RandomAccessFile localIS java.io.RandomAccessFile latestIS java.io.RandomAccessFile baseIS java.io.ByteArrayOutputStream result org.tmatesoft.svn.core.internal.util.SVNSkel skel String propname org.tmatesoft.svn.core.SVNPropertyValue original org.tmatesoft.svn.core.SVNPropertyValue mine org.tmatesoft.svn.core.SVNPropertyValue incoming org.tmatesoft.svn.core.SVNPropertyValue incomingBase String conflictMessage byte[] originalBytes byte[] mineBytes byte[] incomingBytes boolean mineIsBinary boolean incomingIsBinary boolean originalIsBinary private org.tmatesoft.svn.core.SVNPropertyValue maybePropValue (java.lang.String, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException String propname org.tmatesoft.svn.core.internal.util.SVNSkel child byte[] data private java.lang.String generateConflictMessage (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue) String propname org.tmatesoft.svn.core.SVNPropertyValue original org.tmatesoft.svn.core.SVNPropertyValue mine org.tmatesoft.svn.core.SVNPropertyValue incoming org.tmatesoft.svn.core.SVNPropertyValue incomingBase public boolean resolveConflictOnNode (java.io.File, boolean, boolean, org.tmatesoft.svn.core.wc.SVNConflictChoice) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNConflictDescription desc java.util.Iterator i$ java.io.File conflictDirAbspath de.regnis.q.sequence.line.QSequenceLineRAData baseData de.regnis.q.sequence.line.QSequenceLineRAData localData de.regnis.q.sequence.line.QSequenceLineRAData latestData org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File tempDir org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle style org.tmatesoft.svn.core.internal.wc17.SVNWCContext$UniqueFileInfo openUniqueFile byte[] nullBytes org.tmatesoft.svn.core.internal.wc.FSMergerBySequence merger java.io.RandomAccessFile localIS java.io.RandomAccessFile latestIS java.io.RandomAccessFile baseIS java.io.OutputStream result org.tmatesoft.svn.core.SVNErrorMessage err java.io.File autoResolveSrc java.io.File localAbsPath boolean resolveText boolean resolveProps org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice boolean foundFile java.io.File conflictOld java.io.File conflictNew java.io.File conflictWorking java.io.File propRejectFile org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind java.util.List conflicts java.io.File conflictDirAbspath boolean didResolve private void resolveOneConflict (java.io.File, boolean, java.lang.String, boolean, org.tmatesoft.svn.core.wc.SVNConflictChoice) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNConflictDescription desc java.util.Iterator i$ org.tmatesoft.svn.core.wc.SVNEvent event java.io.File localAbsPath boolean resolveText String resolveProps boolean resolveTree org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice java.util.List conflicts boolean resolved private void recursiveResolveConflict (java.io.File, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, java.lang.String, boolean, org.tmatesoft.svn.core.wc.SVNConflictChoice) throws org.tmatesoft.svn.core.SVNException java.io.File childAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind boolean conflicted String child java.util.Iterator i$ java.io.File childAbsPath String child java.util.Iterator i$ java.io.File localAbsPath boolean thisIsConflicted org.tmatesoft.svn.core.SVNDepth depth boolean resolveText String resolveProps boolean resolveTree org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice org.tmatesoft.svn.core.internal.util.SVNHashMap visited org.tmatesoft.svn.core.SVNDepth childDepth java.util.Set children java.util.List conflictVictims public void resolvedConflict (java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, java.lang.String, boolean, org.tmatesoft.svn.core.wc.SVNConflictChoice) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File localAbsPath org.tmatesoft.svn.core.SVNDepth depth boolean resolveText String resolveProps boolean resolveTree org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind dbKind boolean conflicted private boolean attemptDeletion (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File parentDir java.io.File baseName java.io.File fullPath public int checkWC (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath private int checkWC (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNNodeKind wcKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus dbStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind dbKind java.io.File localAbsPath boolean check int wcFormat public void initializeWC (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo scanAddition org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo scanBase org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromInfo copyFromInfo org.tmatesoft.svn.core.SVNURL copyfromRootUrl java.io.File copyfromReposRelpath java.io.File localAbspath org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL repositoryRoot String uuid long revision org.tmatesoft.svn.core.SVNDepth depth int format java.io.File reposRelpath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status long dbRevision java.io.File dbReposRelpath org.tmatesoft.svn.core.SVNURL dbReposRootUrl String dbReposUuid private void initWC (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath java.io.File reposRelpath org.tmatesoft.svn.core.SVNURL repositoryRoot String uuid long revNumber org.tmatesoft.svn.core.SVNDepth depth java.io.File wcAdmDir public java.lang.String getActualTarget (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CheckWCRootInfo checkWCRoot org.tmatesoft.svn.core.SVNException e java.io.File path boolean wcRoot boolean switched org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind public java.io.File getNodeReposRelPath (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File parentAbspath String name java.io.File parentRelpath java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status java.io.File reposRelPath boolean haveBase public boolean isChangelistMatch (java.io.File, java.util.Collection) String changelist org.tmatesoft.svn.core.SVNException e java.io.File localAbsPath java.util.Collection changelistsSet public boolean isNodeStatusDeleted (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PropDiffs getPropDiffs (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PropDiffs propDiffs org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties actualProps public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock getNodeLock (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File localAbsPath public java.util.List getNodeChildren (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException boolean childIsHiden java.io.File childAbsPath String child java.util.Iterator i$ java.io.File dirAbsPath boolean showHidden java.util.Set relChildren java.util.List childs public java.util.List getChildrenOfWorkingNode (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException boolean childIsHiden java.io.File childAbsPath String child java.util.Iterator i$ java.io.File dirAbsPath boolean showHidden java.util.Set relChildren java.util.List childs public org.tmatesoft.svn.core.SVNDepth getNodeDepth (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath public org.tmatesoft.svn.core.internal.util.SVNSkel wqBuildFileCommit (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath boolean propsMods org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.util.SVNSkel result private java.io.File getRelativePath (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir public void ensureNoUnfinishedTransactions () throws org.tmatesoft.svn.core.SVNException public void canonicalizeURLs (java.io.File, org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore externalsStore boolean omitDefaultPort org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir static synthetic boolean access$000 (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 java.io.File x1 java.io.File x2 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNUpdateEditor17$BumpDirectoryInfo.class
SVNUpdateEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo extends java.lang.Object { private int refCount private org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo parent private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$1 x0 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo access$5202 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo, org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo x0 org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo x1 static synthetic int access$5302 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo, int) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo x0 int x1 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo access$5200 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo x0 static synthetic int access$5308 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo x0 static synthetic int access$5306 (org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo) org.tmatesoft.svn.core.internal.wc17.SVNUpdateEditor17$BumpDirectoryInfo x0 }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$MergeInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.util.SVNSkel workItems public org.tmatesoft.svn.core.wc.SVNStatusType mergeOutcome public void <init> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCUtils.class
SVNWCUtils.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCUtils extends java.lang.Object { static final synthetic boolean $assertionsDisabled public void <init> () public static boolean isRecursiveDepth (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth public static java.io.File admChild (java.io.File, java.lang.String) java.io.File dirAbsPath String admChildFileName public static void admCleanupTmpArea (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File dirAbsPath java.io.File tmpPath public static void admInitTmpArea (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File dirAbsPath public static org.tmatesoft.svn.core.internal.util.SVNDate readDate (long) long date long time public static org.tmatesoft.svn.core.SVNProperties propDiffs (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNPropertyValue p org.tmatesoft.svn.core.SVNPropertyValue p String key byte[] propVal1 byte[] propVal2 java.util.Iterator i org.tmatesoft.svn.core.SVNPropertyValue p String key org.tmatesoft.svn.core.SVNPropertyValue propVal java.util.Iterator i org.tmatesoft.svn.core.SVNProperties targetProps org.tmatesoft.svn.core.SVNProperties sourceProps org.tmatesoft.svn.core.SVNProperties propdiffs public static int relpathDepth (java.io.File) java.io.File relpath public static int relpathDepth (java.lang.String) int i String relpath int n int length public static org.tmatesoft.svn.core.internal.wc17.SVNWCUtils$UnserializedFileExternalInfo unserializeFileExternal (java.lang.String) throws org.tmatesoft.svn.core.SVNException StringBuffer buffer String str org.tmatesoft.svn.core.internal.wc17.SVNWCUtils$UnserializedFileExternalInfo info public static java.lang.String serializeFileExternal (java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException String revStr String pegRevStr String path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision String representation public static java.lang.String getPathAsChild (java.io.File, java.io.File) java.io.File parent java.io.File child String parentPath String childPath public static boolean isChild (java.io.File, java.io.File) java.io.File parent java.io.File child public static java.lang.String isChild (java.lang.String, java.lang.String) String parentPath String childPath public static boolean isAncestor (java.io.File, java.io.File) java.io.File parent java.io.File child String parentPath String childPath public static java.io.File skipAncestor (java.io.File, java.io.File) java.io.File parent java.io.File child public static java.lang.String isChild (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL parent org.tmatesoft.svn.core.SVNURL child String parentPath String childPath public static org.tmatesoft.svn.core.SVNURL join (org.tmatesoft.svn.core.SVNURL, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL rootUrl java.io.File relPath public static long parseLong (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException e String value static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$CleanupHandler.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public abstract org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CleanupHandler extends java.lang.Object { public abstract void cleanup () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/SVNRemoteStatusEditor17$FileInfo.class
SVNRemoteStatusEditor17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo extends java.lang.Object { private java.io.File localAbsPath private String name private org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo parent private long ood_changed_rev private org.tmatesoft.svn.core.internal.util.SVNDate ood_changed_date private org.tmatesoft.svn.core.SVNNodeKind ood_kind private String ood_changed_author private boolean added private boolean text_changed private boolean prop_changed final synthetic org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17 this$0 public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17, org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo, java.lang.String, boolean) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo parent String path boolean added private java.lang.String computeRepositoryRelativePath () throws org.tmatesoft.svn.core.SVNException static synthetic boolean access$1302 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo, boolean) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 boolean x1 static synthetic boolean access$1402 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo, boolean) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 boolean x1 static synthetic boolean access$1502 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo, boolean) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 boolean x1 static synthetic long access$1602 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo, long) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 long x1 static synthetic org.tmatesoft.svn.core.internal.util.SVNDate access$1702 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo, org.tmatesoft.svn.core.internal.util.SVNDate) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 org.tmatesoft.svn.core.internal.util.SVNDate x1 static synthetic java.lang.String access$1802 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo, java.lang.String) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 String x1 static synthetic boolean access$1300 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 static synthetic boolean access$1500 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 static synthetic boolean access$1400 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$DirectoryInfo access$1900 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 static synthetic java.lang.String access$2000 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 static synthetic java.io.File access$2100 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 static synthetic long access$1600 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 static synthetic org.tmatesoft.svn.core.internal.util.SVNDate access$1700 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 static synthetic org.tmatesoft.svn.core.SVNNodeKind access$2200 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 static synthetic java.lang.String access$2300 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 static synthetic java.lang.String access$1800 (org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo) org.tmatesoft.svn.core.internal.wc17.SVNRemoteStatusEditor17$FileInfo x0 }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunRecordFileInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunRecordFileInfo extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation { public void <init> () public void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws java.lang.NumberFormatException org.tmatesoft.svn.core.SVNException long val org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File localAbspath org.tmatesoft.svn.core.internal.util.SVNDate setTime }
org/tmatesoft/svn/core/internal/wc17/SVNCommitter17$CopyingStream.class
SVNCommitter17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNCommitter17$CopyingStream extends java.io.FilterInputStream { private java.io.OutputStream myOutput final synthetic org.tmatesoft.svn.core.internal.wc17.SVNCommitter17 this$0 public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNCommitter17, java.io.OutputStream, java.io.InputStream) java.io.OutputStream out java.io.InputStream in public int read () throws java.io.IOException int r public int read (byte[]) throws java.io.IOException byte[] b int r public int read (byte[], int, int) throws java.io.IOException byte[] b int off int len int r public void close () throws java.io.IOException }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$EntryLocationInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$EntryLocationInfo extends java.lang.Object { public org.tmatesoft.svn.core.SVNURL url public long revNum public void <init> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$RunSyncFileFlags.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunSyncFileFlags extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$RunWorkQueueOperation { public void <init> () public void runOperation (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File localAbspath }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$PropDiffs.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PropDiffs extends java.lang.Object { public org.tmatesoft.svn.core.SVNProperties propChanges public org.tmatesoft.svn.core.SVNProperties originalProps public void <init> () }
org/tmatesoft/svn/core/internal/wc17/ISVNDirFetcher.class
ISVNDirFetcher.java package org.tmatesoft.svn.core.internal.wc17 public abstract org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher extends java.lang.Object { public abstract java.util.Map fetchEntries (org.tmatesoft.svn.core.SVNURL, java.io.File) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/SVNAmbientDepthFilterEditor17$1.class
SVNAmbientDepthFilterEditor17.java package org.tmatesoft.svn.core.internal.wc17 synthetic org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$1 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbStatus static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$CheckSpecialInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CheckSpecialInfo extends java.lang.Object { public org.tmatesoft.svn.core.SVNNodeKind kind public boolean isSpecial public void <init> () }
org/tmatesoft/svn/core/internal/wc17/DefaultSvnMerger.class
DefaultSvnMerger.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.DefaultSvnMerger extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnMerger { private final org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private org.tmatesoft.svn.core.internal.util.SVNSkel workItems public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) org.tmatesoft.svn.core.internal.wc17.SVNWCContext context public org.tmatesoft.svn.core.internal.util.SVNSkel getWorkItems () public org.tmatesoft.svn.core.wc.SVNMergeResult mergeText (org.tmatesoft.svn.core.wc.SVNMergeFileSet, boolean, org.tmatesoft.svn.core.wc.SVNDiffOptions) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNMergeFileSet files boolean dryRun org.tmatesoft.svn.core.wc.SVNDiffOptions options public org.tmatesoft.svn.core.wc.SVNMergeResult mergeProperties (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, boolean, boolean) throws org.tmatesoft.svn.core.SVNException String localPath org.tmatesoft.svn.core.SVNProperties workingProperties org.tmatesoft.svn.core.SVNProperties baseProperties org.tmatesoft.svn.core.SVNProperties serverBaseProps org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log boolean baseMerge boolean dryRun public org.tmatesoft.svn.core.wc2.SvnMergeResult mergeText (org.tmatesoft.svn.core.wc2.ISvnMerger, java.io.File, java.io.File, java.io.File, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.wc.SVNDiffOptions) throws org.tmatesoft.svn.core.SVNException de.regnis.q.sequence.line.QSequenceLineRAData baseData de.regnis.q.sequence.line.QSequenceLineRAData localData de.regnis.q.sequence.line.QSequenceLineRAData latestData org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.wc2.ISvnMerger baseMerger java.io.File resultFile java.io.File targetAbspath java.io.File detranslatedTargetAbspath java.io.File leftAbspath java.io.File rightAbspath String targetLabel String leftLabel String rightLabel org.tmatesoft.svn.core.wc.SVNDiffOptions options org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictMarkersInfo markersInfo String targetMarker String leftMarker String rightMarker org.tmatesoft.svn.core.internal.wc.FSMergerBySequence merger int mergeResult java.io.RandomAccessFile localIS java.io.RandomAccessFile latestIS java.io.RandomAccessFile baseIS java.io.OutputStream result public org.tmatesoft.svn.core.wc2.SvnMergeResult mergeProperties (org.tmatesoft.svn.core.wc2.ISvnMerger, java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropStatusInfo mergePropStatus boolean conflictRemains org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropStatusInfo mergePropStatus boolean conflictRemains org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropStatusInfo mergePropStatus String propname org.tmatesoft.svn.core.SVNPropertyValue toVal org.tmatesoft.svn.core.SVNPropertyValue fromVal org.tmatesoft.svn.core.SVNPropertyValue baseVal boolean conflictRemains org.tmatesoft.svn.core.SVNPropertyValue mineVal java.util.Iterator i java.io.File rejectDirpath String rejectFilename java.io.File rejectDirpath String rejectFilename org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File rejectPath org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.wc2.ISvnMerger baseMerger java.io.File localAbsPath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightVersion org.tmatesoft.svn.core.SVNProperties serverBaseProperties org.tmatesoft.svn.core.SVNProperties pristineProperties org.tmatesoft.svn.core.SVNProperties actualProperties org.tmatesoft.svn.core.SVNProperties propChanges boolean baseMerge boolean dryRun org.tmatesoft.svn.core.internal.util.SVNSkel conflictSkel boolean isDir org.tmatesoft.svn.core.wc.ISVNConflictHandler conflictResolver org.tmatesoft.svn.core.wc.SVNStatusType mergeOutcome org.tmatesoft.svn.core.wc2.SvnMergeResult result org.tmatesoft.svn.core.internal.util.SVNSkel workItems }
org/tmatesoft/svn/core/internal/wc17/SVNAmbientDepthFilterEditor17$DirBaton.class
SVNAmbientDepthFilterEditor17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$DirBaton extends java.lang.Object { boolean myIsAmbientlyExcluded org.tmatesoft.svn.core.SVNDepth myAmbientDepth final synthetic org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17 this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17) synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17, org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$1) org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17 x0 org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$1 x1 }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$NodeCopyFromField.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromField extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromField rootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromField reposRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromField url public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromField rev public static final enum org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromField isCopyTarget private static final synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromField[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromField[] values () public static org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromField valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/SVNCommitter17$TransmittedChecksums.class
SVNCommitter17.java package org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.SVNCommitter17$TransmittedChecksums extends java.lang.Object { public org.tmatesoft.svn.core.wc2.SvnChecksum md5Checksum public org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.SVNCommitter17$1) org.tmatesoft.svn.core.internal.wc17.SVNCommitter17$1 x0 }
org/tmatesoft/svn/core/internal/wc17/SVNLogClient17.class
SVNLogClient17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNLogClient17 extends org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate { private org.tmatesoft.svn.core.wc.SVNDiffOptions myDiffOptions public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setDiffOptions (org.tmatesoft.svn.core.wc.SVNDiffOptions) org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions public org.tmatesoft.svn.core.wc.SVNDiffOptions getDiffOptions () public void doAnnotate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doAnnotate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean ignoreMimeType org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doAnnotate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean ignoreMimeType boolean includeMergedRevisions org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding org.tmatesoft.svn.core.SVNErrorMessage err public void doAnnotate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doAnnotate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding org.tmatesoft.svn.core.SVNErrorMessage err public void doAnnotate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean ignoreMimeType org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding org.tmatesoft.svn.core.SVNErrorMessage err public void doAnnotate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean ignoreMimeType boolean includeMergedRevisions org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding org.tmatesoft.svn.core.SVNErrorMessage err public void doLog (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, long, org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean stopOnCopy boolean discoverChangedPaths long limit org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doLog (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, long, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.SVNRevision pegRevision boolean stopOnCopy boolean discoverChangedPaths boolean includeMergedRevisions long limit String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doLog (java.io.File[], java.util.Collection, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, long, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths java.util.Collection revisionRanges org.tmatesoft.svn.core.wc.SVNRevision pegRevision boolean stopOnCopy boolean discoverChangedPaths boolean includeMergedRevisions long limit String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doLog (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, long, org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean stopOnCopy boolean discoverChangedPaths long limit org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doLog (org.tmatesoft.svn.core.SVNURL, java.lang.String[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, long, org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String[] paths org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean stopOnCopy boolean discoverChangedPaths long limit org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doLog (org.tmatesoft.svn.core.SVNURL, java.lang.String[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, long, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String[] paths org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean stopOnCopy boolean discoverChangedPaths boolean includeMergedRevisions long limit String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doLog (org.tmatesoft.svn.core.SVNURL, java.lang.String[], org.tmatesoft.svn.core.wc.SVNRevision, java.util.Collection, boolean, boolean, boolean, long, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String[] paths org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.util.Collection revisionRanges boolean stopOnCopy boolean discoverChangedPaths boolean includeMergedRevisions long limit String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doList (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean fetchLocks boolean recursive org.tmatesoft.svn.core.ISVNDirEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doList (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.SVNDepth, int, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean fetchLocks org.tmatesoft.svn.core.SVNDepth depth int entryFields org.tmatesoft.svn.core.ISVNDirEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doList (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.ISVNDirEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doList (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean fetchLocks boolean recursive org.tmatesoft.svn.core.ISVNDirEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doList (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.SVNDepth, int, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean fetchLocks org.tmatesoft.svn.core.SVNDepth depth int entryFields org.tmatesoft.svn.core.ISVNDirEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err public void doList (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.ISVNDirEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$NodeCopyFromInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$NodeCopyFromInfo extends java.lang.Object { public org.tmatesoft.svn.core.SVNURL rootUrl public java.io.File reposRelPath public org.tmatesoft.svn.core.SVNURL url public long rev public boolean isCopyTarget public void <init> () }
org/tmatesoft/svn/core/internal/wc17/SVNWCContext$PresevePreMergeFileInfo.class
SVNWCContext.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PresevePreMergeFileInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.util.SVNSkel workItems public java.io.File leftCopy public java.io.File rightCopy public java.io.File targetCopy public void <init> () }
org/tmatesoft/svn/core/internal/wc17/SVNCommitMediator17.class
SVNCommitMediator17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNCommitMediator17 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNWorkspaceMediator { private java.util.Collection myTmpFiles private java.util.Map myCommitItems private org.tmatesoft.svn.core.internal.wc17.SVNWCContext myContext public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.util.Map) org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.util.Map committables public java.util.Collection getTmpFiles () public void setWorkspaceProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnCommitItem item String path String name org.tmatesoft.svn.core.SVNPropertyValue value public org.tmatesoft.svn.core.SVNPropertyValue getWorkspaceProperty (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc2.SvnCommitItem item String path String name }
org/tmatesoft/svn/core/internal/wc17/SVNAmbientDepthFilterEditor17.class
SVNAmbientDepthFilterEditor17.java package org.tmatesoft.svn.core.internal.wc17 public org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor { private org.tmatesoft.svn.core.io.ISVNEditor myDelegate private org.tmatesoft.svn.core.internal.wc17.SVNWCContext myWcContext private java.io.File myAnchor private String myTarget private boolean myReadBase private java.util.LinkedList myDirs private org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$DirBaton myCurrentDirBaton private org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$FileBaton myCurrentFileBaton public void <init> (org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor, org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.lang.String, boolean) org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor editor org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File anchor String target boolean readBase public static org.tmatesoft.svn.core.io.ISVNEditor wrap (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.lang.String, org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor, boolean) org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File anchor String target org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor editor boolean depthIsSticky public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$AmbientReadInfo aInfo long revision public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException java.io.File abspath org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$AmbientReadInfo aInfo String path long revision public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$DirBaton parentBaton public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$DirBaton parentBaton java.io.File abspath org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$AmbientReadInfo aInfo public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$DirBaton closedDir public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String textChecksum public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void abortEdit () throws org.tmatesoft.svn.core.SVNException private org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$DirBaton makeDirBaton (java.lang.String, org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$DirBaton) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err boolean exclude java.io.File abspath org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$AmbientReadInfo aInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind boolean exclude boolean exists String path org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$DirBaton parentBaton org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$DirBaton dirBaton private org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$FileBaton makeFileBaton (org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$DirBaton, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$DirBaton parentBaton String path org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$FileBaton fileBaton java.io.File abspath org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$AmbientReadInfo aInfo private org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$AmbientReadInfo ambientReadInfo (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo org.tmatesoft.svn.core.SVNException e java.io.File localAbspath boolean readBase org.tmatesoft.svn.core.internal.wc17.SVNAmbientDepthFilterEditor17$AmbientReadInfo info public long getTargetRevision () }
org/tmatesoft/svn/core/internal/wc17/db/
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$WCLockObtain.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$WCLockObtain extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath int levelsToLock boolean stealLock final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err boolean nodeExists org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.SVNErrorMessage err java.io.File lockAbspath boolean ownLock java.io.File lockRelpath boolean gotRow org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.SVNErrorMessage err long levels boolean gotRow org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcroot int lockDepth int maxDepth java.io.File lockRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot$WCLock lock synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x1 }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbReader$1.class
SvnWcDbReader.java package org.tmatesoft.svn.core.internal.wc17.db final org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbReader$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { final synthetic long val$wcId final synthetic java.io.File val$localRelpath final synthetic long[] val$revs void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum, long, java.io.File, long[]) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException long depth String presence long rev long changedRev String path }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb { public static final int FORMAT_FROM_SDB public static final long UNKNOWN_WC_ID static final long INVALID_REPOS_ID private org.tmatesoft.svn.core.wc.ISVNOptions config private boolean autoUpgrade private boolean enforceEmptyWQ private java.util.Map dirData static final synthetic boolean $assertionsDisabled public void <init> () public static boolean isAbsolute (java.io.File) java.io.File localAbsPath public static transient java.util.EnumSet getInfoFields (java.lang.Class, java.lang.Enum[]) Enum f Enum[] arr$ int len$ int i$ Class clazz Enum[] fields java.util.EnumSet set public void open (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode, org.tmatesoft.svn.core.wc.ISVNOptions, boolean, boolean) org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode mode org.tmatesoft.svn.core.wc.ISVNOptions config boolean autoUpgrade boolean enforceEmptyWQ public void close () org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.util.Map$Entry entry java.util.Iterator i$ java.util.Set roots public void ensureNoUnfinishedTransactions () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.util.Map$Entry entry java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot java.util.Iterator i$ java.util.Set roots private void closeManyWCRoots (java.util.Set) org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot java.util.Iterator i$ java.util.Set roots public org.tmatesoft.svn.core.wc.ISVNOptions getConfig () public void init (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath java.io.File reposRelPath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid long initialRev org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$CreateDbInfo createDb org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertBase ibb private org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$CreateDbInfo createDb (java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File dirAbsPath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid String sdbFileName org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$CreateDbInfo info org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement statement public long createReposId (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, org.tmatesoft.svn.core.SVNURL, java.lang.String) throws org.tmatesoft.svn.core.SVNException boolean haveRow org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement getStmt org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement insertStmt private void addWorkItems (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.internal.util.SVNSkel skel private void addSingleWorkItem (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.internal.util.SVNSkel workItem byte[] serialized org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public java.util.Map getExternalsDefinedBelow (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File defLocalRelpath java.io.File localAbsPath java.util.Map externals org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void gatherExternalDefinitions (java.io.File, org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties properties String externalProperty java.io.File nodeRelPath java.io.File nodeAbsPath String depthWord java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore externals org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void addBaseExcludedNode (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus, org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath java.io.File reposRelPath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid long revision org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.util.SVNSkel conflict org.tmatesoft.svn.core.internal.util.SVNSkel workItems public void addBaseDirectory (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, java.util.List, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNSkel, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath java.io.File reposRelPath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid long revision org.tmatesoft.svn.core.SVNProperties props long changedRev org.tmatesoft.svn.core.internal.util.SVNDate changedDate String changedAuthor java.util.List children org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.SVNProperties davCache org.tmatesoft.svn.core.internal.util.SVNSkel conflict boolean updateActualProps org.tmatesoft.svn.core.SVNProperties actualProps org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertBase ibb public void insertIncompleteChildren (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long, java.io.File, long, java.util.List, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt java.io.File name java.util.Iterator i$ org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db long wcId java.io.File localRelpath long revision java.util.List children long opDepth public void retractParentDelete (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db long wcId java.io.File localRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void extendParentDelete (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long, java.io.File) throws org.tmatesoft.svn.core.SVNException long opDepth org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db long wcId java.io.File localRelpath boolean haveRow org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt long parentOpDepth java.io.File parentRelpath public void addBaseFile (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, org.tmatesoft.svn.core.wc2.SvnChecksum, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNSkel, boolean, org.tmatesoft.svn.core.SVNProperties, boolean, boolean, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath java.io.File reposRelpath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid long revision org.tmatesoft.svn.core.SVNProperties props long changedRev org.tmatesoft.svn.core.internal.util.SVNDate changedDate String changedAuthor org.tmatesoft.svn.core.wc2.SvnChecksum checksum org.tmatesoft.svn.core.SVNProperties davCache org.tmatesoft.svn.core.internal.util.SVNSkel conflict boolean updateActualProps org.tmatesoft.svn.core.SVNProperties actualProps boolean keepRecordedInfo boolean insertBaseDeleted org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertBase ibb public void addBaseSymlink (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, java.io.File, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNSkel, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath java.io.File reposRelPath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid long revision org.tmatesoft.svn.core.SVNProperties props long changedRev org.tmatesoft.svn.core.internal.util.SVNDate changedDate String changedAuthor java.io.File target org.tmatesoft.svn.core.SVNProperties davCache org.tmatesoft.svn.core.internal.util.SVNSkel conflict boolean updateActualProps org.tmatesoft.svn.core.SVNProperties acutalProps org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertBase ibb public void addLock (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock lock org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertLock ilb public void addWorkQueue (java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File wcRootAbsPath org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public boolean checkPristine (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException java.io.File wcRootAbsPath org.tmatesoft.svn.core.wc2.SvnChecksum checksum org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public void completedWorkQueue (java.io.File, long) throws org.tmatesoft.svn.core.SVNException java.io.File wcRootAbsPath long id org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbWorkQueueInfo fetchWorkQueue (java.io.File) throws org.tmatesoft.svn.core.SVNException boolean haveRow java.io.File wcRootAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbWorkQueueInfo info org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public java.io.File fromRelPath (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File wcRootAbsPath java.io.File localRelPath public java.util.Set getBaseChildren (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath public java.util.Set getWorkingChildren (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath public org.tmatesoft.svn.core.SVNProperties getBaseDavCache (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err boolean haveRow java.io.File localAbsPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void clearDavCacheRecursive (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public transient org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo getBaseInfo (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField[]) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField[] fields org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelPath public transient org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo getBaseInfo (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement lockStmt org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo reposInfo String depth_str org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind node_kind org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField[] fields java.util.EnumSet f org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo info boolean have_row org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public org.tmatesoft.svn.core.SVNProperties getBaseProps (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err boolean have_row org.tmatesoft.svn.core.SVNProperties props java.io.File localAbsPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public int getFormatTemp (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e java.io.File localDirAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public org.tmatesoft.svn.core.wc2.SvnChecksum getPristineMD5 (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err boolean have_row org.tmatesoft.svn.core.wc2.SvnChecksum md5Checksum java.io.File wcRootAbsPath org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public java.io.File getPristinePath (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException java.io.File wcRootAbsPath org.tmatesoft.svn.core.wc2.SvnChecksum checksum org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public org.tmatesoft.svn.core.wc2.SvnChecksum getPristineSHA1 (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException java.io.File wcRootAbsPath org.tmatesoft.svn.core.wc2.SvnChecksum md5Checksum org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public java.io.File getPristineTempDir (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File wcRootAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public void globalRecordFileinfo (java.io.File, long, org.tmatesoft.svn.core.internal.util.SVNDate) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath long translatedSize org.tmatesoft.svn.core.internal.util.SVNDate lastModTime org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$RecordFileinfo rb public void installPristine (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException java.io.File tempfileAbspath org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum org.tmatesoft.svn.core.wc2.SvnChecksum md5Checksum java.io.File wriAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public boolean isNodeHidden (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus work_status boolean have_row java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsedInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus base_status public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir (java.io.File, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode sMode public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir (java.io.File, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String buildRelPath java.io.File localDirAbspath org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNNodeKind resolvedKind org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e long wcId String dirRelPath org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo wcDbInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNNodeKind resolvedKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status boolean conflicted boolean retryIfDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir parentWcDbDir java.io.File parentDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir parentRoot org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir wcDbDir java.io.File scanAbspath java.io.File localAbspath org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode sMode boolean isDetectWCGeneration boolean isAdditionMode org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo info String buildRelPath java.io.File localDirAbspath java.io.File originalAbspath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir probeRoot org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir foundRoot boolean movedUpwards boolean alwaysCheck boolean isSymlink org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb int wc_format boolean isOldFormat org.tmatesoft.svn.core.internal.wc.SVNFileType fileType private int getOldVersion (java.io.File) java.io.File formatFile int formatVersion java.io.File adminDir java.io.File entriesFile org.tmatesoft.svn.core.SVNException e java.io.File localAbsPath private int readFormatVersion (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err1 NumberFormatException e java.io.File path int formatVersion java.io.BufferedReader reader String line public boolean isWCLocked (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath private boolean isWCLocked (java.io.File, long) throws org.tmatesoft.svn.core.SVNException long locked_levels boolean have_row org.tmatesoft.svn.core.SVNException e java.io.File localAbspath long recurseDepth org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt java.io.File parentFile private boolean isWCLocked (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, long) throws org.tmatesoft.svn.core.SVNException long locked_levels int lockedPathDepth java.io.File lockedPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelpath long recurseDepth org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt int pathDepth public void opAddDirectory (java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertWorking ibw public void opAddFile (java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertWorking ibw public void opCopy (java.io.File, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File srcAbsPath java.io.File dstAbsPath org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseSrcDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir srcPdh java.io.File localSrcRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDstDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir dstPdh java.io.File localDstRelpath public void opCopyShadowedLayer (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File srcAbsPath java.io.File dstAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseSrcDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir srcPdh java.io.File localSrcRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDstDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir dstPdh java.io.File localDstRelpath public void opCopyDir (java.io.File, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, java.util.List, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.SVNProperties props long changedRev org.tmatesoft.svn.core.internal.util.SVNDate changedDate String changedAuthor java.io.File originalReposRelPath org.tmatesoft.svn.core.SVNURL originalRootUrl String originalUuid long originalRevision java.util.List children org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.util.SVNSkel conflict org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath public void opCopyFile (java.io.File, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.wc2.SvnChecksum, org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.SVNProperties props long changedRev org.tmatesoft.svn.core.internal.util.SVNDate changedDate String changedAuthor java.io.File originalReposRelPath org.tmatesoft.svn.core.SVNURL originalRootUrl String originalUuid long originalRevision org.tmatesoft.svn.core.wc2.SvnChecksum checksum org.tmatesoft.svn.core.internal.util.SVNSkel conflict org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath public void opDelete (java.io.File, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e java.io.File path org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement selectDeleteList org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement dropList org.tmatesoft.svn.core.SVNException e java.io.File localAbsPath org.tmatesoft.svn.core.wc.ISVNEventHandler notifyHandler org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$Delete deleteTxn public void opMarkResolved (java.io.File, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt java.io.File localAbspath boolean resolvedText boolean resolvedProps boolean resolvedTree org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath public java.util.Map opReadAllTreeConflicts (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath private java.util.Map readAllTreeConflicts (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File childRelpath String childBaseName byte[] conflictData org.tmatesoft.svn.core.internal.util.SVNSkel skel org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict boolean haveRow org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath java.util.Map treeConflicts org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription opReadTreeConflict (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath private org.tmatesoft.svn.core.wc.SVNTreeConflictDescription readTreeConflict (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File) throws org.tmatesoft.svn.core.SVNException boolean haveRow byte[] conflictData org.tmatesoft.svn.core.internal.util.SVNSkel skel org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void opRevert (java.io.File, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.SVNException e java.io.File localAbspath org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb public void opSetChangelist (java.io.File, java.lang.String, java.lang.String[], org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath String changelistName String[] changeLists org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public void opSetProps (java.io.File, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNSkel, boolean, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.internal.util.SVNSkel conflict boolean clearRecordedInfo org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$SetProperties spb public void setActualProperties (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long, java.io.File, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db long wcId java.io.File localRelpath org.tmatesoft.svn.core.SVNProperties props long affectedRows org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void opSetTreeConflict (java.io.File, org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$SetTreeConflict stb org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public java.util.Set readChildren (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath public java.util.Set getChildrenOfWorkingNode (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo wcInfo java.io.File localRelPath long wcId org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.util.Set names org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement work_stmt public void readChildren (java.io.File, java.util.Map, java.util.Set) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath java.util.Map children java.util.Set conflicts org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelPath public void readChildren (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, java.util.Map, java.util.Set) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelPath java.util.Map children java.util.Set conflicts org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$GatherChildren gather private java.util.Set gatherChildren (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement base_stmt org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement work_stmt java.io.File localAbsPath boolean baseOnly boolean workOnly org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo wcInfo java.io.File localRelPath long wcId org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.util.Set names public java.util.Map getBaseChildrenMap (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement lockStmt org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo child String path String child_relpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot java.io.File localRelPath boolean fetchLocks long wcId org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.util.Map children org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement baseStmt java.util.Map row private void addChildren (java.util.Set, org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement) throws org.tmatesoft.svn.core.SVNException String child_relpath String name java.util.Set children org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public java.util.List readConflictVictims (java.io.File) throws org.tmatesoft.svn.core.SVNException String child_relpath String child_name java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo wcInfo java.io.File localRelPath long wcId org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt java.util.List victims java.util.Set found public java.util.List readConflicts (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File reposFile org.tmatesoft.svn.core.wc.SVNMergeFileSet mergeFiles org.tmatesoft.svn.core.wc.SVNPropertyConflictDescription desc java.io.File baseFile java.io.File theirFile java.io.File myFile java.io.File mergedFile org.tmatesoft.svn.core.wc.SVNMergeFileSet mergeFiles org.tmatesoft.svn.core.wc.SVNTextConflictDescription desc org.tmatesoft.svn.core.internal.util.SVNSkel skel org.tmatesoft.svn.core.wc.SVNTreeConflictDescription desc String prop_reject String conflict_old String conflict_new String conflict_working byte[] conflict_data boolean have_row java.io.File localAbsPath java.util.List conflicts org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public transient org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo reposInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo reposInfo java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField[] fields org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo wcInfo java.io.File localRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info java.util.EnumSet f public transient org.tmatesoft.svn.core.internal.wc17.db.Structure readInfo (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[]) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[] fields public transient org.tmatesoft.svn.core.internal.wc17.db.Structure readInfo (java.io.File, boolean, org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure reposInfo org.tmatesoft.svn.core.internal.wc17.db.Structure reposInfo java.io.File localAbsPath boolean isAdditionMode org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[] fields org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo wcInfo java.io.File localRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.internal.wc17.db.Structure info public long readOpDepth (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfoBelowWorking (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo wcInfo java.io.File localRelPath public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfoBelowWorking (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot java.io.File localRelPath int belowOpDepth org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt boolean haveRow public transient org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e byte[] props org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmtBaseLock long opDepth org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind nodeKind org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err boolean haveInfo boolean haveActual org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot java.io.File localRelPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField[] fields org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info java.util.EnumSet f org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmtInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmtActual public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus getWorkingStatus (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus) org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind readKind (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info org.tmatesoft.svn.core.SVNException e java.io.File localAbsPath boolean allowMissing public java.io.InputStream readPristine (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException java.io.File wcRootAbsPath org.tmatesoft.svn.core.wc2.SvnChecksum checksum org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public org.tmatesoft.svn.core.SVNProperties readPristineProperties (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelPath public void readPropertiesRecursively (java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, java.util.Collection, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.SVNDepth depth boolean baseProperties boolean pristineProperties java.util.Collection changelists org.tmatesoft.svn.core.wc2.ISvnObjectReceiver receiver org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelPath public org.tmatesoft.svn.core.SVNProperties readProperties (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelPath private org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement getStatementForPath (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements statementIndex org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement statement public void removeBase (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BaseRemove brb public void removeLock (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo long reposId org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void removePristine (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException java.io.File wcRootAbsPath org.tmatesoft.svn.core.wc2.SvnChecksum checksum org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public transient org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo scanAddition (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo reposInfo long opDepth org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo reposInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo rInfo long reposId org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo reposInfo java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField[] fields org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath java.util.EnumSet f java.io.File buildRelpath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo additionInfo long originalReposId java.io.File currentRelpath boolean haveRow org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus presence java.io.File reposPrefixPath int i org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public transient org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo scanBaseRepository (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo$RepositoryInfoField[]) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo$RepositoryInfoField[] fields java.util.EnumSet f org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo private static long scanUpwardsForRepos (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err boolean haveRow org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcroot java.io.File localRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt private static void fetchReposInfo (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err boolean have_row org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb long reposId org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public transient org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo scanDeletion (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo$DeletionInfoField[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus base_presence boolean have_base boolean have_row org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus work_presence org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement baseStmt org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo$DeletionInfoField[] fields org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File current_relpath java.util.EnumSet f org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo deletionInfo java.io.File current_abspath java.io.File child_abspath boolean child_has_base boolean found_moved_to long opDepth long localOpDepth org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus child_presence public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir navigateToParent (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir childPdh org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode sMode org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir parentPdh java.io.File parentAbsPath public void setBaseDavCache (java.io.File, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File localAbsPath org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public java.io.File toRelPath (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed public java.lang.String getFileExternalTemp (java.io.File) throws org.tmatesoft.svn.core.SVNException boolean have_row java.io.File path org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void cleanupPristine (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh private long fetchWCId (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err boolean have_row org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo fetchReposInfo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb long repos_id org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo info org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt boolean have_row public org.tmatesoft.svn.core.internal.wc17.db.Structure fetchRepositoryInfo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb long repos_id org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt boolean have_row private static org.tmatesoft.svn.core.internal.db.SVNSqlJetDb openDb (java.io.File, java.lang.String, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File dirAbsPath String sdbFileName org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode sMode private static void verifyDirUsable (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public org.tmatesoft.svn.core.internal.db.SVNSqlJetDb borrowDbTemp (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode) throws org.tmatesoft.svn.core.SVNException java.io.File localDirAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode mode org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode smode org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public boolean isWCRoot (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath public boolean isWCRoot (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath boolean isAdditionMode org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelPath public void opStartDirectoryUpdateTemp (java.io.File, java.io.File, long) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath java.io.File newReposRelpath long newRevision org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$StartDirectoryUpdate du public void opMakeCopyTemp (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File localAbspath boolean removeBase org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelPath boolean haveRow org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$MakeCopy mcb private void catchCopyOfAbsent (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public java.util.List gatherRepoChildren (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, long) throws org.tmatesoft.svn.core.SVNException String childRelpath boolean haveRow org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath long opDepth java.util.List children org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public long fetchReposId (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, org.tmatesoft.svn.core.SVNURL, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement getStmt public void opSetNewDirToIncompleteTemp (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath java.io.File reposRelpath org.tmatesoft.svn.core.SVNURL reposRootURL String reposUuid long revision org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertBase insertBase public void opBumpRevisionPostUpdate (java.io.File, org.tmatesoft.svn.core.SVNDepth, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.SVNDepth depth java.io.File newReposRelPath org.tmatesoft.svn.core.SVNURL newReposRootURL String newReposUUID long newRevision java.util.Collection excludedPaths org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate brb public java.io.File getWCRootTempDir (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public void opRemoveWorkingTemp (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void opSetBaseIncompleteTemp (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localDirAbspath boolean incomplete org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus baseStatus long affectedNodeRows org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt long affectedRows private org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir getOrCreateDir (java.io.File, boolean) java.io.File localDirAbspath boolean createAllowed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public void opSetDirDepthTemp (java.io.File, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath private void updateDepthValues (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt long affectedRows public void opRemoveEntryTemp (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb long wcId org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void opSetRevAndReposRelpathTemp (java.io.File, long, boolean, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath long revision boolean setReposRelpath java.io.File reposRelpath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$SetRevRelpath baton private void opSetRevAndReposRelpath (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, long, boolean, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt long reposId org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot java.io.File localRelpath long revision boolean setReposRelpath java.io.File reposRelpath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid public void obtainWCLock (java.io.File, int, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File lockAbspath org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot$WCLock lock java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcroot int depth org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbWorkQueueInfo wq java.io.File localAbspath int levelsToLock boolean stealLock org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$WCLockObtain baton private void stealWCLock (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcroot java.io.File localRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void releaseWCLock (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot$WCLock lock java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot$WCLock foundLock java.util.List ownedLocks org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public java.io.File getWCRoot (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File wcRootAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public void forgetDirectoryTemp (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.util.Map$Entry entry org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.util.Iterator i java.io.File localDirAbspath java.util.Set roots public boolean isWCLockOwns (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot$WCLock lock java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot$WCLock lock java.util.Iterator i$ java.io.File localAbspath boolean exact org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath boolean ownLock java.util.List ownedLocks int lockLevel public void opSetTextConflictMarkerFilesTemp (java.io.File, java.io.File, java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath java.io.File oldBasename java.io.File newBasename java.io.File wrkBasename org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath boolean gotRow org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void addBaseNotPresentNode (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind, org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath java.io.File reposRelPath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid long revision org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.util.SVNSkel conflict org.tmatesoft.svn.core.internal.util.SVNSkel workItems public void opSetPropertyConflictMarkerFileTemp (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath String prejBasename org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath boolean gotRow org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt private void addExcludedOrNotPresentNode (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus, org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath java.io.File reposRelpath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid long revision org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.util.SVNSkel conflict org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertBase ibb public void globalCommit (java.io.File, long, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, org.tmatesoft.svn.core.wc2.SvnChecksum, java.util.List, org.tmatesoft.svn.core.SVNProperties, boolean, boolean, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath long newRevision long changedRevision org.tmatesoft.svn.core.internal.util.SVNDate changedDate String changedAuthor org.tmatesoft.svn.core.wc2.SvnChecksum newChecksum java.util.List newChildren org.tmatesoft.svn.core.SVNProperties newDavCache boolean keepChangelist boolean noUnlock org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$Commit cb private org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo2 determineReposInfo (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File) throws org.tmatesoft.svn.core.SVNException boolean haveRow org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo2 info org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt java.io.File localParentRelpath String name org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo java.io.File reposParentRelpath public org.tmatesoft.svn.core.internal.wc17.db.Structure readPristineInfo (java.io.File) throws org.tmatesoft.svn.core.SVNException boolean hasNext String depthStr org.tmatesoft.svn.core.wc2.SvnChecksum checksum long opDepth org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo wcInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir dir org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt java.io.File relativePath org.tmatesoft.svn.core.internal.wc17.db.Structure result public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo obtainWcRoot (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo obtainWcRoot (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath boolean isAdditionMode org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public void registerExternal (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.SVNURL, java.lang.String, java.io.File, long, long) throws org.tmatesoft.svn.core.SVNException java.io.File definingAbsPath java.io.File localAbsPath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid java.io.File reposRelPath long operationalRevision long revision public void opRemoveNode (java.io.File, long, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertBase ib long reposId java.io.File reposRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.SVNException e java.io.File localAbspath long notPresentRevision org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind notPresentKind org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath public void upgradeBegin (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData, org.tmatesoft.svn.core.SVNURL, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData upgradeData org.tmatesoft.svn.core.SVNURL repositoryRootUrl String repositoryUUID org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$CreateDbInfo dbInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbNodeCheckReplaceData nodeCheckReplace (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo pdh org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$CheckReplace checkReplace static synthetic void access$100 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x1 org.tmatesoft.svn.core.internal.util.SVNSkel x2 static synthetic void access$900 (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo x0 org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x1 long x2 static synthetic boolean access$1000 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot x1 java.io.File x2 long x3 static synthetic void access$1400 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir x0 static synthetic void access$2500 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, long, boolean, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot x1 java.io.File x2 long x3 boolean x4 java.io.File x5 org.tmatesoft.svn.core.SVNURL x6 String x7 static synthetic void access$2800 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot x1 java.io.File x2 static synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo2 access$3000 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir x1 java.io.File x2 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbRelocate.class
SvnWcDbRelocate.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRelocate extends org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbShared { public void <init> () public static void relocate (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRelocate$ISvnRelocateValidator) throws org.tmatesoft.svn.core.SVNException java.io.File wcRoot org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL newUrl org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbspath org.tmatesoft.svn.core.SVNURL from org.tmatesoft.svn.core.SVNURL to org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRelocate$ISvnRelocateValidator validator org.tmatesoft.svn.core.internal.wc17.db.Structure info java.io.File relPath org.tmatesoft.svn.core.SVNURL oldUrl String uuid org.tmatesoft.svn.core.SVNURL newUrl String relPathStr String newReposRootPath org.tmatesoft.svn.core.SVNURL newReposRoot private static void relocate (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException java.io.File parentRelPath org.tmatesoft.svn.core.internal.wc17.db.Structure deletionInfo org.tmatesoft.svn.core.internal.wc17.db.Structure additionInfo org.tmatesoft.svn.core.internal.wc17.db.Structure baseInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File localAbspath org.tmatesoft.svn.core.SVNURL repositoryRootUrl org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status long oldReposId boolean haveBase org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo String reposUuid private static void relocate (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, boolean, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelPath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid boolean haveBaseNode long oldReposId long newReposId org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement stmt }
org/tmatesoft/svn/core/internal/wc17/db/Structure$StructuresPool.class
Structure.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.Structure$StructuresPool extends java.lang.Object { private java.util.concurrent.BlockingQueue objectsQueues private void <init> () public transient org.tmatesoft.svn.core.internal.wc17.db.Structure obtain (java.lang.Class, java.lang.Enum[]) Class enumClass Enum[] fields org.tmatesoft.svn.core.internal.wc17.db.Structure t public void release (org.tmatesoft.svn.core.internal.wc17.db.Structure) org.tmatesoft.svn.core.internal.wc17.db.Structure t synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.Structure$1) org.tmatesoft.svn.core.internal.wc17.db.Structure$1 x0 }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbRelocate$ISvnRelocateValidator.class
SvnWcDbRelocate.java package org.tmatesoft.svn.core.internal.wc17.db public abstract org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRelocate$ISvnRelocateValidator extends java.lang.Object { public abstract void validateRelocation (java.lang.String, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbProperties$SelectRowWithMaxOpDepth.class
SvnWcDbProperties.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbProperties$SelectRowWithMaxOpDepth extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { private long opDepth public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb long opDepth protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException long rowOpDepth }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$GatherChildren.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$GatherChildren extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { java.util.Map nodes java.util.Set conflicts java.io.File dirRelPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException long reposId org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement lockStmt java.io.File childRelPath String name org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$GatheredChildItem childItem boolean newChild long opDepth boolean haveRow org.tmatesoft.svn.core.SVNProperties properties java.io.File childRelPath String name org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$GatheredChildItem childItem org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x1 }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbProperties.class
SvnWcDbProperties.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbProperties extends org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbShared { private static final int WC__NO_REVERT_FILES static final synthetic boolean $assertionsDisabled public void <init> () public static org.tmatesoft.svn.core.SVNProperties readProperties (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File relpath org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static org.tmatesoft.svn.core.SVNProperties readPristineProperties (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException boolean haveRow org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus presence org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File relpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static void readPropertiesRecursively (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, java.util.Collection, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props java.io.File target java.io.File absolutePath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement dropCache org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement dropCache org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File relpath org.tmatesoft.svn.core.SVNDepth depth boolean baseProperties boolean pristineProperties java.util.Collection changelists org.tmatesoft.svn.core.wc2.ISvnObjectReceiver receiver org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement stmt private static void setActualProps (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelPath org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt long affectedRows public static void upgradeApplyProperties (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, java.io.File, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, int) throws org.tmatesoft.svn.core.SVNException boolean haveRow org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long affectedRows org.tmatesoft.svn.core.SVNProperties props long affectedRows org.tmatesoft.svn.core.SVNProperties diffs java.io.File itemRelPah org.tmatesoft.svn.core.internal.wc.SVNExternal externalItem org.tmatesoft.svn.core.internal.wc.SVNExternal[] arr$ int len$ int i$ org.tmatesoft.svn.core.internal.wc.SVNExternal[] externalsList org.tmatesoft.svn.core.SVNProperties props String externals org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File dirAbsPath java.io.File localRelPath org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties workingProps org.tmatesoft.svn.core.SVNProperties revertProps int originalFormat long topOpDepth long belowOpDepth org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus topPresence org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus belowPresence org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static void upgradeApplyDavCache (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, java.util.Map) throws org.tmatesoft.svn.core.SVNException java.io.File localRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt String name org.tmatesoft.svn.core.SVNProperties props java.util.Iterator names org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File dirRelPath java.util.Map cacheValues org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement selectRoot long wcId private static void cacheProperties (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbProperties$SelectRowWithMaxOpDepth query long rowOpDepth org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement query byte[] actualProps org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus presence String localRelpath long wcId String kind byte[] props org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement dropTargets org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement dropTargets org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File relpath org.tmatesoft.svn.core.SVNDepth depth boolean baseProperties boolean pristineProperties java.util.Collection changelists org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbProperties$InsertIntoPropertiesCache insertStmt org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement propertiesSelectStmt static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/StructureFields$RepositoryInfo.class
StructureFields.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$RepositoryInfo extends java.lang.Enum implements org.tmatesoft.svn.core.internal.wc17.db.Structure$TypeSafety { public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$RepositoryInfo reposRootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$RepositoryInfo reposUuid private Class valueType private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.StructureFields$RepositoryInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$RepositoryInfo[] values () public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$RepositoryInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int, java.lang.Class) Class valueType public java.lang.Class getType () static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnNodesPristineTrigger.class
SvnNodesPristineTrigger.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnNodesPristineTrigger extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.ISVNSqlJetTrigger { private java.util.Map checksumTriggerValues public void <init> () public void beforeUpdate (org.tmatesoft.sqljet.core.table.ISqlJetCursor, java.util.Map) throws org.tmatesoft.sqljet.core.SqlJetException String newChecksum String oldChecksum org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor java.util.Map values public void beforeDelete (org.tmatesoft.sqljet.core.table.ISqlJetCursor) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor String checksumValue public void beforeInsert (org.tmatesoft.sqljet.core.schema.SqlJetConflictAction, org.tmatesoft.sqljet.core.table.ISqlJetTable, java.util.Map) throws org.tmatesoft.sqljet.core.SqlJetException Object o1 Object o2 Object o3 org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor org.tmatesoft.sqljet.core.schema.SqlJetConflictAction conflictAction org.tmatesoft.sqljet.core.table.ISqlJetTable table java.util.Map newValues String newChecksumValue private void changeRefCount (java.lang.String, int) String checksum int delta private java.util.Map getTriggerValues () public void statementStarted (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.SqlJetDb db public void statementCompleted (org.tmatesoft.sqljet.core.table.SqlJetDb, org.tmatesoft.sqljet.core.SqlJetException) throws org.tmatesoft.sqljet.core.SqlJetException long refcount long delta org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor String checksum java.util.Iterator i$ java.util.Map values org.tmatesoft.sqljet.core.table.ISqlJetTable pristineTable org.tmatesoft.sqljet.core.table.SqlJetDb db org.tmatesoft.sqljet.core.SqlJetException error }
org/tmatesoft/svn/core/internal/wc17/db/SvnChangelistActualNodesTrigger.class
SvnChangelistActualNodesTrigger.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnChangelistActualNodesTrigger extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.ISVNSqlJetTrigger { private org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db public void beforeDelete (org.tmatesoft.sqljet.core.table.ISqlJetCursor) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor public void beforeUpdate (org.tmatesoft.sqljet.core.table.ISqlJetCursor, java.util.Map) throws org.tmatesoft.sqljet.core.SqlJetException java.util.Map rowValues java.util.Map rowValues org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor java.util.Map newValues org.tmatesoft.sqljet.core.table.ISqlJetTable table public void beforeInsert (org.tmatesoft.sqljet.core.schema.SqlJetConflictAction, org.tmatesoft.sqljet.core.table.ISqlJetTable, java.util.Map) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.schema.SqlJetConflictAction conflictAction org.tmatesoft.sqljet.core.table.ISqlJetTable table java.util.Map newValues org.tmatesoft.sqljet.core.table.ISqlJetTable clltable java.util.Map rowValues public void statementStarted (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.SqlJetDb db public void statementCompleted (org.tmatesoft.sqljet.core.table.SqlJetDb, org.tmatesoft.sqljet.core.SqlJetException) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.SqlJetDb db org.tmatesoft.sqljet.core.SqlJetException error }
org/tmatesoft/svn/core/internal/wc17/db/SvnExternalUpdateEditor.class
SvnExternalUpdateEditor.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnExternalUpdateEditor extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor { private long targetRevision private String name private long originalRevision private java.io.File localAbsPath private org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private org.tmatesoft.svn.core.wc2.SvnChecksum originalChecksum private java.io.File wriAbsPath private org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor deltaProcessor private org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WritableBaseInfo currentBase private org.tmatesoft.svn.core.SVNProperties davPropChanges private org.tmatesoft.svn.core.SVNProperties entryPropChanges private org.tmatesoft.svn.core.SVNProperties regularPropChanges private org.tmatesoft.svn.core.SVNURL url private org.tmatesoft.svn.core.SVNURL reposRootUrl private long changedRev private String changedAuthor private org.tmatesoft.svn.core.internal.util.SVNDate changedDate private String[] extPatterns private boolean useCommitTimes private String reposUuid private java.io.File recordAncestorAbspath private java.io.File recordedReposRelPath private long recordedPegRevision private long recordedRevision private org.tmatesoft.svn.core.wc2.SvnChecksum newMd5Checksum private org.tmatesoft.svn.core.wc2.SvnChecksum newSha1Checksum private boolean fileClosed public static org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor createEditor (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, java.lang.String, boolean, java.lang.String[], java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath java.io.File wriAbsPath org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid boolean useCommitTimes String[] preservedExts java.io.File recordAncestorAbsPath org.tmatesoft.svn.core.SVNURL recordedUrl org.tmatesoft.svn.core.wc.SVNRevision recordedPegRev org.tmatesoft.svn.core.wc.SVNRevision recordedRev org.tmatesoft.svn.core.internal.wc17.db.SvnExternalUpdateEditor editor public void <init> () public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path String copyFromPath long copyFromRevision String name public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String path long revision String name org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnChecksum expectedMd5Checksum org.tmatesoft.svn.core.wc2.SvnChecksum actualMd5Checksum NumberFormatException nfe org.tmatesoft.svn.core.SVNPropertyValue value String propName java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo mergeInfo org.tmatesoft.svn.core.SVNProperties newActualProperties org.tmatesoft.svn.core.SVNProperties newPristineProperties org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo outcome boolean isModified org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNEventAction action String mimeType org.tmatesoft.svn.core.wc.SVNEvent event String path String expectedMd5Digest boolean added java.io.File reposRelPath org.tmatesoft.svn.core.wc2.SvnChecksum newChecksum org.tmatesoft.svn.core.SVNProperties actualProperties org.tmatesoft.svn.core.SVNProperties baseProperties org.tmatesoft.svn.core.internal.util.SVNSkel allWorkItems org.tmatesoft.svn.core.wc.SVNStatusType contentState org.tmatesoft.svn.core.wc.SVNStatusType propState org.tmatesoft.svn.core.SVNProperties newActualProperties org.tmatesoft.svn.core.SVNProperties newPristineProperties boolean installPristine boolean obstructed public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnChecksum originalMd5 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnChecksum expectedChecksum org.tmatesoft.svn.core.wc2.SvnChecksum originalMd5 String path String baseChecksumDigest java.io.InputStream source public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public long getTargetRevision () }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$SVNWCDbStatus.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus Normal public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus Added public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus MovedHere public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus Copied public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus Deleted public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus Obstructed public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus ObstructedDelete public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus ObstructedAdd public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus ServerExcluded public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus Excluded public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus NotPresent public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus Incomplete public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus BaseDeleted private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus[] values () public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$CreateDbInfo.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$CreateDbInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long reposId public long wcId private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x0 }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$2.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$2 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbStatus static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc17/db/StructureFields$NodeOriginInfo.class
StructureFields.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeOriginInfo extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeOriginInfo isCopy public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeOriginInfo revision public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeOriginInfo reposRelpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeOriginInfo reposRootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeOriginInfo reposUuid public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeOriginInfo copyRootAbsPath private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeOriginInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeOriginInfo[] values () public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeOriginInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbRevert$3.class
SvnWcDbRevert.java package org.tmatesoft.svn.core.internal.wc17.db final org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$3 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String rowPath String selectPath protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/StructureFields$DeletionInfo.class
StructureFields.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$DeletionInfo extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$DeletionInfo baseDelRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$DeletionInfo movedToRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$DeletionInfo workDelRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$DeletionInfo workDelAbsPath private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.StructureFields$DeletionInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$DeletionInfo[] values () public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$DeletionInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$WCDbDeletionInfo$DeletionInfoField.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo$DeletionInfoField extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo$DeletionInfoField baseDelAbsPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo$DeletionInfoField baseReplaced public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo$DeletionInfoField movedToAbsPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo$DeletionInfoField workDelAbsPath private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo$DeletionInfoField[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo$DeletionInfoField[] values () public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo$DeletionInfoField valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$InsertLock.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertLock extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { public java.io.File localAbsPath public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock lock final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x1 }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$SVNWCDbInfo.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind public long revnum public java.io.File reposRelpath public org.tmatesoft.svn.core.SVNURL reposRootUrl public String reposUuid public long changedRev public String changedAuthor public org.tmatesoft.svn.core.internal.util.SVNDate changedDate public org.tmatesoft.svn.core.SVNDepth depth public long recordedSize public long recordedModTime public String changelist public boolean conflicted public boolean special public boolean opRoot public boolean hasChecksum public boolean hadProps public boolean propsMod public boolean haveBase public boolean haveMoreWork public boolean locked public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock lock public boolean incomplete public void <init> () public void load (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo) org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info }
org/tmatesoft/svn/core/internal/wc17/db/StructureFields$PristineInfo.class
StructureFields.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo extends java.lang.Enum implements org.tmatesoft.svn.core.internal.wc17.db.Structure$TypeSafety { public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo status public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo kind public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo changed_rev public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo changed_author public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo changed_date public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo depth public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo checksum public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo target public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo hadProps public static final java.util.Collection all public static final java.util.Collection defaults private Class valueType private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo[] values () public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$PristineInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int, java.lang.Class) Class valueType public java.lang.Class getType () static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$MakeCopy.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$MakeCopy extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath long opDepth static final synthetic boolean $assertionsDisabled final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus workingStatus long workingOpDepth org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$MakeCopy cbt org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parseDir String name java.util.Iterator i$ org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt boolean haveRow boolean removeWorking boolean addWorkingBaseDeleted java.util.List children synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x1 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$WCDbDeletionInfo.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo extends java.lang.Object { public java.io.File baseDelAbsPath public boolean baseReplaced public java.io.File movedToAbsPath public java.io.File workDelAbsPath public void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbPristines$1.class
SvnWcDbPristines.java package org.tmatesoft.svn.core.internal.wc17.db synthetic org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbPristines$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbCopy$SelectNodeToCopy.class
SvnWcDbCopy.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$SelectNodeToCopy extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { private long limit private long depth public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb long depth protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbRelocate$RecursiveUpdateNodeRepo.class
SvnWcDbRelocate.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRelocate$RecursiveUpdateNodeRepo extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { private java.util.Map updateValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String queryPath String rowPath long queryReposId }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$SetRevRelpath$1.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$SetRevRelpath$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { final synthetic long val$reposId final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$SetRevRelpath this$1 void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$SetRevRelpath, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum, long) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbReader.class
SvnWcDbReader.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbReader extends org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbShared { public void <init> () public static java.util.Collection getServerExcludedNodes (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localPath java.io.File absPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File path org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb long wcId java.io.File localRelPath java.util.Collection result org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static java.util.Collection getNotPresentDescendants (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File parentPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb long wcId java.io.File localRelPath java.util.Collection result org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static transient org.tmatesoft.svn.core.internal.wc17.db.Structure readNodeReplaceInfo (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbReader$ReplaceInfo[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus baseStatus long opDepth boolean haveRow long parentOpDepth boolean haveRow org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus replacedStatus long replacedOpDepth org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbReader$ReplaceInfo[] fields org.tmatesoft.svn.core.internal.wc17.db.Structure result org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb long wcId java.io.File localRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static long[] getMinAndMaxRevisions (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb long wcId java.io.File localRelpath long[] revs org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement stmt public static java.util.Map readWalkerChildrenInfo (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File, java.util.Map) throws org.tmatesoft.svn.core.SVNException java.io.File childPath String childName org.tmatesoft.svn.core.internal.wc17.db.Structure childInfo long opDepth org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File localAbspath java.util.Map children org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb long wcId org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static boolean hasSwitchedSubtrees (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File) throws org.tmatesoft.svn.core.SVNException long opDepth org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e String rowReposRelpath String rowParentRelpath String expectedReposRelpath long opDepth String rowRelPath boolean fileExternal org.tmatesoft.sqljet.core.table.ISqlJetTable nodesTable String parentRelPath java.util.Map parents boolean matched org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb long wcId String localRelPathStr org.tmatesoft.sqljet.core.table.SqlJetDb sqljetDb String parentReposRelpath org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor public static boolean hasLocalModifications (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e long opDepth String rowRelPath org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e String rowRelPath org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e java.io.File localFile org.tmatesoft.svn.core.internal.wc.SVNFileType ft long size long date String presence String kind String rowRelPath org.tmatesoft.sqljet.core.table.ISqlJetTable nodesTable org.tmatesoft.sqljet.core.table.ISqlJetTable actualNodesTable org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb long wcId String localRelPathStr org.tmatesoft.sqljet.core.table.SqlJetDb sqljetDb org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor boolean matched public static boolean isSparseCheckout (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus presence org.tmatesoft.svn.core.SVNDepth depth long opDepth String rowRelPath boolean fileExternal org.tmatesoft.sqljet.core.table.ISqlJetTable nodesTable boolean matched org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb long wcId String localRelPathStr org.tmatesoft.sqljet.core.table.SqlJetDb sqljetDb org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$Delete.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$Delete extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root public java.io.File localRelPath public long deleteDepth public org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException java.io.File absentPath org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo infoBelow long selectDepth org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement insertStmt org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt boolean addWork boolean refetchDepth long selectDepth org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement deleteStmt synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x1 }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$BumpRevisionPostUpdate.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { private org.tmatesoft.svn.core.SVNDepth depth private java.io.File newReposRelPath private org.tmatesoft.svn.core.SVNURL newReposRootURL private String newReposUUID private long newRevision private java.util.Collection exludedRelPaths private java.io.File localRelPath private java.io.File wcRoot private org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot dbWcRoot final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo long reposId private void bumpNodeRevision (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo, long, java.io.File, long, org.tmatesoft.svn.core.SVNDepth, java.util.Collection, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File childReposRelPath java.io.File childLocalRelPath String child java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File wcRoot java.io.File localRelPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo long reposId java.io.File newReposRelPath long newRevision org.tmatesoft.svn.core.SVNDepth depth java.util.Collection exludedRelPaths boolean isRoot boolean skipWhenDir boolean setReposRelPath org.tmatesoft.svn.core.SVNDepth depthBelowHere java.util.Map children synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x1 static synthetic org.tmatesoft.svn.core.SVNDepth access$1602 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate, org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate x0 org.tmatesoft.svn.core.SVNDepth x1 static synthetic java.io.File access$1702 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate, java.io.File) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate x0 java.io.File x1 static synthetic org.tmatesoft.svn.core.SVNURL access$1802 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate x0 org.tmatesoft.svn.core.SVNURL x1 static synthetic java.lang.String access$1902 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate, java.lang.String) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate x0 String x1 static synthetic long access$2002 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate, long) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate x0 long x1 static synthetic java.io.File access$2102 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate, java.io.File) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate x0 java.io.File x1 static synthetic java.io.File access$2202 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate, java.io.File) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate x0 java.io.File x1 static synthetic java.util.Collection access$2302 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate, java.util.Collection) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate x0 java.util.Collection x1 static synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot access$2402 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BumpRevisionPostUpdate x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot x1 }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDbRoot.class
SVNWCDbRoot.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot extends java.lang.Object { private org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db private java.io.File absPath private org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb private long wcId private int format private java.util.List ownedLocks static final synthetic boolean $assertionsDisabled public void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long, int, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File absPath org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb long wcId int format boolean autoUpgrade boolean enforceEmptyWQ public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb getDb () public java.io.File getAbsPath () public org.tmatesoft.svn.core.internal.db.SVNSqlJetDb getSDb () public long getWcId () public int getFormat () public java.util.List getOwnedLocks () public void close () throws org.tmatesoft.svn.core.SVNException public java.io.File getAbsPath (java.io.File) java.io.File localRelPath public void ensureNoUnfinishedTransactions () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err public java.io.File computeRelPath (java.io.File) java.io.File localAbsPath String relativePath static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$SVNWCDbNodeCheckReplaceData.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbNodeCheckReplaceData extends java.lang.Object { public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbNodeCheckReplaceData NO_REPLACE public final boolean replaceRoot public final boolean replace public final boolean baseReplace public void <init> (boolean, boolean, boolean) boolean replaceRoot boolean replace boolean baseReplace static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbCopy$CopyInfo.class
SvnWcDbCopy.java package org.tmatesoft.svn.core.internal.wc17.db final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$CopyInfo extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$CopyInfo copyFromId public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$CopyInfo copyFromRelpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$CopyInfo copyFromRev public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$CopyInfo status public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$CopyInfo kind public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$CopyInfo opRoot public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$CopyInfo haveWork private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$CopyInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$CopyInfo[] values () public static org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$CopyInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$SVNWCDbOpenMode.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode Default public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode ReadOnly public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode ReadWrite private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode[] values () public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbShared$1.class
SvnWcDbShared.java package org.tmatesoft.svn.core.internal.wc17.db final org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbShared$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic boolean val$omitDefaultPort final synthetic java.util.Map val$newPropertyValues final synthetic org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore val$store void <init> (boolean, java.util.Map, org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String newValue org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNProperties object String externalsPropertyValue public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc17/db/SvnExternalFileReporter.class
SvnExternalFileReporter.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnExternalFileReporter extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { private org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private java.io.File localAbsPath private boolean restoreFiles private boolean useCommitTimes public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, boolean, boolean) org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath boolean restoreFiles boolean useCommitTimes public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNFileType ft org.tmatesoft.svn.core.SVNURL url String lockToken org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.io.ISVNReporter reporter org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$BaseRemove.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$BaseRemove extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { public long wcId public java.io.File localRelpath final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db boolean haveRow org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt private void retractParentDelete (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x1 }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbCopy$InsertWorkingNodeCopy.class
SvnWcDbCopy.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$InsertWorkingNodeCopy extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$SelectNodeToCopy select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb boolean base public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb long depth protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$WCDbBaseInfo$BaseInfoField.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField status public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField kind public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField revision public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField reposRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField reposRootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField reposUuid public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField changedRev public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField changedDate public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField changedAuthor public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField lastModTime public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField depth public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField checksum public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField translatedSize public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField target public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField lock public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField updateRoot public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField reposId private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField[] values () public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$SVNWCDbLock.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock extends java.lang.Object { public String token public String owner public String comment public org.tmatesoft.svn.core.internal.util.SVNDate date public void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbShared.class
SvnWcDbShared.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbShared extends java.lang.Object { static final synthetic boolean $assertionsDisabled public void <init> () public static void begingReadTransaction (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root public static void begingWriteTransaction (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root public static void commitTransaction (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root public static void rollbackTransaction (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root protected static void nodeNotFound (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File absolutePath org.tmatesoft.svn.core.SVNErrorMessage err protected static boolean doesNodeExists (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcDbRoot java.io.File relpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt protected static void nodeNotFound (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File relPath protected static void sqliteError (org.tmatesoft.sqljet.core.SqlJetException) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err protected static void collectTargets (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.SVNDepth, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File relpath org.tmatesoft.svn.core.SVNDepth depth java.util.Collection changelists org.tmatesoft.svn.core.internal.db.SVNSqlJetDb tmpDb org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static org.tmatesoft.svn.core.internal.wc17.db.Structure scanAddition (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo reposInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo reposInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.Structure additionInfo protected static transient org.tmatesoft.svn.core.internal.wc17.db.Structure scanAddition (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.Structure baseInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus presence java.io.File reposPrefixPath int i long opDepth org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo[] fields org.tmatesoft.svn.core.internal.wc17.db.Structure info java.io.File buildRelpath java.io.File currentRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static org.tmatesoft.svn.core.internal.wc17.db.Structure scanDeletion (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath protected static org.tmatesoft.svn.core.internal.wc17.db.Structure scanDeletion (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus basePresence org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus workPresence boolean haveBase org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement baseStmt org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus childPresence boolean childHasBase boolean foundMovedTo long opDepth long localOpDepth java.io.File currentRelPath java.io.File childRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static transient org.tmatesoft.svn.core.internal.wc17.db.Structure getBaseInfo (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcroot java.io.File localRelPath org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[] fields public static transient org.tmatesoft.svn.core.internal.wc17.db.Structure getBaseInfo (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[] fields org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsed org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath protected static transient org.tmatesoft.svn.core.internal.wc17.db.Structure getDepthInfo (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, long, org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement lockStmt org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock lock org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo String depth_str org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind node_kind org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcroot java.io.File localRelPath long opDepth org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[] fields org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt protected static transient org.tmatesoft.svn.core.internal.wc17.db.Structure readInfo (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot java.io.File localRelPath org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[] fields protected static transient org.tmatesoft.svn.core.internal.wc17.db.Structure readInfo (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, boolean, org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e byte[] props org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmtBaseLock org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock lock long opDepth org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind nodeKind org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err boolean haveInfo boolean haveActual org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot java.io.File localRelPath boolean isAdditionMode org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[] fields org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmtInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmtActual public static void canonicalizeURLs (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, boolean, org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore, boolean) throws org.tmatesoft.svn.core.SVNException String newUrl String oldUrl org.tmatesoft.svn.core.SVNURL canonicalUrl org.tmatesoft.sqljet.core.table.ISqlJetTable repositoryTable org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor org.tmatesoft.sqljet.core.SqlJetException e java.io.File path java.util.Iterator i$ java.util.Map newPropertyValues org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot boolean updateExternalProperties org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore store boolean omitDefaultPort java.util.Map values static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$SetRevRelpath.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$SetRevRelpath extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public java.io.File localRelpath public long rev public boolean setReposRelpath public java.io.File reposRelpath public org.tmatesoft.svn.core.SVNURL reposRootUrl public String reposUuid final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt long reposId org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x1 }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$WCDbInfo$InfoField.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField status public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField kind public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField revision public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField reposRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField reposId public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField reposRootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField reposUuid public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField changedRev public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField changedDate public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField changedAuthor public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField lastModTime public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField depth public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField checksum public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField translatedSize public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField target public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField changelist public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField originalReposRelpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField originalRootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField originalUuid public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField originalRevision public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField textMod public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField propsMod public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField conflicted public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField lock public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField haveBase public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField haveWork public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField opRoot public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField originalReposId public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField hadProps public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField haveMoreWork private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField[] values () public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbRevert$4.class
SvnWcDbRevert.java package org.tmatesoft.svn.core.internal.wc17.db final org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$4 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String selectPath String rowPath }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$SVNWCDbUpgradeData.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData extends java.lang.Object { public java.io.File rootAbsPath public long repositoryId public long workingCopyId public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root public void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$1.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db synthetic org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$1 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbKind static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbStatus static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc17/db/StructureFields$WalkerChildInfo.class
StructureFields.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$WalkerChildInfo extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$WalkerChildInfo status public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$WalkerChildInfo kind private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.StructureFields$WalkerChildInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$WalkerChildInfo[] values () public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$WalkerChildInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbRelocate$UpdateLockReposId.class
SvnWcDbRelocate.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRelocate$UpdateLockReposId extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { private java.util.Map updateValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException long queryReposId }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbExternals$InsertExternalStatement.class
SvnWcDbExternals.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbExternals$InsertExternalStatement extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$WCDbInfo.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind public long revision public java.io.File reposRelPath public org.tmatesoft.svn.core.SVNURL reposRootUrl public String reposUuid public long changedRev public org.tmatesoft.svn.core.internal.util.SVNDate changedDate public String changedAuthor public long lastModTime public long reposId public org.tmatesoft.svn.core.SVNDepth depth public org.tmatesoft.svn.core.wc2.SvnChecksum checksum public long translatedSize public java.io.File target public String changelist public java.io.File originalReposRelpath public org.tmatesoft.svn.core.SVNURL originalRootUrl public String originalUuid public long originalRevision public long originalReposId public boolean textMod public boolean propsMod public boolean conflicted public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock lock public boolean haveBase public boolean haveWork public boolean opRoot public boolean hadProps public boolean haveMoreWork public void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDbRoot$WCLock.class
SVNWCDbRoot.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot$WCLock extends java.lang.Object { public java.io.File localRelpath public int levels public void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbChangelist.class
SvnWcDbChangelist.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbChangelist extends org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbShared { public void <init> () public static void cleanupPristine (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localAbsPath public static void setChangelist (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, java.lang.String, java.lang.String[], org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbChangelist$Changelist cl org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement dropList org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement dropList org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelPath String changelistName String[] changeLists org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler }
org/tmatesoft/svn/core/internal/wc17/db/SvnRevertNodesTrigger.class
SvnRevertNodesTrigger.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnRevertNodesTrigger extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.ISVNSqlJetTrigger { private org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db public void beforeDelete (org.tmatesoft.sqljet.core.table.ISqlJetCursor) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor org.tmatesoft.sqljet.core.table.ISqlJetTable table java.util.Map rowValues public void beforeUpdate (org.tmatesoft.sqljet.core.table.ISqlJetCursor, java.util.Map) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor java.util.Map newValues public void beforeInsert (org.tmatesoft.sqljet.core.schema.SqlJetConflictAction, org.tmatesoft.sqljet.core.table.ISqlJetTable, java.util.Map) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.schema.SqlJetConflictAction conflictAction org.tmatesoft.sqljet.core.table.ISqlJetTable table java.util.Map newValues public void statementStarted (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.SqlJetDb db public void statementCompleted (org.tmatesoft.sqljet.core.table.SqlJetDb, org.tmatesoft.sqljet.core.SqlJetException) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.SqlJetDb db org.tmatesoft.sqljet.core.SqlJetException error }
org/tmatesoft/svn/core/internal/wc17/db/StructureFields$ExternalNodeInfo.class
StructureFields.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo kind public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo presence public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo reposId public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo reposRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo revision public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo reposRootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo reposUuid public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo properties public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo changedRevision public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo changedDate public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo changedAuthor public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo davCache public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo checksum public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo target public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo recordAncestorRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo recordedReposRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo recordedPegRevision public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo recordedRevision public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo conflict public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo updateActualProperties public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo newActualProperties public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo keepRecordedInfo public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo workItems private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo[] values () public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$WCDbRepositoryInfo$RepositoryInfoField.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo$RepositoryInfoField extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo$RepositoryInfoField relPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo$RepositoryInfoField rootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo$RepositoryInfoField uuid private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo$RepositoryInfoField[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo$RepositoryInfoField[] values () public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo$RepositoryInfoField valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/StructureFields.class
StructureFields.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.StructureFields extends java.lang.Object { public void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbExternals.class
SvnWcDbExternals.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbExternals extends org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbShared { public void <init> () public static void addExternalDir (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, java.io.File, java.io.File, long, long, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File localAbspath java.io.File wriPath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid java.io.File recordAncestorAbspath java.io.File recordedReposRelPath long recordedPegRevision long recordedRevision org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.Structure externalInfo public static void insertExternalNode (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.Structure) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertBase insertBase org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.Structure info long reposId boolean updateRoot org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement stmt public static void removeExternal (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CheckWCRootInfo wcRootInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File wriAbsPath java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind public static void removeExternalNode (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath java.io.File wriAbsPath org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement deleteExternal public static transient org.tmatesoft.svn.core.internal.wc17.db.Structure readExternal (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath java.io.File wriAbsPath org.tmatesoft.svn.core.internal.wc17.db.StructureFields$ExternalNodeInfo[] fields org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement selectExternalInfo public static void addExternalFile (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, org.tmatesoft.svn.core.wc2.SvnChecksum, org.tmatesoft.svn.core.SVNProperties, java.io.File, java.io.File, long, long, boolean, org.tmatesoft.svn.core.SVNProperties, boolean, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath java.io.File wriAbsPath java.io.File reposRelPath org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid long targetRevision org.tmatesoft.svn.core.SVNProperties newPristineProperties long changedRev org.tmatesoft.svn.core.internal.util.SVNDate changedDate String changedAuthor org.tmatesoft.svn.core.wc2.SvnChecksum newChecksum org.tmatesoft.svn.core.SVNProperties davCache java.io.File recordAncestorAbspath java.io.File recordedReposRelPath long recordedPegRevision long recordedRevision boolean updateActualProperties org.tmatesoft.svn.core.SVNProperties newActualProperties boolean keepRecordedInfo org.tmatesoft.svn.core.internal.util.SVNSkel allWorkItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.Structure externalInfo }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbRevert$2.class
SvnWcDbRevert.java package org.tmatesoft.svn.core.internal.wc17.db final org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$2 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$SVNWCDbKind.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind Dir public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind File public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind Symlink public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind Unknown private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind[] values () public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind valueOf (java.lang.String) String name private void <init> (java.lang.String, int) public org.tmatesoft.svn.core.SVNNodeKind toNodeKind () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err public org.tmatesoft.svn.core.SVNNodeKind toNodeKind (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status boolean showHidden org.tmatesoft.svn.core.SVNNodeKind nKind static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbCopy.class
SvnWcDbCopy.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy extends org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbShared { public void <init> () public static void copyFile (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.wc2.SvnChecksum, org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException long reposId org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.SVNProperties props long changedRev org.tmatesoft.svn.core.internal.util.SVNDate changedDate String changedAuthor java.io.File originalReposRelPath org.tmatesoft.svn.core.SVNURL originalRootUrl String originalUuid long originalRevision org.tmatesoft.svn.core.wc2.SvnChecksum checksum org.tmatesoft.svn.core.internal.util.SVNSkel conflict org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertWorking iw long[] depths public static void copyDir (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, java.util.List, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException long reposId org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.SVNProperties props long changedRev org.tmatesoft.svn.core.internal.util.SVNDate changedDate String changedAuthor java.io.File originalReposRelPath org.tmatesoft.svn.core.SVNURL originalRootUrl String originalUuid long originalRevision java.util.List children org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.util.SVNSkel conflict org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertWorking iw long[] depths private static void copyShadowedLayer (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, long, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, long, long, long, java.io.File, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo reposInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertWorking iw long nodeRevision long nodeReposId java.io.File nodeReposRelPath org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err2 org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertWorking iw org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertWorking iw java.io.File srcChildRelpath java.io.File dstChildRelpath java.io.File childReposRelPath String name java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir srcPdh java.io.File srcRelpath long srcOpDepth org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir dstPdh java.io.File dstRelpath long dstOpDepth long delOpDepth long reposId java.io.File reposRelPath long revision org.tmatesoft.svn.core.internal.wc17.db.Structure depthInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus dstPresence java.util.List children public static void copyShadowedLayer (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File srcParentRelPath java.io.File dstParentRelPath long srcOpDepth long dstOpDepth long delOpDepth org.tmatesoft.svn.core.internal.wc17.db.Structure depthInfo java.io.File reposRelpath org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir srcPdh java.io.File localSrcRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir dstPdh java.io.File localDstRelpath boolean dstLocked public static void copy (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir srcPdh java.io.File localSrcRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir dstPdh java.io.File localDstRelpath org.tmatesoft.svn.core.internal.util.SVNSkel workItems boolean dstLocked private static void doCopy (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure dstInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus dstStatus org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err1 long opDepth String childName java.util.Iterator i$ java.util.List fileChildren java.io.File dstParentRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir srcPdh java.io.File localSrcRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir dstPdh java.io.File localDstRelpath org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc17.db.Structure copyInfo long[] dstOpDepths org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus dstPresence boolean opRoot org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind java.util.List children private static void crossDbCopy (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus, long, long, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind, java.util.List, long, java.io.File, long) throws org.tmatesoft.svn.core.SVNException String name java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir srcPdh java.io.File localSrcRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir dstPdh java.io.File localDstRelpath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus dstPresence long dstOpDepth long dstNpOpDepth org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind java.util.List children long copyFromId java.io.File copyFromRelpath long copyFromRev org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertWorking iw java.util.List childrenAsFiles private static void copyActual (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir, java.io.File) throws org.tmatesoft.svn.core.SVNException String changelist byte[] properties org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir srcPdh java.io.File localSrcRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir dstPdh java.io.File localDstRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt private static org.tmatesoft.svn.core.internal.wc17.db.Structure getCopyInfo (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File parentRelpath String name org.tmatesoft.svn.core.internal.wc17.db.Structure parentCopyInfo java.io.File opRootRelPath java.io.File copyFromRelPath java.io.File relPath org.tmatesoft.svn.core.internal.wc17.db.Structure additionInfo java.io.File parentDelRelpath org.tmatesoft.svn.core.internal.wc17.db.Structure additionInfo java.io.File opRootRelPath java.io.File copyFromRelPath java.io.File relPath org.tmatesoft.svn.core.internal.wc17.db.Structure baseInfo org.tmatesoft.svn.core.internal.wc17.db.Structure deletionInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot java.io.File localRelPath org.tmatesoft.svn.core.internal.wc17.db.Structure result org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status java.io.File reposRelpath long revision private static long[] getOpDepthForCopy (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, long, java.io.File, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status long parentCopyFromReposId java.io.File parentCopyFromRelpath long parentCopyFromRevision long parentOpDepth org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot java.io.File localRelpath long copyFromReposId java.io.File copyFromRelpath long copyFromRevision long[] result long minOpDepth long incompleteOpDepth org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt java.io.File parentRelpath private static long getOpDepthOf (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot java.io.File localRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbChangelist$Changelist.class
SvnWcDbChangelist.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbChangelist$Changelist extends java.lang.Object { String changelistName String[] changeLists org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler java.io.File localRelPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot private void <init> () public void setChangelist () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement updateChangelist String localRelPath java.util.Iterator i$ org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt java.util.ArrayList targetList org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SvnChangelistActualNodesTrigger changelistTrigger public void populateTargetsTree () throws org.tmatesoft.svn.core.SVNException String changelist int i org.tmatesoft.svn.core.SVNErrorMessage err boolean exists long affectedRows org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public void notifyChangelist () throws org.tmatesoft.svn.core.SVNException String notifyRelPath java.io.File notifyAbspath Long notifyAction String changelistName org.tmatesoft.svn.core.wc.SVNEventAction eventAction org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbChangelist$1) org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbChangelist$1 x0 }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$WCDbRepositoryInfo.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo extends java.lang.Object { public java.io.File relPath public org.tmatesoft.svn.core.SVNURL rootUrl public String uuid public void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$StartDirectoryUpdate.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$StartDirectoryUpdate extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { public long wcId public java.io.File localRelpath public long newRevision public java.io.File newReposRelpath final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x1 }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$WCDbBaseInfo.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind public long revision public java.io.File reposRelPath public org.tmatesoft.svn.core.SVNURL reposRootUrl public String reposUuid public long reposId public long changedRev public org.tmatesoft.svn.core.internal.util.SVNDate changedDate public String changedAuthor public org.tmatesoft.svn.core.internal.util.SVNDate lastModTime public org.tmatesoft.svn.core.SVNDepth depth public org.tmatesoft.svn.core.wc2.SvnChecksum checksum public long translatedSize public java.io.File target public boolean updateRoot public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock lock public void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbChangelist$1.class
SvnWcDbChangelist.java package org.tmatesoft.svn.core.internal.wc17.db synthetic org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbChangelist$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$SetTreeConflict.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$SetTreeConflict extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { public java.io.File localRelpath public long wcId public java.io.File parentRelpath public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException String treeConflictData org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db boolean haveRow org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt String treeConflictData synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x1 }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbStatementUtil.class
SvnWcDbStatementUtil.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbStatementUtil extends java.lang.Object { private static final java.util.EnumMap presenceMap private static final java.util.HashMap presenceMap2 private static final java.util.EnumMap kindMap private static final java.util.HashMap kindMap2 public void <init> () public static transient org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement bindf (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.String, java.lang.Object[]) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt String format Object[] binds public static java.lang.String getPresenceText (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus) org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status public static java.lang.String getKindText (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind) org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus parsePresence (java.lang.String) String presenceString public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind parseKind (java.lang.String) String kindString public static org.tmatesoft.svn.core.SVNDepth parseDepth (java.lang.String) String depthStr org.tmatesoft.svn.core.SVNDepth d public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus getColumnPresence (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus getColumnPresence (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind getColumnKind (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static org.tmatesoft.svn.core.SVNProperties getColumnProperties (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static boolean hasColumnProperties (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static java.lang.String getColumnText (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static java.io.File getColumnPath (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f String path public static org.tmatesoft.svn.core.SVNDepth getColumnDepth (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static boolean isColumnNull (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static long getColumnInt64 (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static byte[] getColumnBlob (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static boolean getColumnBoolean (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static long getColumnRevNum (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static long getTranslatedSize (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static java.lang.Enum getColumnToken (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f java.util.Map tokenMap public static org.tmatesoft.svn.core.wc2.SvnChecksum getColumnChecksum (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f String str public static org.tmatesoft.svn.core.internal.util.SVNDate getColumnDate (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum f public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock getLockFromColumns (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement, java.lang.Enum, java.lang.Enum, java.lang.Enum, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt Enum tokenField Enum owner Enum comment Enum date org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock lock public static void reset (org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/StructureFields$AdditionInfo.class
StructureFields.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo status public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo opRootAbsPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo opRootRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo reposRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo reposId public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo reposRootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo reposUuid public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo originalReposRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo originalReposId public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo originalRootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo originalUuid public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo originalRevision private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo[] values () public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$AdditionInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbPristines.class
SvnWcDbPristines.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbPristines extends org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbShared { private static final String PRISTINE_STORAGE_EXT static final synthetic boolean $assertionsDisabled public void <init> () public static void cleanupPristine (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnChecksum sha1_checksum org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localAbsPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement selectList private static void removePristineIfUnreferenced (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localAbsPath org.tmatesoft.svn.core.wc2.SvnChecksum sha1_checksum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbPristines$RemoveUnreferencedPristine rup public static java.io.File getPristineTempDir (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File wcRootAbsPath public static java.io.File getPristineFuturePath (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, org.tmatesoft.svn.core.wc2.SvnChecksum) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum public static java.io.File getPristineFileName (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, org.tmatesoft.svn.core.wc2.SvnChecksum, boolean) java.io.File subdirAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum boolean createSubdir java.io.File base_dir_abspath String hexdigest String subdir public static boolean checkPristine (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File pristineAbspath org.tmatesoft.svn.core.SVNNodeKind kindOnDisk org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum boolean haveRow org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static org.tmatesoft.svn.core.wc2.SvnChecksum getPristineSHA1 (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err boolean have_row org.tmatesoft.svn.core.wc2.SvnChecksum sha1_checksum org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.wc2.SvnChecksum md5Checksum org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static java.io.File getPristinePath (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum boolean present public static void removePristine (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt boolean haveRow private static void pristineRemove (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException java.io.File pristineAbspath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static void installPristine (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File tempfileAbspath org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum org.tmatesoft.svn.core.wc2.SvnChecksum md5Checksum java.io.File pristineAbspath long size org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static java.io.InputStream readPristine (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File wcRootAbsPath org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum java.io.File pristine_abspath public static void fixPristinesRefCount (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot) throws org.tmatesoft.svn.core.SVNException String checksum long opDepth java.util.Map value long refCount String checksum java.util.Iterator checksums org.tmatesoft.sqljet.core.table.ISqlJetTable nodesTable org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor org.tmatesoft.sqljet.core.table.ISqlJetTable pTable org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.util.Map refcountTable public static void checkPristineChecksumRefcounts (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum Integer refCountInteger Integer correctRefCountInteger int refCount int correctRefCount java.util.Map$Entry entry java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum java.util.Map$Entry entry java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.util.Map correctChecksumRefcounts java.util.Map checksumRefcountsFromTable private static java.util.Map calculateCorrectChecksumRefcounts (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot) throws org.tmatesoft.svn.core.SVNException String sha1ChecksumString org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum Integer refCount int incrementedRefCount org.tmatesoft.sqljet.core.table.ISqlJetTable nodesTable org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor org.tmatesoft.sqljet.core.SqlJetException ignore org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException ignore org.tmatesoft.sqljet.core.SqlJetException ignore org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.util.Map checksumToRefCount org.tmatesoft.sqljet.core.table.SqlJetDb db private static java.util.Map loadChecksumsRefcountsFromTable (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot) throws org.tmatesoft.svn.core.SVNException String sha1ChecksumString org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum long refcount org.tmatesoft.sqljet.core.table.ISqlJetTable pristineTable org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor org.tmatesoft.sqljet.core.SqlJetException ignore org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException ignore org.tmatesoft.sqljet.core.SqlJetException ignore org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.util.Map checksumToRefCount org.tmatesoft.sqljet.core.table.SqlJetDb db static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/Structure$TypeSafety.class
Structure.java package org.tmatesoft.svn.core.internal.wc17.db public abstract org.tmatesoft.svn.core.internal.wc17.db.Structure$TypeSafety extends java.lang.Object { public abstract java.lang.Class getType () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbRevert$RevertInfo.class
SvnWcDbRevert.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$RevertInfo extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$RevertInfo reverted public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$RevertInfo conflictOld public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$RevertInfo conflictNew public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$RevertInfo conflictWorking public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$RevertInfo propReject public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$RevertInfo copiedHere public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$RevertInfo kind private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$RevertInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$RevertInfo[] values () public static org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$RevertInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/Structure.class
Structure.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.Structure extends java.lang.Object { private static final org.tmatesoft.svn.core.internal.wc17.db.Structure$StructuresPool globalPool private static final Object LONG_MARKER private static final Object BOOLEAN_MARKER private Class enumClass private long requestedFields private Object[] nonPrimitiveValues private long[] longValues private Enum[] copySource static final synthetic boolean $assertionsDisabled public static transient org.tmatesoft.svn.core.internal.wc17.db.Structure obtain (java.lang.Class, java.lang.Enum[]) Class e Enum[] fields public static org.tmatesoft.svn.core.internal.wc17.db.Structure obtain (java.lang.Class) Class e private static void release (org.tmatesoft.svn.core.internal.wc17.db.Structure) org.tmatesoft.svn.core.internal.wc17.db.Structure e private transient void <init> (java.lang.Class, java.lang.Enum[]) Class enumClass Enum[] fields public long lng (java.lang.Enum) Enum e public java.lang.String text (java.lang.Enum) Enum e public boolean is (java.lang.Enum) Enum e public boolean hasValue (java.lang.Enum) Enum e public java.lang.Object get (java.lang.Enum) Enum e Class expectedType Object value public void set (java.lang.Enum, java.lang.Object) Enum x Object v public void unset (java.lang.Enum) Enum x public void set (java.lang.Enum, long) Enum x long v public void set (java.lang.Enum, boolean) Enum x boolean v public boolean hasField (java.lang.Enum) Enum field public void clear () public void release () public transient org.tmatesoft.svn.core.internal.wc17.db.Structure from (java.lang.Enum[]) Enum[] fields public transient void into (org.tmatesoft.svn.core.internal.wc17.db.Structure, java.lang.Enum[]) int valueIndex Object v int i org.tmatesoft.svn.core.internal.wc17.db.Structure target Enum[] fields public int hashCode () int i int i int code public boolean equals (java.lang.Object) Object e org.tmatesoft.svn.core.internal.wc17.db.Structure other private void assertSafeType (java.lang.Enum, java.lang.Class) Enum e Class c private transient void init (java.lang.Class, java.lang.Enum[]) Enum field Enum[] arr$ int len$ int i$ Class enumClass Enum[] fields Object[] enumConstants private static java.lang.Object[] adjustArraySize (java.lang.Object[], int) Object[] array int desiredSize private static long[] adjustArraySize (long[], int) long[] array int desiredSize public java.lang.String toString () Enum e Object o Object field Object[] arr$ int len$ int i$ StringBuilder sb synthetic void <init> (java.lang.Class, java.lang.Enum[], org.tmatesoft.svn.core.internal.wc17.db.Structure$1) Class x0 Enum[] x1 org.tmatesoft.svn.core.internal.wc17.db.Structure$1 x2 static synthetic void access$200 (org.tmatesoft.svn.core.internal.wc17.db.Structure, java.lang.Class, java.lang.Enum[]) org.tmatesoft.svn.core.internal.wc17.db.Structure x0 Class x1 Enum[] x2 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$DirParsedInfo.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir wcDbDir public java.io.File localRelPath public void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$WCDbWorkQueueInfo.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbWorkQueueInfo extends java.lang.Object { public long id public org.tmatesoft.svn.core.internal.util.SVNSkel workItem public void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$Commit.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$Commit extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public java.io.File localRelpath public long newRevision public long changedRev public org.tmatesoft.svn.core.internal.util.SVNDate changedDate public String changedAuthor public org.tmatesoft.svn.core.wc2.SvnChecksum newChecksum public java.util.List newChildren public org.tmatesoft.svn.core.SVNProperties newDavCache public boolean keepChangelist public boolean noUnlock public org.tmatesoft.svn.core.internal.util.SVNSkel workItems public long reposId public java.io.File reposRelPath final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 public void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException long affectedRows org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt java.io.File parentRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement lockStmt org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmtAct org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmtInfo boolean haveAct byte[] propBlob String changelist java.io.File parentRelpath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus newPresence String newDepthStr org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt boolean fileExternal long opDepth org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind newKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus oldPresence org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo2 reposInfo org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb long wcId private void commitDescendant (java.io.File, java.io.File, long, long) throws org.tmatesoft.svn.core.SVNException java.io.File childLocalRelPath java.io.File childReposRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt String name java.util.Iterator i$ java.io.File parentLocalRelPath java.io.File parentReposRelPath long opDepth long revision java.util.List children }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$WCDbAdditionInfo$AdditionInfoField.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField status public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField opRootAbsPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField reposRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField reposRootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField reposUuid public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField originalReposRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField originalRootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField originalUuid public static final enum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField originalRevision private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField[] values () public static org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$InsertBase.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertBase extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind public long reposId public java.io.File reposRelpath public long revision public org.tmatesoft.svn.core.SVNURL reposRootURL public String reposUUID public org.tmatesoft.svn.core.SVNProperties props public long changedRev public org.tmatesoft.svn.core.internal.util.SVNDate changedDate public String changedAuthor public org.tmatesoft.svn.core.SVNProperties davCache public java.util.List children public org.tmatesoft.svn.core.SVNDepth depth public org.tmatesoft.svn.core.wc2.SvnChecksum checksum public java.io.File target public boolean fileExternal public org.tmatesoft.svn.core.internal.util.SVNSkel conflict public boolean updateActualProps public org.tmatesoft.svn.core.SVNProperties actualProps public boolean insertBaseDeleted public boolean keepRecordedInfo public org.tmatesoft.svn.core.internal.util.SVNSkel workItems public long wcId public java.io.File localRelpath static final synthetic boolean $assertionsDisabled final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 public void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException boolean haveRow org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.SVNProperties diff org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties newActualProps org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db long recordedSize long recordedModTime java.io.File parentRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb$WCDbAdditionInfo.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status public java.io.File opRootAbsPath public java.io.File reposRelPath public org.tmatesoft.svn.core.SVNURL reposRootUrl public String reposUuid public java.io.File originalReposRelPath public org.tmatesoft.svn.core.SVNURL originalRootUrl public String originalUuid public long originalRevision public void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDbDir.class
SVNWCDbDir.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir extends java.lang.Object { private java.io.File localAbsPath private org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot private org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir parent private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess admAccess public void <init> (java.io.File) java.io.File localAbsPath public java.io.File getLocalAbsPath () public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot getWCRoot () public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir getParent () public org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess getAdmAccess () public void setLocalAbsPath (java.io.File) java.io.File localAbsPath public void setWCRoot (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot public void setParent (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir parent public static boolean isUsable (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh public java.io.File computeRelPath () String relativePath public void flushEntries (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir parentPdh java.io.File localAbspath }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbReader$ReplaceInfo.class
SvnWcDbReader.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbReader$ReplaceInfo extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbReader$ReplaceInfo replaced public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbReader$ReplaceInfo baseReplace public static final enum org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbReader$ReplaceInfo replaceRoot private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbReader$ReplaceInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbReader$ReplaceInfo[] values () public static org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbReader$ReplaceInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$GatheredChildItem.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$GatheredChildItem extends org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbInfo { public int layersCount public long opDepth private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x0 }
org/tmatesoft/svn/core/internal/wc17/db/Structure$1.class
Structure.java package org.tmatesoft.svn.core.internal.wc17.db synthetic org.tmatesoft.svn.core.internal.wc17.db.Structure$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$ReposInfo2.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo2 extends java.lang.Object { public long reposId public java.io.File reposRelPath private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x0 }
org/tmatesoft/svn/core/internal/wc17/db/StructureFields$NodeInfo.class
StructureFields.java package org.tmatesoft.svn.core.internal.wc17.db public final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo status public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo kind public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo revision public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo reposRelPath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo reposId public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo reposRootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo reposUuid public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo changedRev public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo changedDate public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo changedAuthor public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo recordedTime public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo depth public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo checksum public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo recordedSize public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo target public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo changelist public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo originalReposId public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo originalReposRelpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo originalRootUrl public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo originalUuid public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo originalRevision public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo textMod public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo propsMod public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo conflicted public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo lock public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo haveBase public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo haveWork public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo opRoot public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo hadProps public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo haveMoreWork public static final enum org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo updateRoot private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[] values () public static org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbRevert$1.class
SvnWcDbRevert.java package org.tmatesoft.svn.core.internal.wc17.db final org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert$1 extends java.lang.Object implements java.util.Comparator { void <init> () public int compare (java.io.File, java.io.File) java.io.File o1 java.io.File o2 String path1 String path2 public volatile synthetic int compare (java.lang.Object, java.lang.Object) Object x0 Object x1 }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$SetProperties.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$SetProperties extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir pdh java.io.File localRelpath org.tmatesoft.svn.core.internal.util.SVNSkel conflict org.tmatesoft.svn.core.internal.util.SVNSkel workItems boolean clearRecordedInfo static final synthetic boolean $assertionsDisabled final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties propDiffs org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$RecordFileinfo rfi org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.SVNProperties pristineProps synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x1 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$ReposInfo.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$ReposInfo extends java.lang.Object { public String reposRootUrl public String reposUuid public void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnRevertActualNodesTrigger.class
SvnRevertActualNodesTrigger.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnRevertActualNodesTrigger extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.ISVNSqlJetTrigger { private org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db public void beforeDelete (org.tmatesoft.sqljet.core.table.ISqlJetCursor) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor org.tmatesoft.sqljet.core.table.ISqlJetTable table java.util.Map rowValues public void beforeUpdate (org.tmatesoft.sqljet.core.table.ISqlJetCursor, java.util.Map) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor java.util.Map newValues org.tmatesoft.sqljet.core.table.ISqlJetTable table java.util.Map rowValues public void beforeInsert (org.tmatesoft.sqljet.core.schema.SqlJetConflictAction, org.tmatesoft.sqljet.core.table.ISqlJetTable, java.util.Map) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.schema.SqlJetConflictAction conflictAction org.tmatesoft.sqljet.core.table.ISqlJetTable table java.util.Map newValues public void statementStarted (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.SqlJetDb db public void statementCompleted (org.tmatesoft.sqljet.core.table.SqlJetDb, org.tmatesoft.sqljet.core.SqlJetException) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.SqlJetDb db org.tmatesoft.sqljet.core.SqlJetException error }
org/tmatesoft/svn/core/internal/wc17/db/ISVNWCDb.class
ISVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public abstract org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb extends java.lang.Object { public static final int WC_FORMAT_17 public static final int WC_HAS_WORK_QUEUE public static final long INVALID_FILESIZE public static final long INVALID_REVNUM public static final String SDB_FILE public static final String SDB_FILE_UPGRADE public static final String PRISTINE_STORAGE_RELPATH public static final String PRISTINE_TEMPDIR_RELPATH public static final String WCROOT_TEMPDIR_RELPATH public abstract void open (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode, org.tmatesoft.svn.core.wc.ISVNOptions, boolean, boolean) public abstract void close () public abstract org.tmatesoft.svn.core.wc.ISVNOptions getConfig () public abstract void init (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException public abstract java.io.File toRelPath (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract java.io.File fromRelPath (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void addBaseDirectory (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, java.util.List, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNSkel, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract void addBaseFile (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, org.tmatesoft.svn.core.wc2.SvnChecksum, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNSkel, boolean, org.tmatesoft.svn.core.SVNProperties, boolean, boolean, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract void addBaseSymlink (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, java.io.File, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNSkel, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract void addBaseExcludedNode (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus, org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract void removeBase (java.io.File) throws org.tmatesoft.svn.core.SVNException public transient abstract org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo getBaseInfo (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo$BaseInfoField[]) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNProperties getBaseProps (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract java.util.Set getBaseChildren (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract java.util.Map getBaseChildrenMap (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void setBaseDavCache (java.io.File, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNProperties getBaseDavCache (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void clearDavCacheRecursive (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract java.io.File getPristinePath (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException public abstract java.io.InputStream readPristine (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException public abstract java.io.File getPristineTempDir (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void installPristine (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc2.SvnChecksum getPristineMD5 (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc2.SvnChecksum getPristineSHA1 (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException public abstract void removePristine (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException public abstract void cleanupPristine (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract boolean checkPristine (java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException public abstract void opCopy (java.io.File, java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract void opCopyShadowedLayer (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void opCopyDir (java.io.File, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, java.util.List, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract void opCopyFile (java.io.File, org.tmatesoft.svn.core.SVNProperties, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.wc2.SvnChecksum, org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract void opAddDirectory (java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract void opAddFile (java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract void opSetProps (java.io.File, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.util.SVNSkel, boolean, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract void opDelete (java.io.File, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException public abstract void opSetChangelist (java.io.File, java.lang.String, java.lang.String[], org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException public abstract void opMarkResolved (java.io.File, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void opRevert (java.io.File, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException public abstract java.util.Map opReadAllTreeConflicts (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc.SVNTreeConflictDescription opReadTreeConflict (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void opSetTreeConflict (java.io.File, org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) throws org.tmatesoft.svn.core.SVNException public transient abstract org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo$InfoField[]) throws org.tmatesoft.svn.core.SVNException public transient abstract org.tmatesoft.svn.core.internal.wc17.db.Structure readInfo (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[]) throws org.tmatesoft.svn.core.SVNException public transient abstract org.tmatesoft.svn.core.internal.wc17.db.Structure readInfo (java.io.File, boolean, org.tmatesoft.svn.core.internal.wc17.db.StructureFields$NodeInfo[]) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNProperties readProperties (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNProperties readPristineProperties (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract java.util.Set readChildren (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void readChildren (java.io.File, java.util.Map, java.util.Set) throws org.tmatesoft.svn.core.SVNException public abstract java.util.List readConflictVictims (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract java.util.List readConflicts (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind readKind (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException public abstract boolean isNodeHidden (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void globalCommit (java.io.File, long, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, org.tmatesoft.svn.core.wc2.SvnChecksum, java.util.List, org.tmatesoft.svn.core.SVNProperties, boolean, boolean, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract void globalRecordFileinfo (java.io.File, long, org.tmatesoft.svn.core.internal.util.SVNDate) throws org.tmatesoft.svn.core.SVNException public abstract void addLock (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock) throws org.tmatesoft.svn.core.SVNException public abstract void removeLock (java.io.File) throws org.tmatesoft.svn.core.SVNException public transient abstract org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo scanBaseRepository (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo$RepositoryInfoField[]) throws org.tmatesoft.svn.core.SVNException public transient abstract org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo scanAddition (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo$AdditionInfoField[]) throws org.tmatesoft.svn.core.SVNException public transient abstract org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo scanDeletion (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbDeletionInfo$DeletionInfoField[]) throws org.tmatesoft.svn.core.SVNException public abstract void addWorkQueue (java.io.File, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbWorkQueueInfo fetchWorkQueue (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void completedWorkQueue (java.io.File, long) throws org.tmatesoft.svn.core.SVNException public abstract boolean isWCLocked (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract boolean isWCRoot (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract boolean isWCRoot (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException public abstract int getFormatTemp (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract java.lang.String getFileExternalTemp (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.db.SVNSqlJetDb borrowDbTemp (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbOpenMode) throws org.tmatesoft.svn.core.SVNException public abstract void opStartDirectoryUpdateTemp (java.io.File, java.io.File, long) throws org.tmatesoft.svn.core.SVNException public abstract void opMakeCopyTemp (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void opSetNewDirToIncompleteTemp (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException public abstract java.io.File getWCRootTempDir (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void opRemoveWorkingTemp (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void opSetBaseIncompleteTemp (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void opSetDirDepthTemp (java.io.File, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException public abstract void opRemoveEntryTemp (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void opSetRevAndReposRelpathTemp (java.io.File, long, boolean, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void obtainWCLock (java.io.File, int, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void releaseWCLock (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract java.io.File getWCRoot (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void forgetDirectoryTemp (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract boolean isWCLockOwns (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void opSetTextConflictMarkerFilesTemp (java.io.File, java.io.File, java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void addBaseNotPresentNode (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind, org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException public abstract void opSetPropertyConflictMarkerFileTemp (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void opBumpRevisionPostUpdate (java.io.File, org.tmatesoft.svn.core.SVNDepth, java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, java.util.Collection) throws org.tmatesoft.svn.core.SVNException public abstract java.util.Map getExternalsDefinedBelow (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void gatherExternalDefinitions (java.io.File, org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfoBelowWorking (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc17.db.Structure readPristineInfo (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void registerExternal (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.SVNURL, java.lang.String, java.io.File, long, long) throws org.tmatesoft.svn.core.SVNException public abstract java.util.Set getChildrenOfWorkingNode (java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void opRemoveNode (java.io.File, long, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind) throws org.tmatesoft.svn.core.SVNException public abstract void upgradeBegin (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData, org.tmatesoft.svn.core.SVNURL, java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbNodeCheckReplaceData nodeCheckReplace (java.io.File) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$InsertWorking.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$InsertWorking extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind public java.io.File reposRelpath public org.tmatesoft.svn.core.SVNProperties props public long changedRev public org.tmatesoft.svn.core.internal.util.SVNDate changedDate public String changedAuthor public java.util.List children public org.tmatesoft.svn.core.SVNDepth depth public org.tmatesoft.svn.core.wc2.SvnChecksum checksum public java.io.File target public org.tmatesoft.svn.core.internal.util.SVNSkel workItems public long wcId public java.io.File localRelpath public java.io.File originalReposRelPath public long originalReposId public long originalRevision public long opDepth public long notPresentOpDepth final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 public void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db java.io.File parentRelpath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbPristines$RemoveUnreferencedPristine.class
SvnWcDbPristines.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbPristines$RemoveUnreferencedPristine extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { public org.tmatesoft.svn.core.wc2.SvnChecksum sha1_checksum public java.io.File pristineAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root private void <init> () public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException Long affectedRows org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt private void pristineRemoveFile (boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File temDirAbsPath java.io.File tempAbsPath boolean ignoreEnoent synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbPristines$1) org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbPristines$1 x0 }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbCopy$1.class
SvnWcDbCopy.java package org.tmatesoft.svn.core.internal.wc17.db synthetic org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbCopy$1 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbStatus static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$RecordFileinfo.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$RecordFileinfo extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { public org.tmatesoft.svn.core.internal.util.SVNDate lastModTime public long translatedSize public java.io.File localRelpath public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcRoot static final synthetic boolean $assertionsDisabled final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 private void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb) public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException long affectedRows org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt synthetic void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1) org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb x0 org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 x1 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbRevert.class
SvnWcDbRevert.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert extends org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbShared { public void <init> () public static void revert (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long affectedRows org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err boolean haveRow org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb org.tmatesoft.svn.core.internal.wc17.db.SvnRevertNodesTrigger nodesTableTrigger org.tmatesoft.svn.core.internal.wc17.db.SvnRevertActualNodesTrigger actualNodesTableTrigger org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt long opDepth long affectedRows public static void revertRecursive (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot, java.io.File) throws org.tmatesoft.svn.core.SVNException long affectedRows org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root java.io.File localRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sdb org.tmatesoft.svn.core.internal.wc17.db.SvnRevertNodesTrigger nodesTableTrigger org.tmatesoft.svn.core.internal.wc17.db.SvnRevertActualNodesTrigger actualNodesTableTrigger org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt long opDepth public static java.util.Map readRevertCopiedChildren (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException String relpath java.io.File childFile org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath java.util.Map result org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static org.tmatesoft.svn.core.internal.wc17.db.Structure readRevertInfo (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException String path String path String path String path long opDepth boolean isActual boolean anotherRow org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt boolean haveRow org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.internal.wc17.db.Structure result public static void dropRevertList (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public static void notifyRevert (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException java.io.File notifyRelPath java.io.File notifyAbsPath java.io.File previousPath org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo dirInfo java.io.File localRelpath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt }
org/tmatesoft/svn/core/internal/wc17/db/SvnWcDbProperties$InsertIntoPropertiesCache.class
SvnWcDbProperties.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbProperties$InsertIntoPropertiesCache extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private java.util.HashMap insertValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public void putInsertValue (java.lang.Enum, java.lang.Object) Enum f Object value public void reset () throws org.tmatesoft.svn.core.SVNException protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$1.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { final synthetic long val$reposId final synthetic java.io.File val$reposRelpath final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum, long, java.io.File) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/SVNWCDb$CheckReplace.class
SVNWCDb.java package org.tmatesoft.svn.core.internal.wc17.db public org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$CheckReplace extends java.lang.Object implements org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction { public long wcId public java.io.File localRelpath public boolean replaceRoot public boolean baseReplace public boolean replace final synthetic org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb this$0 public void <init> (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, long, java.io.File) long wcId java.io.File localRelpath public void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus baseStatus long opDepth long parentOpDepth org.tmatesoft.svn.core.internal.db.SVNSqlJetDb db long replacedOpDepth org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus replacedStatus boolean haveRow org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt }
org/tmatesoft/svn/core/internal/wc17/db/statement/
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectWorkingNode.class
SVNWCDbSelectWorkingNode.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectWorkingNode extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectDeletionInfo.class
SVNWCDbSelectDeletionInfo.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectDeletionInfo extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public static final String NODES_BASE private org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesMaxOpDepth myMaxOpDepth public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement getJoinedStatement (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement baseNodeStmt String joinedTable protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException Long maxOpDepth }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertActualNode.class
SVNWCDbInsertActualNode.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertActualNode extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateNodeWorkingDepth.class
SVNWCDbUpdateNodeWorkingDepth.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateNodeWorkingDepth extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { private org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesMaxOpDepth maxOpDepth public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectNodeChildrenInfo$LockStatement.class
SVNWCDbSelectNodeChildrenInfo.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectNodeChildrenInfo$LockStatement extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeletePristineIfUnreferenced.class
SVNWCDbDeletePristineIfUnreferenced.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeletePristineIfUnreferenced extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertNode.class
SVNWCDbInsertNode.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertNode extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectNotPresent.class
SVNWCDbSelectNotPresent.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectNotPresent extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException long rowDepth String rowParentPath String selectPath }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbClearActualNodeLeavingChangelistRecursive.class
SVNWCDbClearActualNodeLeavingChangelistRecursive.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbClearActualNodeLeavingChangelistRecursive extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String selectPath String rowPath public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues protected boolean isRecursive () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDDBUpdateActualClearChangelist$1.class
SVNWCDDBUpdateActualClearChangelist.java package org.tmatesoft.svn.core.internal.wc17.db.statement final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDDBUpdateActualClearChangelist$1 extends java.util.HashMap { void <init> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbClearActualNodeLeavingChangelist.class
SVNWCDbClearActualNodeLeavingChangelist.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbClearActualNodeLeavingChangelist extends org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbClearActualNodeLeavingChangelistRecursive { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected boolean isRecursive () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNUpdateBaseNodePresenceRevnumAndReposPath.class
SVNUpdateBaseNodePresenceRevnumAndReposPath.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNUpdateBaseNodePresenceRevnumAndReposPath extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map v protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbNodesBase.class
SVNWCDbNodesBase.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesBase extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { private String previousPath public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String currentPath }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$NODE_PROPS_CACHE__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODE_PROPS_CACHE__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODE_PROPS_CACHE__Fields local_Relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODE_PROPS_CACHE__Fields kind public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODE_PROPS_CACHE__Fields properties private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODE_PROPS_CACHE__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODE_PROPS_CACHE__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODE_PROPS_CACHE__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertTargetWithChangelist.class
SVNWCDbInsertTargetWithChangelist.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetWithChangelist extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement nodeCurrent private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement actualNode private java.util.Map insertValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow public long exec () throws org.tmatesoft.svn.core.SVNException String actualChangelist int n static synthetic java.lang.Object access$000 (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetWithChangelist, int) org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetWithChangelist x0 int x1 }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectWCLock.class
SVNWCDbSelectWCLock.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectWCLock extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$NODES__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields wc_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields local_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields op_depth public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields parent_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields repos_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields repos_path public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields revision public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields presence public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields moved_here public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields moved_to public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields kind public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields properties public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields depth public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields checksum public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields symlink_target public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields changed_revision public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields changed_date public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields changed_author public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields translated_size public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields last_mod_time public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields dav_cache public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields file_external private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInstallWorkingNodeForDelete.class
SVNWCDbInstallWorkingNodeForDelete.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInstallWorkingNodeForDelete extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e int n protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map insertValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteActualEmpties.class
SVNWCDbDeleteActualEmpties.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteActualEmpties extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbLookForWork.class
SVNWCDbLookForWork.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbLookForWork extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectRepositoryById.class
SVNWCDbSelectRepositoryById.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectRepositoryById extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteActualNodeWithoutConflict.class
SVNWCDbDeleteActualNodeWithoutConflict.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteActualNodeWithoutConflict extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertDeleteList.class
SVNWCDbInsertDeleteList.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteList extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select private java.util.Map insertValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow public long exec () throws org.tmatesoft.svn.core.SVNException int n }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectAnyPristineReference$2.class
SVNWCDbSelectAnyPristineReference.java package org.tmatesoft.svn.core.internal.wc17.db.statement final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectAnyPristineReference$2 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String older_checksum String left_checksum String right_checksum }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbMarkSkippedChangelistDirs.class
SVNWCDbMarkSkippedChangelistDirs.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbMarkSkippedChangelistDirs extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e int n protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow java.util.Map insertValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbNodesCurrent.class
SVNWCDbNodesCurrent.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesCurrent extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { private String previousPath public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String currentPath }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectGeOpDepthChildren.class
SVNWCDbSelectGeOpDepthChildren.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectGeOpDepthChildren extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException long opDepth long selectOpDepth }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateActualTextConflicts.class
SVNWCDbUpdateActualTextConflicts.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateActualTextConflicts extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteActualEmpty.class
SVNWCDbDeleteActualEmpty.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteActualEmpty extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbClearActualNodeLeavingConflict.class
SVNWCDbClearActualNodeLeavingConflict.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbClearActualNodeLeavingConflict extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbCreateSchema$1.class
SVNWCDbCreateSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$1 extends java.lang.Object implements org.tmatesoft.sqljet.core.table.ISqlJetTransaction { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema) public java.lang.Object run (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement stmt org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] arr$ int len$ int i$ org.tmatesoft.sqljet.core.table.SqlJetDb db }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertDeleteFromBase.class
SVNWCDbInsertDeleteFromBase.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteFromBase extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { protected org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException long n protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues java.util.Map insertValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateActualConflictData.class
SVNWCDbUpdateActualConflictData.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateActualConflictData extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertDeleteFromNodeRecursive.class
SVNWCDbInsertDeleteFromNodeRecursive.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteFromNodeRecursive extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { protected org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException long n protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues java.util.Map insertValues static synthetic java.lang.Object access$000 (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteFromNodeRecursive, int) org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteFromNodeRecursive x0 int x1 }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateNodeProperties.class
SVNWCDbUpdateNodeProperties.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateNodeProperties extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertWorkingNodeFromBaseCopy$1.class
SVNWCDbInsertWorkingNodeFromBaseCopy.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkingNodeFromBaseCopy$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkingNodeFromBaseCopy this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkingNodeFromBaseCopy, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectWCRootNull.class
SVNWCDbSelectWCRootNull.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectWCRootNull extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.String getIndexName () protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertRepository.class
SVNWCDbInsertRepository.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertRepository extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbResetActualWithChangelist.class
SVNWCDbResetActualWithChangelist.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbResetActualWithChangelist extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateBaseRevision.class
SVNWCDbUpdateBaseRevision.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateBaseRevision extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbCommitDescendantToBase.class
SVNWCDbCommitDescendantToBase.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCommitDescendantToBase extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map updateValues String presence protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$REVERT_LIST__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields local_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields actual public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields conflict_old public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields conflict_new public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields conflict_working public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields prop_reject public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields notify public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields op_depth public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields repos_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields kind private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVERT_LIST__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteNodes.class
SVNWCDbDeleteNodes.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteNodes extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectPristineMD5Checksum.class
SVNWCDbSelectPristineMD5Checksum.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectPristineMD5Checksum extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectActualChildrenInfo.class
SVNWCDbSelectActualChildrenInfo.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectActualChildrenInfo extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteShadowedRecursive.class
SVNWCDbDeleteShadowedRecursive.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteShadowedRecursive extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException long rowDepth String rowPath long queryDepth String queryPath }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectOpDepthChildren.class
SVNWCDbSelectOpDepthChildren.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectOpDepthChildren extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbCollectTargets.class
SVNWCDbCollectTargets.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCollectTargets extends org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesCurrent { private org.tmatesoft.svn.core.SVNDepth depth private java.io.File target private java.util.Collection changelists private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement selectChangelist private java.util.Set receivedPaths public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long, java.io.File, org.tmatesoft.svn.core.SVNDepth, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb long wcId java.io.File target org.tmatesoft.svn.core.SVNDepth depth java.util.Collection changelists protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String kind String targetPath String rowPath private boolean matchesChangelist () throws org.tmatesoft.svn.core.SVNException private java.io.File getTarget () private org.tmatesoft.svn.core.SVNDepth getDepth () private java.util.Collection getChangelists () private void setDepth (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth private void setTarget (java.io.File) java.io.File target private void setChangelists (java.util.Collection) java.util.Collection changelists }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertTargetDepthImmediates.class
SVNWCDbInsertTargetDepthImmediates.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetDepthImmediates extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select private java.util.Map insertValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow public long exec () throws org.tmatesoft.svn.core.SVNException String localRelPath String parentRelPath String selectPath int n }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbStatements.class
SVNWCDbStatements.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements CREATE_SCHEMA public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_ACTUAL_EMPTY public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_ACTUAL_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_BASE_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_WC_LOCK_ORPHAN_RECURSIVE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_NODES public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_PRISTINE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_WC_LOCK public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_WORK_ITEM public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_WORKING_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_NODES_RECURSIVE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_ACTUAL_NODE_LEAVING_CHANGELIST_RECURSIVE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_ACTUAL_EMPTIES public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_PRISTINE_IF_UNREFERENCED public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements FIND_WC_LOCK public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements FSFS_GET_REVPROP public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements FSFS_SET_REVPROP public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_ACTUAL_CONFLICT_DATA public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_ACTUAL_PROPERTY_CONFLICTS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_ACTUAL_PROPS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_ACTUAL_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_ACTUAL_EMPTIES public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_ACTUAL_TEXT_CONFLICTS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_ACTUAL_TREE_CONFLICTS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_EXTERNAL public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_EXTERNAL_UPGRADE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_LOCK public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_PRISTINE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_OR_IGNORE_PRISTINE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_REPOSITORY public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_WC_LOCK public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_WCROOT public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_WORK_ITEM public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_WORKING_NODE_FROM_BASE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_WORKING_NODE_NORMAL_FROM_BASE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_WORKING_NODE_NOT_PRESENT_FROM_BASE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_DELETE_FROM_NODE_RECURSIVE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_DELETE_FROM_BASE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSTALL_WORKING_NODE_FOR_DELETE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_TARGET public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_TARGET2 public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_TARGET_DEPTH_FILES public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_TARGET_DEPTH_IMMEDIATES public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_TARGET_DEPTH_INFINITY public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_TARGET_WITH_CHANGELIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_TARGET_DEPTH_FILES_WITH_CHANGELIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_TARGET_DEPTH_IMMEDIATES_WITH_CHANGELIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_TARGET_DEPTH_INFINITY_WITH_CHANGELIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements LOOK_FOR_WORK public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements REVPROP_CREATE_SCHEMA public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_ALL_FILES public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_ACTUAL_CONFLICT_VICTIMS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_ACTUAL_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_ACTUAL_CHILDREN_INFO public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_ACTUAL_PROPS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_ACTUAL_TREE_CONFLICT public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_ANY_PRISTINE_REFERENCE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_BASE_DAV_CACHE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_BASE_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_BASE_NODE_CHILDREN public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_LOCK public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_BASE_NODE_WITH_LOCK public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_BASE_PROPS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_CONFLICT_DETAILS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_DELETION_INFO public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_FILE_EXTERNAL public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_NODE_PROPS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_NODE_CHILDREN_INFO public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_NODE_CHILDREN_WALKER_INFO public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_NOT_PRESENT_DESCENDANTS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_PRISTINE_MD5_CHECKSUM public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_PRISTINE_SHA1_CHECKSUM public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_UNREFERENCED_PRISTINES public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_REPOSITORY public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_REPOSITORY_BY_ID public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_WC_LOCK public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_ANCESTORS_WC_LOCKS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_WCROOT_NULL public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_WORK_ITEM public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_NODE_INFO public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_NODE_INFO_WITH_LOCK public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_WORKING_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_WORKING_NODE_CHILDREN public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_CHANGELIST_LIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_TARGETS_LIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_ACTUAL_CONFLICT_DATA public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_ACTUAL_PROPERTY_CONFLICTS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_ACTUAL_PROPS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_ACTUAL_TEXT_CONFLICTS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_ACTUAL_TREE_CONFLICTS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_ACTUAL_CHANGELISTS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_BASE_NODE_DAV_CACHE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_BASE_NODE_PRESENCE_REVNUM_AND_REPOS_PATH public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_BASE_REVISION public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_COPYFROM public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_NODE_BASE_DEPTH public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_NODE_BASE_PRESENCE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_NODE_PROPS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_NODE_WORKING_DEPTH public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_NODE_FILEINFO public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_LOWEST_WORKING_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements CLEAR_TEXT_CONFLICT public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements CLEAR_PROPS_CONFLICT public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements CLEAR_ACTUAL_NODE_LEAVING_CHANGELIST_RECURSIVE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements CLEAR_BASE_NODE_RECURSIVE_DAV_CACHE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_LOWEST_WORKING_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_ACTUAL_NODE_WITHOUT_CONFLICT public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_ACTUAL_CHILDREN_TREE_CONFLICT public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements CLEAR_ACTUAL_NODE_LEAVING_CONFLICT public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_WORKING_NODE_FROM_BASE_COPY_PRESENCE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_WORKING_NODE_FROM_BASE_COPY public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_OP_DEPTH_CHILDREN public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_GE_OP_DEPTH_CHILDREN public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements APPLY_CHANGES_TO_BASE_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_ALL_WORKING_NODES public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements RESET_ACTUAL_WITH_CHANGELIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_EXTERNALS_DEFINED public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_EXTERNAL_PROPERTIES public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DOES_NODE_EXIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_ACTUAL_CLEAR_CHANGELIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements INSERT_DELETE_LIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements HAS_SERVER_EXCLUDED_NODES public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_WORKING_CHILDREN public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_LOCK public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_ALL_LAYERS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_SHADOWED_RECURSIVE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_ACTUAL_NODE_RECURSIVE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements COMMIT_DESCENDANT_TO_BASE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements UPDATE_OP_DEPTH_INCREASE_RECURSIVE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_WC_LOCK_ORPHAN public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements DELETE_ACTUAL_NODE_LEAVING_CHANGELIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements CLEAR_ACTUAL_NODE_LEAVING_CHANGELIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_REVERT_LIST_COPIED_CHILDREN public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements MARK_SKIPPED_CHANGELIST_DIRS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements SELECT_ALL_SERVER_EXCLUDED_NODES private Class statementClass private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements valueOf (java.lang.String) String name private void <init> (java.lang.String, int) private void <init> (java.lang.String, int, java.lang.Class) Class statementClass public java.lang.Class getStatementClass () static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertTargetWithChangelist$1.class
SVNWCDbInsertTargetWithChangelist.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetWithChangelist$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetWithChangelist this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetWithChangelist, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String rowChangelist public org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement getJoinedStatement (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement actualNodesStmt String joinedTable }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$ACTUAL_NODE__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields wc_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields local_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields parent_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields properties public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields conflict_old public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields conflict_new public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields conflict_working public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields prop_reject public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields changelist public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields text_mod public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields tree_conflict_data public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields conflict_data public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields older_checksum public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields left_checksum public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields right_checksum private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$WC_LOCK__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WC_LOCK__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WC_LOCK__Fields wc_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WC_LOCK__Fields local_dir_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WC_LOCK__Fields locked_levels private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WC_LOCK__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WC_LOCK__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WC_LOCK__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectActualConflictVictims.class
SVNWCDbSelectActualConflictVictims.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectActualConflictVictims extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.String getIndexName () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbFindWCLock.class
SVNWCDbFindWCLock.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbFindWCLock extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException java.io.File path java.io.File localDirPath Object bind protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectAncestorWCLocks.class
SVNWCDbSelectAncestorWCLocks.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectAncestorWCLocks extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbClearDavCacheRecursive.class
SVNWCDbClearDavCacheRecursive.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbClearDavCacheRecursive extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException protected java.lang.String getPathScope () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectAllFiles.class
SVNWCDbSelectAllFiles.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectAllFiles extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDBSelectFileExternal.class
SVNWCDBSelectFileExternal.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDBSelectFileExternal extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteActualNode.class
SVNWCDbDeleteActualNode.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteActualNode extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteLock.class
SVNWCDbDeleteLock.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteLock extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$WCROOT__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WCROOT__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WCROOT__Fields id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WCROOT__Fields local_abspath private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WCROOT__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WCROOT__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WCROOT__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$WCROOT__Indices.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WCROOT__Indices extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WCROOT__Indices I_LOCAL_ABSPATH private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WCROOT__Indices[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WCROOT__Indices[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WCROOT__Indices valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectActualNode.class
SVNWCDbSelectActualNode.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectActualNode extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertActualPropertiesConflicts.class
SVNWCDbInsertActualPropertiesConflicts.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertActualPropertiesConflicts extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { static final synthetic boolean $assertionsDisabled public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () java.util.Map v static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectNodeChildrenInfo.class
SVNWCDbSelectNodeChildrenInfo.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectNodeChildrenInfo extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { private org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectNodeChildrenInfo$LockStatement lockStatement public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public boolean next () throws org.tmatesoft.svn.core.SVNException boolean next public org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement getJoinedStatement (java.lang.String) throws org.tmatesoft.svn.core.SVNException String joinedTable protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbHasServerExcludedNodes.class
SVNWCDbHasServerExcludedNodes.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbHasServerExcludedNodes extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException protected java.lang.String getPathScope () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertWorkingNodeNotPresentFromBase$1.class
SVNWCDbInsertWorkingNodeNotPresentFromBase.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkingNodeNotPresentFromBase$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkingNodeNotPresentFromBase this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkingNodeNotPresentFromBase, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertTargetDepthFiles.class
SVNWCDbInsertTargetDepthFiles.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetDepthFiles extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select private java.util.Map insertValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow public long exec () throws org.tmatesoft.svn.core.SVNException String localRelPath String kind String parentRelPath String selectPath int n }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$TARGETS_LIST__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Fields wc_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Fields local_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Fields parent_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Fields kind private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertActualTreeConflicts.class
SVNWCDbInsertActualTreeConflicts.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertActualTreeConflicts extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectActualProperties.class
SVNWCDbSelectActualProperties.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectActualProperties extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertTargetDepthImmediatesWithChangelist.class
SVNWCDbInsertTargetDepthImmediatesWithChangelist.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetDepthImmediatesWithChangelist extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement nodeCurrent private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement actualNode private java.util.Map insertValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow public long exec () throws org.tmatesoft.svn.core.SVNException String parentRelPath String selectPath long wcId String localRelPath int n }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertExternalUpgrade$1.class
SVNWCDbInsertExternalUpgrade.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertExternalUpgrade$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertExternalUpgrade this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertExternalUpgrade, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertWorkingNodeNotPresentFromBase.class
SVNWCDbInsertWorkingNodeNotPresentFromBase.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkingNodeNotPresentFromBase extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException int n protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteAllLayers.class
SVNWCDbDeleteAllLayers.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteAllLayers extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteAllWorkingNodes.class
SVNWCDbDeleteAllWorkingNodes.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteAllWorkingNodes extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException Object wcIdBind Object localRelpathBind Object wcIdField Object localRelpathField long opDepthField }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertDeleteList$1.class
SVNWCDbInsertDeleteList.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteList$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteList this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteList, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException private boolean isMaxOpDepth (long) throws org.tmatesoft.svn.core.SVNException long opDepth org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesMaxOpDepth stmt Long maxOpDepth protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String presence long selectOpDepth long rowOpDepth protected java.lang.String getPathScope () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbCreateSchema$Type.class
SVNWCDbCreateSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type TABLE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type INDEX public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type VIEW public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type TRIGGER private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateOpDepthIncreaseRecursive.class
SVNWCDbUpdateOpDepthIncreaseRecursive.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateOpDepthIncreaseRecursive extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String selectPath long selectDepth String rowPath protected java.lang.String getPathScope () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$TARGETS_LIST__Indices.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Indices extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Indices targets_list_kind private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Indices[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Indices[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$TARGETS_LIST__Indices valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$REVPROP__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVPROP__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVPROP__Fields properties private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVPROP__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVPROP__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REVPROP__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectNodeInfoWithLock.class
SVNWCDbSelectNodeInfoWithLock.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectNodeInfoWithLock extends org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectNodeInfo { private org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectNodeInfoWithLock$LockStatement lockStatement public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public boolean next () throws org.tmatesoft.svn.core.SVNException boolean next public void reset () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement getJoinedStatement (java.lang.String) throws org.tmatesoft.svn.core.SVNException String joinedTable }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteActualNodeLeavingChangelistRecursive$1.class
SVNWCDbDeleteActualNodeLeavingChangelistRecursive.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteActualNodeLeavingChangelistRecursive$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteActualNodeLeavingChangelistRecursive this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteActualNodeLeavingChangelistRecursive, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteActualNodeLeavingChangelist.class
SVNWCDbDeleteActualNodeLeavingChangelist.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteActualNodeLeavingChangelist extends org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteActualNodeLeavingChangelistRecursive { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected boolean isRecursive () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbMarkSkippedChangelistDirs$1.class
SVNWCDbMarkSkippedChangelistDirs.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbMarkSkippedChangelistDirs$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbMarkSkippedChangelistDirs this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbMarkSkippedChangelistDirs, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbClearPropsConflict.class
SVNWCDbClearPropsConflict.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbClearPropsConflict extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertActualConflictData.class
SVNWCDbInsertActualConflictData.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertActualConflictData extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteWCLockOrphan.class
SVNWCDbDeleteWCLockOrphan.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteWCLockOrphan extends org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteLockOrphanRecursive { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected boolean isRecursive () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectAnyPristineReference$1.class
SVNWCDbSelectAnyPristineReference.java package org.tmatesoft.svn.core.internal.wc17.db.statement final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectAnyPristineReference$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String checksum }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$EXTERNALS__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields wc_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields local_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields parent_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields repos_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields presence public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields kind public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields def_local_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields def_repos_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields def_operational_revision public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields def_revision private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$EXTERNALS__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbClearTextConflict.class
SVNWCDbClearTextConflict.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbClearTextConflict extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectBaseNodeWithLock.class
SVNWCDbSelectBaseNodeWithLock.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectBaseNodeWithLock extends org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectBaseNode { private org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectBaseNodeWithLock$LockStatement lockStatement public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public boolean next () throws org.tmatesoft.svn.core.SVNException boolean next public void reset () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement getJoinedStatement (java.lang.String) throws org.tmatesoft.svn.core.SVNException String joinedTable }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertWorkItem.class
SVNWCDbInsertWorkItem.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkItem extends org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement { private org.tmatesoft.sqljet.core.table.ISqlJetTable table public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteWorkItem.class
SVNWCDbDeleteWorkItem.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteWorkItem extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateActualPropertyConflicts.class
SVNWCDbUpdateActualPropertyConflicts.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateActualPropertyConflicts extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$PRISTINE__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$PRISTINE__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$PRISTINE__Fields checksum public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$PRISTINE__Fields compression public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$PRISTINE__Fields size public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$PRISTINE__Fields refcount public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$PRISTINE__Fields md5_checksum private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$PRISTINE__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$PRISTINE__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$PRISTINE__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectBaseDavCache.class
SVNWCDbSelectBaseDavCache.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectBaseDavCache extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateCopyfrom.class
SVNWCDbUpdateCopyfrom.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateCopyfrom extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { private org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesMaxOpDepth maxOpDepth public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteWorkingNode.class
SVNWCDbDeleteWorkingNode.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteWorkingNode extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { private org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesMaxOpDepth maxOpDepth public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDDBUpdateActualClearChangelist.class
SVNWCDDBUpdateActualClearChangelist.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDDBUpdateActualClearChangelist extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { private static final java.util.Map eraser public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbCreateSchema$2.class
SVNWCDbCreateSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$2 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$statement$SVNWCDbCreateSchema$Type static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$REPOSITORY__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Fields id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Fields root public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Fields uuid private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertWorkingNodeFromBaseCopyPresence.class
SVNWCDbInsertWorkingNodeFromBaseCopyPresence.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkingNodeFromBaseCopyPresence extends org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkingNodeFromBaseCopy { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertTargetDepthInfinityWithChangelist.class
SVNWCDbInsertTargetDepthInfinityWithChangelist.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetDepthInfinityWithChangelist extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement nodeCurrent private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement actualNode private java.util.Map insertValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow public long exec () throws org.tmatesoft.svn.core.SVNException String selectPath long wcId String localRelPath int n }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectWorkingNodeChildren.class
SVNWCDbSelectWorkingNodeChildren.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectWorkingNodeChildren extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.String getIndexName () protected void defineFields () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateActualChangelists.class
SVNWCDbUpdateActualChangelists.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateActualChangelists extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeletePristine.class
SVNWCDbDeletePristine.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeletePristine extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertPristine.class
SVNWCDbInsertPristine.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertPristine extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectConflictDetails.class
SVNWCDbSelectConflictDetails.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectConflictDetails extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertWCRoot.class
SVNWCDbInsertWCRoot.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWCRoot extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertTargetDepthInfinity.class
SVNWCDbInsertTargetDepthInfinity.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetDepthInfinity extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select private java.util.Map insertValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow public long exec () throws org.tmatesoft.svn.core.SVNException String localRelPath String selectPath int n }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteActualNodeRecursive.class
SVNWCDbDeleteActualNodeRecursive.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteActualNodeRecursive extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String queryPath String rowPath }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectBaseNodeChildren.class
SVNWCDbSelectBaseNodeChildren.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectBaseNodeChildren extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.String getIndexName () protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectAnyPristineReference.class
SVNWCDbSelectAnyPristineReference.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectAnyPristineReference extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUnionStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb private static org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement selectActual (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb private static org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement selectNodes (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDBSelectExternalsDefined.class
SVNWCDBSelectExternalsDefined.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDBSelectExternalsDefined extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String selectPath String rowPath protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateActualTreeConflicts.class
SVNWCDbUpdateActualTreeConflicts.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateActualTreeConflicts extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertWorkingNodeFromBase.class
SVNWCDbInsertWorkingNodeFromBase.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkingNodeFromBase extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e int n protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema WCROOT public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema LOCK public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema REPOSITORY public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema ACTUAL_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema WC_LOCK public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema PRISTINE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema NODES public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema WORK_QUEUE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema EXTERNALS public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema TARGETS_LIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema NODE_PROPS_CACHE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema DELETE_LIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema REVERT_LIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema CHANGELIST_LIST public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema BASE_NODE public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema WORKING_NODE public final Class fields public final Class indices private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema valueOf (java.lang.String) String name private void <init> (java.lang.String, int, java.lang.Class) Class fields private void <init> (java.lang.String, int, java.lang.Class, java.lang.Class) Class fields Class indices static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbApplyChangesToBaseNode.class
SVNWCDbApplyChangesToBaseNode.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbApplyChangesToBaseNode extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertLock.class
SVNWCDbInsertLock.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertLock extends org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement { private org.tmatesoft.sqljet.core.table.ISqlJetTable table public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertTarget2$1.class
SVNWCDbInsertTarget2.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTarget2$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTarget2 this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTarget2, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbNodesMinOpDepth.class
SVNWCDbNodesMinOpDepth.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesMinOpDepth extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { private long minDepth public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb long minDepth protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException public java.lang.Long getMinOpDepth (java.lang.Long, java.lang.String) throws org.tmatesoft.svn.core.SVNException long opDepth long minOpDepth boolean empty Long wcId String localRelpath }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateNodeBasePresence.class
SVNWCDbUpdateNodeBasePresence.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateNodeBasePresence extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$Empty.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$Empty extends java.lang.Enum { private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$Empty[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$Empty[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$Empty valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectWorkingChildren.class
SVNWCDbSelectWorkingChildren.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectWorkingChildren extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { private long parentMaxOpDepth public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException long rowOpDepth String presence protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesMaxOpDepth maxOpDepth }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectChangelist.class
SVNWCDbSelectChangelist.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectChangelist extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$REPOSITORY__Indices.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Indices extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Indices I_UUID public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Indices I_ROOT private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Indices[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Indices[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$REPOSITORY__Indices valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbNodesMaxOpDepth.class
SVNWCDbNodesMaxOpDepth.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesMaxOpDepth extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { private long minDepth public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb long minDepth protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException public java.lang.Long getMaxOpDepth (java.lang.Long, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e long rowDepth org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException e Long wcId String localRelpath org.tmatesoft.sqljet.core.table.ISqlJetCursor c }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertWorkingNodeNormalFromBase.class
SVNWCDbInsertWorkingNodeNormalFromBase.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkingNodeNormalFromBase extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException long n protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateBaseNodeDavCache.class
SVNWCDbUpdateBaseNodeDavCache.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateBaseNodeDavCache extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteActualNodeLeavingChangelistRecursive.class
SVNWCDbDeleteActualNodeLeavingChangelistRecursive.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteActualNodeLeavingChangelistRecursive extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String selectPath String rowPath protected boolean isRecursive () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectBaseProperties.class
SVNWCDbSelectBaseProperties.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectBaseProperties extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertTarget.class
SVNWCDbInsertTarget.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTarget extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select private java.util.Map insertValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow public long exec () throws org.tmatesoft.svn.core.SVNException int n }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteLowestWorkingNode.class
SVNWCDbDeleteLowestWorkingNode.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteLowestWorkingNode extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { private org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesMinOpDepth minOpDepthSelect private Long minOpDepth public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public void reset () throws org.tmatesoft.svn.core.SVNException protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertDeleteFromBase$1.class
SVNWCDbInsertDeleteFromBase.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteFromBase$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteFromBase this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteFromBase, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertWorkingNodeFromBaseCopy.class
SVNWCDbInsertWorkingNodeFromBaseCopy.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWorkingNodeFromBaseCopy extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { protected org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException long n protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$CHANGELIST_LIST__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$CHANGELIST_LIST__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$CHANGELIST_LIST__Fields wc_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$CHANGELIST_LIST__Fields local_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$CHANGELIST_LIST__Fields notify public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$CHANGELIST_LIST__Fields changelist private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$CHANGELIST_LIST__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$CHANGELIST_LIST__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$CHANGELIST_LIST__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertDeleteFromNodeRecursive$1.class
SVNWCDbInsertDeleteFromNodeRecursive.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteFromNodeRecursive$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteFromNodeRecursive this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertDeleteFromNodeRecursive, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException long selectDepth long rowDepth String rowPresence protected java.lang.String getPathScope () protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectLock.class
SVNWCDbSelectLock.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectLock extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertTarget2.class
SVNWCDbInsertTarget2.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTarget2 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select private java.util.Map insertValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow public long exec () throws org.tmatesoft.svn.core.SVNException int n }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertExternalUpgrade.class
SVNWCDbInsertExternalUpgrade.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertExternalUpgrade extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateNodeFileinfo.class
SVNWCDbUpdateNodeFileinfo.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateNodeFileinfo extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { private org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesMaxOpDepth maxOpDepth public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectRevertListCopiedChildren.class
SVNWCDbSelectRevertListCopiedChildren.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectRevertListCopiedChildren extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException Long selectOpDepth long opDepth String path String selectPath }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectAllServerExcludedNodes.class
SVNWCDbSelectAllServerExcludedNodes.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectAllServerExcludedNodes extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException long rowDepth String selectPath String rowPath }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectLowestWorkingNode.class
SVNWCDbSelectLowestWorkingNode.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectLowestWorkingNode extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteNodesRecursive.class
SVNWCDbDeleteNodesRecursive.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteNodesRecursive extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException long selectDepth protected java.lang.String getPathScope () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$WORK_QUEUE__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORK_QUEUE__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORK_QUEUE__Fields id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORK_QUEUE__Fields work private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORK_QUEUE__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORK_QUEUE__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORK_QUEUE__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectSHA1Checksum.class
SVNWCDbSelectSHA1Checksum.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectSHA1Checksum extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String md5Checksum protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbCreateSchema$Statement.class
SVNWCDbCreateSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement extends java.lang.Object { private org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type type private String sql private boolean isDrop private String name private boolean isDropBeforeCreate public void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type, java.lang.String, java.lang.String) org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type type String name String sql public void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type, java.lang.String, java.lang.String, boolean) org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type type String name String sql boolean dropBeforeCreate public void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type, java.lang.String, java.lang.String, boolean, boolean) org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type type String name String sql boolean dropBeforeCreate boolean isDrop public boolean isDrop () public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Type getType () public java.lang.String getSql () public java.lang.String getName () public boolean isDropBeforeCreate () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectNodeChildrenWalkerInfo.class
SVNWCDbSelectNodeChildrenWalkerInfo.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectNodeChildrenWalkerInfo extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectTargetslist.class
SVNWCDbSelectTargetslist.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectTargetslist extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteLockOrphanRecursive.class
SVNWCDbDeleteLockOrphanRecursive.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteLockOrphanRecursive extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isRecursive () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException String selectPath String rowPath }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectWorkItem.class
SVNWCDbSelectWorkItem.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectWorkItem extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateActualProps.class
SVNWCDbUpdateActualProps.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateActualProps extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$WORKING_NODE__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields wc_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields local_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields parent_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields copyfrom_repos_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields copyfrom_repos_path public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields copyfrom_revnum public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields presence public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields kind public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields properties public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields depth public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields checksum public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields symlink_target public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields changed_rev public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields changed_date public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields changed_author public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields translated_size public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields last_mod_time private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$WORKING_NODE__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectActualChildrenTreeConflict.class
SVNWCDbSelectActualChildrenTreeConflict.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectActualChildrenTreeConflict extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectUnreferencedPristines.class
SVNWCDbSelectUnreferencedPristines.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectUnreferencedPristines extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectNodeInfoWithLock$LockStatement.class
SVNWCDbSelectNodeInfoWithLock.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectNodeInfoWithLock$LockStatement extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$LOCK__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$LOCK__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$LOCK__Fields repos_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$LOCK__Fields repos_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$LOCK__Fields lock_token public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$LOCK__Fields lock_owner public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$LOCK__Fields lock_comment public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$LOCK__Fields lock_date private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$LOCK__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$LOCK__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$LOCK__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertWCLock.class
SVNWCDbInsertWCLock.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertWCLock extends org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement { private org.tmatesoft.sqljet.core.table.ISqlJetTable table public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectBaseNode.class
SVNWCDbSelectBaseNode.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectBaseNode extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertActualEmpties.class
SVNWCDbInsertActualEmpties.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertActualEmpties extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e int n protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow java.util.Map insertValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertExternal.class
SVNWCDbInsertExternal.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertExternal extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$DELETE_LIST__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$DELETE_LIST__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$DELETE_LIST__Fields local_relpath private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$DELETE_LIST__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$DELETE_LIST__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$DELETE_LIST__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDBDoesNodeExists.class
SVNWCDBDoesNodeExists.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDBDoesNodeExists extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertTargetDepthFilesWithChangelist.class
SVNWCDbInsertTargetDepthFilesWithChangelist.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetDepthFilesWithChangelist extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement nodeCurrent private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement actualNode private java.util.Map insertValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow public long exec () throws org.tmatesoft.svn.core.SVNException String kind String parentRelPath String selectPath long wcId String localRelPath int n }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$NODES__Indices.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Indices extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Indices I_NODES_PARENT private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Indices[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Indices[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$NODES__Indices valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$ACTUAL_NODE__Indices.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Indices extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Indices I_ACTUAL_PARENT public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Indices I_ACTUAL_CHANGELIST private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Indices[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Indices[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$ACTUAL_NODE__Indices valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbUpdateNodeBaseDepth.class
SVNWCDbUpdateNodeBaseDepth.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbUpdateNodeBaseDepth extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectActualTreeConflict.class
SVNWCDbSelectActualTreeConflict.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectActualTreeConflict extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected void defineFields () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertActualProps.class
SVNWCDbInsertActualProps.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertActualProps extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteWCLock.class
SVNWCDbDeleteWCLock.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteWCLock extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectNodeProps.class
SVNWCDbSelectNodeProps.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectNodeProps extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSchema$BASE_NODE__Fields.class
SVNWCDbSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields wc_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields local_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields parent_relpath public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields repos_id public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields repos_path public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields revnum public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields presence public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields kind public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields properties public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields depth public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields checksum public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields symlink_target public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields changed_rev public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields changed_date public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields changed_author public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields translated_size public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields last_mod_time public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields dav_cache public static final enum org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields file_external private static final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields[] $VALUES public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields[] values () public static org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema$BASE_NODE__Fields valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectBaseNodeWithLock$LockStatement.class
SVNWCDbSelectBaseNodeWithLock.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectBaseNodeWithLock$LockStatement extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () public boolean isColumnNull (java.lang.String) throws org.tmatesoft.svn.core.SVNException String f }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertOrIgnorePristine.class
SVNWCDbInsertOrIgnorePristine.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertOrIgnorePristine extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map values }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectRepository.class
SVNWCDbSelectRepository.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectRepository extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDBSelectExternalProperties.class
SVNWCDBSelectExternalProperties.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDBSelectExternalProperties extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { private org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbNodesMaxOpDepth maxOpDepthSelect private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement propertiesSelect public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException private boolean hasMaxOpDepth () throws org.tmatesoft.svn.core.SVNException long rowOpDepth Long maxOpDepth public org.tmatesoft.svn.core.SVNProperties getColumnProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String f org.tmatesoft.svn.core.SVNProperties properties protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected java.lang.String getPathScope () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbDeleteBaseNode.class
SVNWCDbDeleteBaseNode.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbDeleteBaseNode extends org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertActualEmpties$1.class
SVNWCDbInsertActualEmpties.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertActualEmpties$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertActualEmpties this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertActualEmpties, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertTargetWithChangelist$2.class
SVNWCDbInsertTargetWithChangelist.java package org.tmatesoft.svn.core.internal.wc17.db.statement org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetWithChangelist$2 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { final synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetWithChangelist this$0 void <init> (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertTargetWithChangelist, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbSelectNodeInfo.class
SVNWCDbSelectNodeInfo.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSelectNodeInfo extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected void defineFields () protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbInsertActualTextConflicts.class
SVNWCDbInsertActualTextConflicts.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbInsertActualTextConflicts extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { static final synthetic boolean $assertionsDisabled public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb protected java.util.Map getInsertValues () java.util.Map v static void <clinit> () }
org/tmatesoft/svn/core/internal/wc17/db/statement/SVNWCDbCreateSchema.class
SVNWCDbCreateSchema.java package org.tmatesoft.svn.core.internal.wc17.db.statement public org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema extends org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement { public static final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] MAIN_DB_STATEMENTS public static final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] TARGETS_LIST public static final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] DROP_TARGETS_LIST public static final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] NODE_PROPS_CACHE public static final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] DROP_NODE_PROPS_CACHE public static final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] DELETE_LIST public static final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] DROP_DELETE_LIST public static final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] REVERT_LIST public static final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] DROP_REVERT_LIST public static final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] CHANGELIST_LIST public static final org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] DROP_CHANGELIST_LIST private org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] statements private int userVersion public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[], int) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] statements int userVersion public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e static synthetic org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema$Statement[] access$000 (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema) org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema x0 static synthetic int access$100 (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema) org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbCreateSchema x0 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/
org/tmatesoft/svn/core/internal/wc2/SvnRepositoryAccess$RevisionsPair.class
SvnRepositoryAccess.java package org.tmatesoft.svn.core.internal.wc2 public final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RevisionsPair extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RevisionsPair revNumber public static final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RevisionsPair youngestRevision private static final synthetic org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RevisionsPair[] $VALUES public static org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RevisionsPair[] values () public static org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RevisionsPair valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/SvnRepositoryAccess$LocationsInfo.class
SvnRepositoryAccess.java package org.tmatesoft.svn.core.internal.wc2 public final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$LocationsInfo extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$LocationsInfo startUrl public static final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$LocationsInfo startRevision public static final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$LocationsInfo endUrl public static final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$LocationsInfo endRevision private static final synthetic org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$LocationsInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$LocationsInfo[] values () public static org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$LocationsInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/SvnRepositoryAccess.class
SvnRepositoryAccess.java package org.tmatesoft.svn.core.internal.wc2 public abstract org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess extends java.lang.Object { private org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private org.tmatesoft.svn.core.wc2.ISvnOperationOptionsProvider operationOptionsProvider protected void <init> (org.tmatesoft.svn.core.wc2.ISvnOperationOptionsProvider, org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.ISvnOperationOptionsProvider operationOptionsProvider org.tmatesoft.svn.core.internal.wc17.SVNWCContext context protected org.tmatesoft.svn.core.wc2.ISvnOperationOptionsProvider getOperationOptionsProvider () protected org.tmatesoft.svn.core.internal.wc17.SVNWCContext getWCContext () public abstract org.tmatesoft.svn.core.wc2.SvnCopySource createRemoteCopySource (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.wc2.SvnCopySource) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc17.db.Structure createRepositoryFor (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc17.db.Structure getRevisionNumber (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.internal.wc17.db.Structure) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc17.db.Structure getURLFromPath (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException protected org.tmatesoft.svn.core.wc.SVNRevision[] resolveRevisions (org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean) org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean isURL boolean noticeLocalModifications public org.tmatesoft.svn.core.io.SVNRepository createRepository (org.tmatesoft.svn.core.SVNURL, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String reposUUID org.tmatesoft.svn.core.SVNURL url String expectedUuid boolean mayReuse org.tmatesoft.svn.core.io.SVNRepository repository public org.tmatesoft.svn.core.internal.wc17.db.Structure getLocations (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure urlInfo long endRevisionNumber Object source org.tmatesoft.svn.core.SVNErrorMessage err Object source org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.wc2.SvnTarget path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end long pegRevisionNumber long startRevisionNumber long endRevisionNumber org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.internal.wc17.db.Structure pair org.tmatesoft.svn.core.internal.wc17.db.Structure result org.tmatesoft.svn.core.SVNURL repositoryRootURL long[] revisionsRange java.util.Map locations org.tmatesoft.svn.core.io.SVNLocationEntry startPath org.tmatesoft.svn.core.io.SVNLocationEntry endPath public java.util.Map getReposMergeInfo (org.tmatesoft.svn.core.io.SVNRepository, java.lang.String, long, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNMergeInfo mergeInfo org.tmatesoft.svn.core.io.SVNRepository repository String path long revision org.tmatesoft.svn.core.SVNMergeInfoInheritance inheritance boolean squelchIncapable java.util.Map reposMergeInfo String rootRelativePath java.util.Map targetMergeInfo protected java.lang.String getPathRelativeToRoot (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL reposRootURL org.tmatesoft.svn.core.io.SVNRepository repos String reposRootPath String absPath public java.lang.String getPathRelativeToSession (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.SVNRepository) org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL sessionURL org.tmatesoft.svn.core.io.SVNRepository repos String reposPath String absPath public org.tmatesoft.svn.core.io.SVNLocationSegment getYoungestCommonAncestor (org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange ycRange org.tmatesoft.svn.core.SVNMergeRangeList intersection String path org.tmatesoft.svn.core.SVNMergeRangeList ranges1 org.tmatesoft.svn.core.SVNMergeRangeList ranges2 java.util.Iterator paths org.tmatesoft.svn.core.SVNURL url1 long rev1 org.tmatesoft.svn.core.SVNURL url2 long rev2 boolean[] hasZero1 boolean[] hasZero2 java.util.Map history1 java.util.Map history2 long ycRevision String ycPath private java.util.Map getHistoryAsMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, long, long, boolean[], org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNLocationSegment oldest java.util.List segments org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision long rangeYoungest long rangeOldest boolean[] hasZero org.tmatesoft.svn.core.io.SVNRepository repos long[] pegRevNum org.tmatesoft.svn.core.internal.wc17.db.Structure pair boolean closeSession public static java.util.Map getMergeInfoFromSegments (java.util.Collection) org.tmatesoft.svn.core.io.SVNLocationSegment segment String sourcePath java.util.Collection pathRanges org.tmatesoft.svn.core.SVNMergeRange range java.util.Iterator segmentsIter String path java.util.Collection pathRanges java.util.Iterator paths java.util.Collection segments java.util.Map mergeInfo java.util.Map result public org.tmatesoft.svn.core.io.SVNLocationEntry getCopySource (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repository long atRev Object[] copyFrom public java.util.Map getHistoryAsMergeInfo (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.wc2.SvnTarget, long, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure reposInfo org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.Structure pair org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.wc2.SvnTarget target long youngest long oldest long pegRevnum java.util.List segments }
org/tmatesoft/svn/core/internal/wc2/ISvnCommitRunner.class
ISvnCommitRunner.java package org.tmatesoft.svn.core.internal.wc2 public abstract org.tmatesoft.svn.core.internal.wc2.ISvnCommitRunner extends java.lang.Object { public abstract org.tmatesoft.svn.core.wc2.SvnCommitPacket collectCommitItems (org.tmatesoft.svn.core.wc2.SvnCommit) throws org.tmatesoft.svn.core.SVNException public abstract void disposeCommitPacket (java.lang.Object) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/SvnLocalOperationRunner.class
SvnLocalOperationRunner.java package org.tmatesoft.svn.core.internal.wc2 public abstract org.tmatesoft.svn.core.internal.wc2.SvnLocalOperationRunner extends org.tmatesoft.svn.core.internal.wc2.SvnOperationRunner { protected void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected java.io.File getFirstTarget () protected void sleepForTimestamp () }
org/tmatesoft/svn/core/internal/wc2/SvnRepositoryAccess$RepositoryInfo.class
SvnRepositoryAccess.java package org.tmatesoft.svn.core.internal.wc2 public final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RepositoryInfo extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RepositoryInfo repository public static final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RepositoryInfo revision public static final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RepositoryInfo url private static final synthetic org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RepositoryInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RepositoryInfo[] values () public static org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$RepositoryInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/SvnRemoteOperationRunner.class
SvnRemoteOperationRunner.java package org.tmatesoft.svn.core.internal.wc2 public abstract org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner extends org.tmatesoft.svn.core.internal.wc2.SvnOperationRunner { private org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess repositoryAccess private org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration detectedWcGeneration public void <init> () public void reset (org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess getRepositoryAccess () throws org.tmatesoft.svn.core.SVNException private org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getDetectedWcGeneration () protected boolean isRevisionLocalToWc (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision revision public org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getWcGeneration () }
org/tmatesoft/svn/core/internal/wc2/SvnOperationRunner.class
SvnOperationRunner.java package org.tmatesoft.svn.core.internal.wc2 public abstract org.tmatesoft.svn.core.internal.wc2.SvnOperationRunner extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnOperationRunner org.tmatesoft.svn.core.wc.ISVNEventHandler { private org.tmatesoft.svn.core.wc2.SvnOperation operation private org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext public void <init> () public java.lang.Object run (org.tmatesoft.svn.core.wc2.SvnOperation) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation operation public void reset (org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration public void setWcContext (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) org.tmatesoft.svn.core.internal.wc17.SVNWCContext context protected org.tmatesoft.svn.core.internal.wc17.SVNWCContext getWcContext () protected abstract java.lang.Object run () throws org.tmatesoft.svn.core.SVNException public void setOperation (org.tmatesoft.svn.core.wc2.SvnOperation) org.tmatesoft.svn.core.wc2.SvnOperation operation protected org.tmatesoft.svn.core.wc2.SvnOperation getOperation () public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress protected void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event }
org/tmatesoft/svn/core/internal/wc2/SvnRepositoryAccess$1.class
SvnRepositoryAccess.java package org.tmatesoft.svn.core.internal.wc2 org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$1 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler { final synthetic Object[] val$copyFrom final synthetic org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess, java.lang.Object[]) public void handleLocationSegment (org.tmatesoft.svn.core.io.SVNLocationSegment) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNLocationSegment locationSegment }
org/tmatesoft/svn/core/internal/wc2/SvnWcGeneration.class
SvnWcGeneration.java package org.tmatesoft.svn.core.internal.wc2 public final enum org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration V16 public static final enum org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration V17 public static final enum org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration NOT_DETECTED private static final synthetic org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration[] $VALUES public static org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration[] values () public static org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/SvnRepositoryAccess$UrlInfo.class
SvnRepositoryAccess.java package org.tmatesoft.svn.core.internal.wc2 public final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$UrlInfo extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$UrlInfo url public static final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$UrlInfo pegRevision public static final enum org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$UrlInfo dropRepsitory private static final synthetic org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$UrlInfo[] $VALUES public static org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$UrlInfo[] values () public static org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess$UrlInfo valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/ng/
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo28.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo28 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable { private void <init> () public void bumpTo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.io.File wcRootAbsPath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$UpdateChecksum uc synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgCommit$1.class
SvnNgCommit.java package org.tmatesoft.svn.core.internal.wc2.ng synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeinfoUtil$1.class
SvnNgMergeinfoUtil.java package org.tmatesoft.svn.core.internal.wc2.ng final org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic java.util.Map val$mergeInfoProperties void <init> (java.util.Map) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNProperties object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgGetProperties.class
SvnNgGetProperties.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgGetProperties extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected org.tmatesoft.svn.core.SVNProperties run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context protected org.tmatesoft.svn.core.SVNProperties run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File target boolean pristine org.tmatesoft.svn.core.SVNNodeKind kind public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnGetProperties, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnGetProperties operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnDiffStatusReceiver.class
SvnDiffStatusReceiver.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffStatusReceiver extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { private final org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private final java.io.File anchor private final org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb db private final org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback callback private final boolean showCopiesAsAdds private final boolean gitFormat private final boolean ignoreAncestry private final java.util.Collection changelists static final synthetic boolean $assertionsDisabled public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb, org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback, boolean, boolean, boolean, java.util.Collection) org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File anchor org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb db org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback callback boolean ignoreAncestry boolean showCopiesAsAdds boolean gitFormat java.util.Collection changelists public org.tmatesoft.svn.core.internal.wc17.SVNWCContext getContext () public java.io.File getAnchor () public org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb getDb () public org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback getCallback () public boolean isIgnoreAncestry () public boolean isShowCopiesAsAdds () public boolean isGitFormat () public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnStatus) throws org.tmatesoft.svn.core.SVNException String path String path org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties actualProps org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnStatus status org.tmatesoft.svn.core.wc.SVNStatusType nodeStatus java.io.File localAbspath private void fileDiff (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind baseKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus baseStatus long baseRevision org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbNodeCheckReplaceData checkReplaceData org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo wcDbAdditionInfo org.tmatesoft.svn.core.wc2.SvnChecksum delChecksum org.tmatesoft.svn.core.SVNProperties delProps org.tmatesoft.svn.core.wc2.SvnChecksum delChecksum org.tmatesoft.svn.core.SVNProperties delProps java.io.File delTextAbspath String delMimeType java.io.File pristineAbspath java.io.File pristineAbspath java.io.File translatedFile org.tmatesoft.svn.core.SVNProperties pristineProps org.tmatesoft.svn.core.SVNProperties actualProps String actualMimeType org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties pristineProps java.io.File translatedFile org.tmatesoft.svn.core.SVNProperties pristineProps boolean modified String pristineMimeType org.tmatesoft.svn.core.SVNProperties actualProps String actualMimeType org.tmatesoft.svn.core.SVNProperties propChanges java.io.File localAbspath String path org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind long revision org.tmatesoft.svn.core.wc2.SvnChecksum checksum java.io.File originalReposRelpath Object opRoot boolean hadProps boolean propsMod boolean haveBase boolean haveMoreWork boolean replaced boolean baseReplace org.tmatesoft.svn.core.wc2.SvnChecksum baseChecksum java.io.File pristineAbspath private java.io.File getEmptyFile () throws org.tmatesoft.svn.core.SVNException public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnDiffEditor.class
SvnDiffEditor.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor { private org.tmatesoft.svn.core.SVNDepth depth private org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb db private java.io.File anchorAbspath private String target private boolean useTextBase private boolean showCopiesAsAdds private org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback callback private java.util.Collection changelists private boolean ignoreAncestry private boolean useGitDiffFormat private org.tmatesoft.svn.core.ISVNCanceller canceller private boolean reverseOrder private long revision private boolean rootOpened private org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry rootEntry private org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry currentEntry private java.util.Collection tempFiles private final org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor deltaProcessor static final synthetic boolean $assertionsDisabled public void <init> (java.io.File, java.lang.String, org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.internal.wc17.SVNWCContext, boolean, boolean, boolean, boolean, java.util.Collection, boolean, org.tmatesoft.svn.core.ISVNCanceller) java.io.File anchorAbspath String target org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback callback org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc17.SVNWCContext context boolean reverseOrder boolean useTextBase boolean showCopiesAsAdds boolean ignoreAncestry java.util.Collection changelists boolean useGitDiffFormat org.tmatesoft.svn.core.ISVNCanceller canceller public void <init> () public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException java.io.File textBase org.tmatesoft.svn.core.SVNProperties baseProps String baseMimeType String path long revision java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfoStructure org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.SVNDepth subdirDepth public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.SVNDepth subdirDepth public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties originalProps org.tmatesoft.svn.core.SVNProperties originalProps org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties reposProps org.tmatesoft.svn.core.SVNProperties originalProps public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.InputStream sourceStream String path String baseChecksum java.io.InputStream sourceStream public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnChecksum reposChecksum org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfoStructure org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.wc2.SvnChecksum pristineChecksum boolean hadProps boolean propsMod org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNProperties pristineProps java.io.File pristineFile org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfoStructure org.tmatesoft.svn.core.SVNProperties pristineProps org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo wcDbAdditionInfo java.io.File localFile java.io.File localFile org.tmatesoft.svn.core.SVNProperties originalProps String originalMimeType org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.wc2.SvnChecksum pristineChecksum boolean hadProps boolean propsMod org.tmatesoft.svn.core.SVNProperties pristineProps java.io.File pristineFile org.tmatesoft.svn.core.SVNProperties reposProps String reposMimeType java.io.File reposFile boolean modified java.io.File localFile org.tmatesoft.svn.core.SVNProperties originalProps String path String textChecksum public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void abortEdit () throws org.tmatesoft.svn.core.SVNException public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String checksum private java.io.File getPristineFile (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure pristineInfoStructure org.tmatesoft.svn.core.wc2.SvnChecksum checksum org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo java.io.File localAbspath boolean useTextBase org.tmatesoft.svn.core.wc2.SvnChecksum checksum private java.lang.String getPropMimeType (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties baseProps private void reportFileAdded (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo wcDbAdditionInfo org.tmatesoft.svn.core.SVNProperties wcProps java.io.File sourceFile java.io.File localAbspath String path org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfoStructure long revision org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.SVNProperties emptyProps org.tmatesoft.svn.core.SVNProperties wcProps String mimeType org.tmatesoft.svn.core.SVNProperties propchanges java.io.File sourceFile java.io.File translatedFile private void reportDirectoryAdded (java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties wcProps org.tmatesoft.svn.core.SVNProperties wcProps org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNDepth depthBelowHere java.io.File childAbspath org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfoStructure org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind String childPath String name java.util.Iterator i$ java.io.File localAbspath String path org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.SVNProperties emptyProps java.util.Set children private void fileDiff (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbAdditionInfo wcDbAdditionInfo String baseMimeType org.tmatesoft.svn.core.SVNProperties baseProps String baseMimeType org.tmatesoft.svn.core.SVNProperties workingProps String workingMimeType org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties baseProps boolean modified org.tmatesoft.svn.core.SVNProperties baseProps String baseMimeType org.tmatesoft.svn.core.SVNProperties workingProps String workingMimeType org.tmatesoft.svn.core.SVNProperties propChanges java.io.File localAbspath String path boolean useBase org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfoStructure org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status long revision boolean haveBase org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus baseStatus long revertBaseRevision boolean replaced java.io.File originalReposRelpath java.io.File textBase java.io.File translatedFile private java.io.File getLocalAbspath (java.lang.String) String path private void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException private org.tmatesoft.svn.core.SVNProperties applyPropsChanges (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) String name org.tmatesoft.svn.core.SVNPropertyValue value java.util.Iterator names org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties result private static void reversePropChanges (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) String name org.tmatesoft.svn.core.SVNPropertyValue newValue org.tmatesoft.svn.core.SVNPropertyValue oldValue java.util.Iterator names org.tmatesoft.svn.core.SVNProperties base org.tmatesoft.svn.core.SVNProperties diff java.util.Collection namesList private void walkLocalNodesDiff (java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNDepth, java.util.Set) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PropDiffs propDiffs org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties propChanges boolean modified org.tmatesoft.svn.core.SVNDepth depthBelowHere java.io.File childAbspath org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfoStructure org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind String childPath String name java.util.Iterator i$ java.io.File localAbspath String path org.tmatesoft.svn.core.SVNDepth depth java.util.Set compared boolean inAnchorNotTarget java.util.Set children private java.io.File createTempFile (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File tempDir java.io.File tempFile private void addToCompared (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry, java.lang.String) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry entry String path public void cleanup () org.tmatesoft.svn.core.SVNException ignore java.io.File tempFile java.util.Iterator i$ public long getTargetRevision () public static org.tmatesoft.svn.core.SVNProperties computePropDiff (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNPropertyValue oldValue org.tmatesoft.svn.core.SVNPropertyValue value String newPropName java.util.Iterator names String oldPropName java.util.Iterator names org.tmatesoft.svn.core.SVNProperties props1 org.tmatesoft.svn.core.SVNProperties props2 org.tmatesoft.svn.core.SVNProperties propsDiff static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgSetChangelist.class
SvnNgSetChangelist.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgSetChangelist extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.util.Collection applicableChangelists String[] listsNames protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$UpdateChecksum$1$1.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$UpdateChecksum$1$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$UpdateChecksum$1 this$1 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$UpdateChecksum$1, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException protected void defineFields () protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgCommitUtil$NodeCommitStatus.class
SvnNgCommitUtil.java package org.tmatesoft.svn.core.internal.wc2.ng final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus kind public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus added public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus deleted public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus notPresent public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus excluded public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus isOpRoot public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus isReplaceRoot public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus symlink public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus reposRelPath public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus revision public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus originalReposRelPath public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus originalRevision public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus changelist public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus conflicted public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus updateRoot public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus lockToken public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus propsMod private static final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus[] $VALUES public static org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus[] values () public static org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$NodeCommitStatus valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeDriver$NoopLogHandler.class
SvnNgMergeDriver.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$NoopLogHandler extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { private org.tmatesoft.svn.core.SVNMergeRangeList operativeRanges private org.tmatesoft.svn.core.SVNMergeRangeList mergedRanges private String sourceReposAbsPath final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver this$0 private void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver) public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child org.tmatesoft.svn.core.SVNMergeRangeList rl org.tmatesoft.svn.core.SVNMergeRangeList intersection String relativePath java.io.File cwmiPath org.tmatesoft.svn.core.SVNMergeRangeList pathExclplicitRangeList boolean mergeInfoInherited String changedPath java.util.Iterator i$ org.tmatesoft.svn.core.SVNLogEntry logEntry boolean logEntryRevisionRequired long revision synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver x0 org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$1 x1 static synthetic java.lang.String access$102 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$NoopLogHandler, java.lang.String) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$NoopLogHandler x0 String x1 static synthetic org.tmatesoft.svn.core.SVNMergeRangeList access$202 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$NoopLogHandler, org.tmatesoft.svn.core.SVNMergeRangeList) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$NoopLogHandler x0 org.tmatesoft.svn.core.SVNMergeRangeList x1 static synthetic org.tmatesoft.svn.core.SVNMergeRangeList access$302 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$NoopLogHandler, org.tmatesoft.svn.core.SVNMergeRangeList) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$NoopLogHandler x0 org.tmatesoft.svn.core.SVNMergeRangeList x1 static synthetic org.tmatesoft.svn.core.SVNMergeRangeList access$300 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$NoopLogHandler) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$NoopLogHandler x0 static synthetic org.tmatesoft.svn.core.SVNMergeRangeList access$200 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$NoopLogHandler) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$NoopLogHandler x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgGetStatus.class
SvnNgGetStatus.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgGetStatus extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { private boolean targetDeletedInRepository public void <init> () protected org.tmatesoft.svn.core.wc2.SvnStatus run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException java.io.File directoryPath String targetName org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err boolean notAWc org.tmatesoft.svn.core.SVNErrorMessage error long rev boolean replaced boolean added org.tmatesoft.svn.core.io.SVNRepository locksRepos boolean serverSupportsDepth org.tmatesoft.svn.core.internal.wc17.SVNStatusReporter17 statusReporter String target org.tmatesoft.svn.core.SVNDepth statusDepth org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.io.SVNRepository repository long rev org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17 editor org.tmatesoft.svn.core.internal.wc17.SVNReporter17 reporter long reportedFiles long totalFiles org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17 editor org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore externalsStore org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File directoryPath String targetName org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNDepth depth String[] globalIgnores private void doExternalStatus (java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnGetStatus getStatus org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.SVNExternal external java.io.File fullPath int i java.io.File path String propVal org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals java.util.Iterator paths java.util.Map externalsNew private void setTargetDeletedInRepository (boolean) boolean deleted private boolean isTargetDeletedInRepository () public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnStatus object public void reset (org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgDiff$2.class
SvnNgDiff.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgDiff$2 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { final synthetic long val$revisionNumber1 final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgDiff this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgDiff, long) public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNReporter reporter }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgSetLock.class
SvnNgSetLock.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgSetLock extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner implements org.tmatesoft.svn.core.io.ISVNLockHandler { public void <init> () protected org.tmatesoft.svn.core.SVNLock run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.util.Map entriesMap java.util.Map pathsRevisionsMap org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRepositoryAccess repositoryAccess org.tmatesoft.svn.core.SVNURL topURL org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL rootURL public void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext access$000 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgSetLock) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgSetLock x0 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext access$100 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgSetLock) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgSetLock x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgReposToWcCopy$SvnCopyPair.class
SvnNgReposToWcCopy.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair extends java.lang.Object { org.tmatesoft.svn.core.SVNNodeKind srcKind long revNum org.tmatesoft.svn.core.SVNURL sourceOriginal java.io.File sourceFile org.tmatesoft.svn.core.SVNURL source org.tmatesoft.svn.core.wc.SVNRevision sourceRevision org.tmatesoft.svn.core.wc.SVNRevision sourcePegRevision java.io.File dst private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo24.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo24 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable { private void <init> () public void bumpTo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.io.File wcRootAbsPath org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement stmt synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$UpdateChecksum.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$UpdateChecksum extends java.lang.Object { private org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb private Enum tableName public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb Enum tableName public void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement stmt }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgAbstractUpdate$1$1.class
SvnNgAbstractUpdate.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate$1$1 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNDirEntryHandler { final synthetic java.util.Map val$entries final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate$1 this$1 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate$1, java.util.Map) public void handleDirEntry (org.tmatesoft.svn.core.SVNDirEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDirEntry dirEntry }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgRemove.class
SvnNgRemove.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemove extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException java.io.File path java.io.File lockRoot org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context public static void checkCanDelete (org.tmatesoft.svn.core.wc2.SvnOperationFactory, org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc2.SvnOperationFactory opFactory org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File path org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.wc2.SvnGetStatus status public static void delete (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNConflictDescription conflict java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File path boolean keepLocal boolean deleteUnversioned org.tmatesoft.svn.core.wc.ISVNEventHandler handler org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status java.util.List conflicts protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgRemoteDiffEditor$FileBaton.class
SvnNgRemoteDiffEditor.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$FileBaton extends java.lang.Object { boolean added boolean treeConflicted boolean skip String repoPath java.io.File wcPath java.io.File startRevisionFile java.io.File endRevisionFile org.tmatesoft.svn.core.SVNProperties pristineProps long baseRevision org.tmatesoft.svn.core.wc2.SvnChecksum resultMd5Checksum org.tmatesoft.svn.core.SVNProperties propChanges public org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor deltaProcessor final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor this$0 private void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor) public void loadFile (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.io.SVNRepository, boolean, java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.io.File tmpDir java.io.OutputStream os org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.io.SVNRepository repos boolean propsOnly java.util.Collection tmpFiles public java.lang.String[] getMimeTypes () String[] r synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor x0 org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$1 x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnDiffCallback.class
SvnDiffCallback.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback { private org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator generator private java.io.OutputStream outputStream private long revision2 private long revision1 public void <init> (org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator, long, long, java.io.OutputStream) org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator generator long rev1 long rev2 java.io.OutputStream outputStream public void fileOpened (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path long revision public void fileChanged (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path java.io.File leftFile java.io.File rightFile long rev1 long rev2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties originalProperties public void fileAdded (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, java.io.File, long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path java.io.File leftFile java.io.File rightFile long rev1 long rev2 String mimeType1 String mimeType2 java.io.File copyFromPath long copyFromRevision org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties originalProperties public void fileDeleted (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, java.io.File, java.io.File, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path java.io.File leftFile java.io.File rightFile String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties originalProperties public void dirDeleted (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path public void dirOpened (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path long revision public void dirAdded (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, long, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path long revision String copyFromPath long copyFromRevision public void dirPropsChanged (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path boolean dirWasAdded org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties regularDiff public void dirClosed (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path boolean dirWasAdded private java.lang.String getRevisionString (long) long revision private static org.tmatesoft.svn.core.SVNProperties getRegularProperties (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties regularPropertiesChanges public void propertiesChanged (java.io.File, long, long, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException java.io.File path long revision1 long revision2 boolean dirWasAdded org.tmatesoft.svn.core.SVNProperties diff org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties regularDiff private void displayContentChanged (java.io.File, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind, java.io.File) throws org.tmatesoft.svn.core.SVNException String conversionEncoding java.io.IOException e java.io.IOException e java.io.File path java.io.File leftFile java.io.File rightFile long rev1 long rev2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operation java.io.File copyFromPath boolean resetEncoding java.io.OutputStream result String encoding private java.lang.String defineEncoding (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.SVNProperties diff org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator defaultGenerator String originalEncoding String changedEncoding private java.lang.String getCharsetByMimeType (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator) org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator generator String mimeType String charset private java.lang.String getCharset (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator) org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator generator String charset private java.lang.String getCharset (java.lang.String, org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator, boolean) String charset org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator generator boolean allowNative private java.lang.String defineConversionEncoding (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.SVNProperties diff org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator defaultGenerator String originalCharset String changedCharset String globalEncoding private boolean adjustDiffGenerator (java.lang.String) java.io.UnsupportedEncodingException e byte[] eol String eolString String charset boolean encodingAdjusted private org.tmatesoft.svn.core.wc2.SvnTarget getTarget (java.io.File) java.io.File path }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo24$1.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo24$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement select final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo24 this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo24, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues long rowCount }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeinfoUtil$SvnMergeInfoInfo.class
SvnNgMergeinfoUtil.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoInfo extends java.lang.Object { java.util.Map mergeinfo boolean inherited String walkRelPath public void <init> () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnDiffGenerator$EmptyDetectionWriter.class
SvnDiffGenerator.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffGenerator$EmptyDetectionWriter extends java.io.Writer { private final java.io.Writer writer private boolean somethingWritten final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffGenerator this$0 public void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffGenerator, java.io.Writer) java.io.Writer writer public boolean isSomethingWritten () public void write (int) throws java.io.IOException int c public void write (char[]) throws java.io.IOException char[] cbuf public void write (char[], int, int) throws java.io.IOException char[] cbuf int off int len public void write (java.lang.String) throws java.io.IOException String str public void write (java.lang.String, int, int) throws java.io.IOException String str int off int len public java.io.Writer append (java.lang.CharSequence) throws java.io.IOException CharSequence csq public java.io.Writer append (java.lang.CharSequence, int, int) throws java.io.IOException CharSequence csq int start int end public java.io.Writer append (char) throws java.io.IOException char c public void flush () throws java.io.IOException public void close () throws java.io.IOException public volatile synthetic java.lang.Appendable append (char) throws java.io.IOException char x0 public volatile synthetic java.lang.Appendable append (java.lang.CharSequence, int, int) throws java.io.IOException CharSequence x0 int x1 int x2 public volatile synthetic java.lang.Appendable append (java.lang.CharSequence) throws java.io.IOException CharSequence x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgLogMergeInfo.class
SvnNgLogMergeInfo.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnLogMergeInfo, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnLogMergeInfo operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration boolean targetOk boolean sourceOk public org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getWcGeneration () protected org.tmatesoft.svn.core.SVNLogEntry run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException String subtreeRelPath java.util.Map subtreeSourceHistory java.util.Map mergedViaHistory org.tmatesoft.svn.core.SVNMergeRangeList rl java.util.Iterator i$ org.tmatesoft.svn.core.SVNMergeRangeList rl java.util.Iterator i$ java.util.Map subtreeMergeInfo java.util.Map subtreeHistory java.util.Map subtreeSourceHistory java.util.Map subtreeInheritableMergeInfo java.util.Map subtreeNonInheritableMergeInfo java.util.Map mergedNonInheritableMergeInfo java.util.Map mergedMergeInfo boolean isSubtree org.tmatesoft.svn.core.SVNMergeRangeList subtreeMergeRangeList String subtreePath java.util.Iterator i$ org.tmatesoft.svn.core.SVNMergeRangeList subtreeMergedRangeList org.tmatesoft.svn.core.SVNMergeRangeList deletedRanges String path java.util.Iterator i$ org.tmatesoft.svn.core.SVNMergeRangeList rl java.util.Iterator i$ org.tmatesoft.svn.core.SVNMergeRangeList sourceMasterRangeList org.tmatesoft.svn.core.SVNMergeRangeList subtreeMergedList org.tmatesoft.svn.core.SVNMergeRangeList intersection String key java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.SVNURL[] root java.util.Map mergeInfoCatalog org.tmatesoft.svn.core.wc2.SvnTarget target java.io.File reposRelPath java.util.Map history java.util.Map sourceHistory String reposRelPathStr org.tmatesoft.svn.core.SVNMergeRangeList masterNonInheritableRangeList org.tmatesoft.svn.core.SVNMergeRangeList masterInheritableRangeList java.util.Map inheritableSubtreeMerges java.util.List mergeSourcePaths String logTarget org.tmatesoft.svn.core.SVNMergeRange youngestRange org.tmatesoft.svn.core.SVNMergeRangeList youngestRangeList org.tmatesoft.svn.core.SVNURL logTargetURL private void logForMergeInfoRangeList (org.tmatesoft.svn.core.SVNURL, java.util.List, boolean, org.tmatesoft.svn.core.SVNMergeRangeList, java.util.Map, java.lang.String, boolean, java.lang.String[], org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) throws org.tmatesoft.svn.core.SVNException java.util.Map mi String relativePath java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL sourceURL java.util.List mergeSourcePaths boolean filteringMerged org.tmatesoft.svn.core.SVNMergeRangeList rangelist java.util.Map targetCatalog String absReposTargetPath boolean discoverChangedPaths String[] revprops org.tmatesoft.svn.core.wc2.ISvnObjectReceiver receiver java.util.Map adjustedCatalog java.util.List ranges org.tmatesoft.svn.core.SVNMergeRange youngestRange org.tmatesoft.svn.core.SVNMergeRange oldestRange long youngestRev long oldestRev org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver filteringReceiver org.tmatesoft.svn.core.wc2.SvnLog log protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgWcToWcCopy$SvnCopyPair.class
SvnNgWcToWcCopy.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$SvnCopyPair extends java.lang.Object { java.io.File source java.io.File dst java.io.File dstParent String baseName private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgCommitUtil$1.class
SvnNgCommitUtil.java package org.tmatesoft.svn.core.internal.wc2.ng final org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ISVNWCNodeHandler { final synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext val$context final synthetic java.util.Map val$lockTokens void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.util.Map) public void nodeFound (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock nodeLock org.tmatesoft.svn.core.SVNURL url }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgGetMergeInfo.class
SvnNgGetMergeInfo.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgGetMergeInfo extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnGetMergeInfo, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnGetMergeInfo operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration public org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getWcGeneration () protected java.util.Map run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException String relativePath String relativePath org.tmatesoft.svn.core.SVNURL fullURL String path java.util.Iterator i$ java.util.Map result org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.SVNURL[] root java.util.Map catalog java.util.Map mergeinfo protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$2.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng final org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$2 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeReintegrate.class
SvnNgMergeReintegrate.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnMerge, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnMerge operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File lockPath private java.io.File getLockPath (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File firstTarget org.tmatesoft.svn.core.SVNNodeKind kind private void merge (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.wc2.SvnTarget, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String catalog org.tmatesoft.svn.core.SVNErrorMessage err java.util.Map finalUnmergedCatalog String ycPath java.util.Map mergedToSourceCatalog java.util.Map unmergedToSourceCatalog org.tmatesoft.svn.core.wc2.SvnTarget url1 org.tmatesoft.svn.core.io.SVNLocationSegment yc org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.wc2.SvnTarget mergeSource java.io.File mergeTarget boolean dryRun org.tmatesoft.svn.core.internal.wc.SVNFileType targetKind org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.SVNURL wcReposRoot org.tmatesoft.svn.core.internal.wc17.db.Structure sourceReposInfo org.tmatesoft.svn.core.SVNURL sourceReposRoot org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver mergeDriver long targetBaseRev long rev1 java.io.File sourceReposRelPath java.io.File targetReposRelPath java.util.Map explicitMergeInfo org.tmatesoft.svn.core.wc2.SvnGetProperties pg org.tmatesoft.svn.core.io.SVNRepository sourceRepository long rev2 org.tmatesoft.svn.core.SVNURL targetUrl org.tmatesoft.svn.core.io.SVNRepository targetRepository private void findUnsyncedRanges (java.io.File, java.io.File, java.util.Map, java.util.Map, java.util.Map, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRangeList mrl java.util.Iterator i$ java.util.Map mi java.io.File cpath java.util.Iterator i$ long youngest long oldest java.io.File sourceReposRelPath java.io.File targetReposRelPath java.util.Map unmergedToSourceCatalog java.util.Map mergedToSourceCatalog java.util.Map finalUnmergedCatalog org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.SVNMergeRangeList potentiallyUnmergedRanges private boolean isMergeinfoInCatalog (java.io.File, java.io.File[], java.util.Map, long, java.util.Map) throws org.tmatesoft.svn.core.SVNException java.io.File path String walkPath java.util.Map miInCatalog java.io.File sourceRelpath java.io.File[] catPath java.util.Map mergeinfo long revision java.util.Map catalog private org.tmatesoft.svn.core.wc2.SvnTarget calculateLeftHandSide (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.util.Map, java.util.Map, java.io.File, java.io.File, java.util.Map, long, java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e String miValue java.io.File pathReposRelPath java.io.File pathSessionRelPath java.util.List segments java.io.File path java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err java.util.Map mi String path java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.db.Structure locations org.tmatesoft.svn.core.SVNURL youngestUrl org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.util.Map mergedToSourceCatalog java.util.Map unmergedToSourceCatalog java.io.File targetAbsPath java.io.File targetReposRelPath java.util.Map subtreesWithMergeInfo long targetRev java.io.File sourceReposRelPath org.tmatesoft.svn.core.SVNURL sourceReposRoot org.tmatesoft.svn.core.SVNURL targetReposRoot long sourceRev org.tmatesoft.svn.core.io.SVNRepository sourceRepository org.tmatesoft.svn.core.io.SVNRepository targetRepository java.util.Map segmentsMap org.tmatesoft.svn.core.SVNURL sourceUrl org.tmatesoft.svn.core.SVNURL targetUrl org.tmatesoft.svn.core.io.SVNLocationSegment yc java.util.Map mergeInfoCatalog org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo unmergedMergeInfo private org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo findUnmergedMergeInfo (long, java.util.Map, java.util.Map, java.io.File, java.io.File, long, long, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException long[] endPoints java.util.Map explicitIntersection org.tmatesoft.svn.core.SVNNodeKind kind java.util.Map subtreeCatalog java.util.List segments java.io.File sourcePathRelToSession java.io.File sourcePath java.util.Map targetHistoryAsMergeInfo java.util.Map sourceMergeInfo java.util.Map sourceHistroryAsMergeInfo java.util.Map commonMergeInfo java.util.Map filteredMergeInfo java.io.File path java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorCode ec org.tmatesoft.svn.core.SVNException e long[] endPoints java.io.File sourcePathRelToSession java.io.File targetPath java.util.List segments java.util.Map sourceMergeInfo java.util.Map targetHistoryAsMergeInfo java.util.Map explicitIntersection java.util.Map sourceHistoryAsMergeInfo java.util.Map commonMergeInfo java.util.Map filteredMergeInfo java.io.File path java.util.Iterator i$ long ycAncestorRev java.util.Map sourceCatalog java.util.Map targetSegments java.io.File sourceReposRelPath java.io.File targetReposRelPath long targetRev long sourceRev org.tmatesoft.svn.core.io.SVNRepository sourceRepos org.tmatesoft.svn.core.io.SVNRepository targetRepos org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo result java.util.Map newCatalog protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 static synthetic boolean access$000 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate, java.io.File, java.io.File[], java.util.Map, long, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate x0 java.io.File x1 java.io.File[] x2 java.util.Map x3 long x4 java.util.Map x5 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgGetStatusSummary.class
SvnNgGetStatusSummary.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgGetStatusSummary extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected org.tmatesoft.svn.core.wc2.SvnStatusSummary run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context long[] minmax boolean sparse boolean switched boolean modified org.tmatesoft.svn.core.wc2.SvnStatusSummary summary protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeDriver$7.class
SvnNgMergeDriver.java package org.tmatesoft.svn.core.internal.wc2.ng synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$7 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbStatus static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo27.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo27 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable { private void <init> () public void bumpTo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.io.File wcRootAbsPath org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement stmt boolean haveRow synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeDriver$ObstructionState.class
SvnNgMergeDriver.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState extends java.lang.Object { org.tmatesoft.svn.core.wc.SVNStatusType obstructionState boolean added boolean deleted boolean conflicted org.tmatesoft.svn.core.SVNNodeKind kind public void <init> () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgRemoteDiffEditor$DeletedPath.class
SvnNgRemoteDiffEditor.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DeletedPath extends java.lang.Object { org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNStatusType state private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgSetProperty.class
SvnNgSetProperty.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgSetProperty extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected org.tmatesoft.svn.core.wc.SVNPropertyData run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File localAbsPath org.tmatesoft.svn.core.SVNNodeKind kind java.io.File lockedPath org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private void notifyNonExistentPath (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.wc.SVNEvent event public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnSetProperty, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnSetProperty operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgRemoteDiffEditor$1.class
SvnNgRemoteDiffEditor.java package org.tmatesoft.svn.core.internal.wc2.ng synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgCommitUtil.class
SvnNgCommitUtil.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil extends java.lang.Object { public void <init> () public static org.tmatesoft.svn.core.wc2.SvnCommitPacket harvestCopyCommitables (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc2.SvnCommitPacket, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$ISvnUrlKindCallback, org.tmatesoft.svn.core.wc2.ISvnCommitParameters, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File path org.tmatesoft.svn.core.SVNURL dst org.tmatesoft.svn.core.wc2.SvnCommitPacket packet org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$ISvnUrlKindCallback urlKindCallback org.tmatesoft.svn.core.wc2.ISvnCommitParameters commitParameters java.util.Map externalsStorage org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo reposInfo java.io.File commitRelPath public static org.tmatesoft.svn.core.wc2.SvnCommitPacket harvestCommittables (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.wc2.SvnCommitPacket, java.util.Map, java.io.File, java.util.Collection, org.tmatesoft.svn.core.SVNDepth, boolean, java.util.Collection, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$ISvnUrlKindCallback, org.tmatesoft.svn.core.wc2.ISvnCommitParameters, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc org.tmatesoft.svn.core.internal.wc17.db.Structure origin boolean parentIsAdded org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e java.io.File parentPath java.io.File targetPath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo reposInfo org.tmatesoft.svn.core.SVNURL repositoryRootUrl boolean added String target java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL root java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err java.io.File danglingParent java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.wc2.SvnCommitPacket packet java.util.Map lockTokens java.io.File baseDirPath java.util.Collection targets org.tmatesoft.svn.core.SVNDepth depth boolean justLocked java.util.Collection changelists org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$ISvnUrlKindCallback urlKindCallback org.tmatesoft.svn.core.wc2.ISvnCommitParameters commitParameters java.util.Map externalsStorage java.util.Map danglers private static void handleDescendants (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.wc2.SvnCommitPacket, org.tmatesoft.svn.core.SVNURL, java.util.Collection, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$ISvnUrlKindCallback, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnCommitItem i java.util.Iterator i$ boolean itemFound java.io.File localAbsPath org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNNodeKind kind java.io.File absent java.util.Iterator i$ java.util.Collection notPresent org.tmatesoft.svn.core.wc2.SvnCommitItem item java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.wc2.SvnCommitPacket packet org.tmatesoft.svn.core.SVNURL rootUrl java.util.Collection items org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$ISvnUrlKindCallback urlKindCallback org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler public static void harvestCommittables (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.wc2.SvnCommitPacket, java.util.Map, org.tmatesoft.svn.core.SVNURL, java.io.File, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, java.util.Collection, boolean, boolean, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$ISvnUrlKindCallback, org.tmatesoft.svn.core.wc2.ISvnCommitParameters, java.util.Map, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictInfo ci java.io.File reposRelPath org.tmatesoft.svn.core.internal.wc17.db.Structure originInfo java.io.File reposRelPath org.tmatesoft.svn.core.SVNURL url long revision org.tmatesoft.svn.core.internal.wc17.db.Structure originInfo long dirRevision org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action action org.tmatesoft.svn.core.SVNNodeKind nodeKind org.tmatesoft.svn.core.wc2.SvnCommitItem item String externalsProperty org.tmatesoft.svn.core.SVNProperties properties String name java.io.File childCommitRelPath java.io.File child java.util.Iterator i$ org.tmatesoft.svn.core.SVNDepth depthBelowHere java.util.List children org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath org.tmatesoft.svn.core.wc2.SvnCommitPacket committables java.util.Map lockTokens org.tmatesoft.svn.core.SVNURL repositoryRootUrl java.io.File commitRelPath boolean copyModeRoot org.tmatesoft.svn.core.SVNDepth depth boolean justLocked java.util.Collection changelists boolean skipFiles boolean skipDirs org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$ISvnUrlKindCallback urlKindCallback org.tmatesoft.svn.core.wc2.ISvnCommitParameters commitParameters java.util.Map externalsStorage org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler boolean copyMode org.tmatesoft.svn.core.internal.wc17.db.Structure commitStatus org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CheckSpecialInfo checkSpecial org.tmatesoft.svn.core.SVNNodeKind workingKind boolean isSpecial boolean matchesChangelists int stateFlags java.io.File copyFromPath long copyFromRevision boolean textModified boolean propsModified private static org.tmatesoft.svn.core.internal.wc17.db.Structure getNodeCommitStatus (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure replaceInfo org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.Structure result org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus nodeStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock lock private static void bailOnTreeConflictedChildren (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.SVNDepth, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNDepth depth java.util.Collection changelistsSet java.util.Map conflicts private static void collectLocks (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File path java.util.Map lockTokens org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ISVNWCNodeHandler nodeHandler private static void bailOnTreeConflictedAncestor (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File parentAbspath boolean treeConflicted org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File firstAbspath java.io.File localAbspath boolean wcRoot public static org.tmatesoft.svn.core.SVNURL translateCommitables (java.util.Collection, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnCommitItem oldItem org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnCommitItem item java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc2.SvnCommitItem rootItem org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc2.SvnCommitItem item String realPath java.util.Iterator iterator java.util.Collection items java.util.Map decodedPaths java.util.Map itemsMap java.util.Iterator urls org.tmatesoft.svn.core.SVNURL baseURL public static java.util.Map translateLockTokens (java.util.Map, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url String token String path java.util.Iterator urls java.util.Map lockTokens org.tmatesoft.svn.core.SVNURL baseURL java.util.Map translatedLocks }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgCommit.class
SvnNgCommit.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner implements org.tmatesoft.svn.core.internal.wc2.ISvnCommitRunner org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$ISvnUrlKindCallback { static final synthetic boolean $assertionsDisabled public void <init> () public org.tmatesoft.svn.core.wc2.SvnCommitPacket collectCommitItems (org.tmatesoft.svn.core.wc2.SvnCommit) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ java.io.File lockRoot java.io.File lockTarget java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err java.util.Map lockTokens org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc2.SvnCommit operation org.tmatesoft.svn.core.wc2.SvnCommitPacket packet java.util.Collection targets String[] validatedPaths int i String rootPath java.io.File baseDir java.util.Collection lockTargets java.util.Collection lockedRoots protected org.tmatesoft.svn.core.SVNCommitInfo run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.SVNCommitInfo info protected org.tmatesoft.svn.core.SVNCommitInfo doRun (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL rootUrl java.util.Iterator i$ java.util.Collection items org.tmatesoft.svn.core.wc2.SvnCommitItem[] itemsArray org.tmatesoft.svn.core.wc2.SvnCommitItem item java.util.Iterator i$ org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueue queue org.tmatesoft.svn.core.internal.wc17.SVNCommitter17 committer org.tmatesoft.svn.core.SVNException e java.io.File tmpFile java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e java.io.File tmpFile java.util.Iterator i$ org.tmatesoft.svn.core.SVNException e java.io.File tmpFile java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL repositoryRootUrl java.util.Map committables java.util.Map md5Checksums java.util.Map sha1Checksums org.tmatesoft.svn.core.SVNURL baseURL java.util.Map lockTokens org.tmatesoft.svn.core.wc2.SvnCommitItem firstItem org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.internal.wc17.SVNCommitMediator17 mediator org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.wc2.SvnCommitPacket packet org.tmatesoft.svn.core.SVNProperties revisionProperties String commitMessage boolean keepLocks org.tmatesoft.svn.core.SVNException bumpError org.tmatesoft.svn.core.SVNCommitInfo info private void postProcessCommitItem (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueue, org.tmatesoft.svn.core.wc2.SvnCommitItem, boolean, boolean, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNPropertyValue pv String name java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueue queue org.tmatesoft.svn.core.wc2.SvnCommitItem item boolean keepChangelists boolean keepLocks org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum boolean removeLock java.util.Map wcPropChanges org.tmatesoft.svn.core.SVNProperties wcProps public org.tmatesoft.svn.core.SVNNodeKind getUrlKind (org.tmatesoft.svn.core.SVNURL, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url long revision private java.util.Collection determineLockTargets (java.io.File, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File target java.io.File wcRoot java.util.Collection wcTargets String t java.util.Iterator i$ java.util.Collection wcTargets java.io.File wcRoot java.util.Iterator i$ java.io.File baseDirectory java.util.Collection targets java.util.Map wcItems java.util.Collection lockTargets public void disposeCommitPacket (java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File lockedPath java.util.Iterator i$ Object lockingContext java.util.Collection lockedPaths private void queueCommitted (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueue, java.io.File, boolean, org.tmatesoft.svn.core.SVNProperties, boolean, boolean, org.tmatesoft.svn.core.wc2.SvnChecksum) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueue queue java.io.File localAbsPath boolean recurse org.tmatesoft.svn.core.SVNProperties wcPropChanges boolean removeLock boolean removeChangelist org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueueItem cqi private void processCommittedQueue (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueue, long, java.util.Date, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File root org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueueItem cqi java.util.Iterator i$ java.io.File root java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueue queue long newRevision java.util.Date revDate String revAuthor java.util.Collection roots private void processCommittedInternal (java.io.File, boolean, boolean, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean, boolean, org.tmatesoft.svn.core.wc2.SvnChecksum, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueue) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath boolean recurse boolean topOfRecurse long newRevision org.tmatesoft.svn.core.internal.util.SVNDate revDate String revAuthor org.tmatesoft.svn.core.SVNProperties newDavCache boolean noUnlock boolean keepChangelist org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueue queue private void processCommittedLeaf (java.io.File, boolean, long, org.tmatesoft.svn.core.internal.util.SVNDate, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean, boolean, org.tmatesoft.svn.core.wc2.SvnChecksum) throws org.tmatesoft.svn.core.SVNException java.io.File admAbspath org.tmatesoft.svn.core.internal.wc17.db.Structure moreInfo java.io.File localAbspath boolean viaRecurse long newRevnum org.tmatesoft.svn.core.internal.util.SVNDate newChangedDate String newChangedAuthor org.tmatesoft.svn.core.SVNProperties newDavCache boolean noUnlock boolean keepChangelist org.tmatesoft.svn.core.wc2.SvnChecksum checksum long newChangedRev org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo java.io.File admAbspath org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeDriver$4.class
SvnNgMergeDriver.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$4 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic java.util.Collection val$switchedSubtrees final synthetic java.util.Map val$shallowSubtrees final synthetic java.util.Collection val$missingSubtrees final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver, java.util.Collection, java.util.Map, java.util.Collection) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.SVNException e java.io.File missingRoot java.util.Iterator i$ boolean parentPresent org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnStatus status boolean fileExternal public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgResolve.class
SvnNgResolve.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgResolve extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext context protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpdate.class
SvnNgUpdate.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpdate extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate { public void <init> () protected long[] run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.SVNException e int i org.tmatesoft.svn.core.internal.wc17.SVNWCContext context long[] result java.io.File[] targets int j protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgReposToWcCopy.class
SvnNgReposToWcCopy.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnCopy, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnCopy operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration private boolean areAllSourcesRemote (org.tmatesoft.svn.core.wc2.SvnCopy) org.tmatesoft.svn.core.wc2.SvnCopySource source java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnCopy operation private boolean isLocalRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision revision protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.Structure pair String baseName org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair copyPair String baseName org.tmatesoft.svn.core.wc2.SvnCopySource copySource java.util.Iterator i$ String baseName org.tmatesoft.svn.core.internal.wc17.db.Structure pair org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair copyPair org.tmatesoft.svn.core.wc2.SvnCopySource source String baseName org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File src java.io.File dst org.tmatesoft.svn.core.internal.wc17.db.Structure no org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair pair java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.util.Collection sources java.util.Collection copyPairs boolean srcsAreUrls protected java.util.Collection expandCopySources (java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDirEntry entry java.util.Iterator ents org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.io.SVNRepository svnRepository org.tmatesoft.svn.core.internal.wc17.db.Structure locations long revision java.util.Collection entries org.tmatesoft.svn.core.wc2.SvnCopySource source java.util.Iterator i$ java.util.Collection sources java.util.Collection expanded private java.lang.Void copy (java.util.Collection, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure locations org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair pair java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair pair java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc2.SvnScheduleForAddition add org.tmatesoft.svn.core.SVNErrorMessage err String relativePath org.tmatesoft.svn.core.SVNNodeKind sourceKind org.tmatesoft.svn.core.internal.wc.SVNFileType dstType java.io.File dstParent org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair pair java.util.Iterator i$ java.util.Collection copyPairs boolean makeParents boolean ignoreExternals org.tmatesoft.svn.core.SVNURL topSrcUrl java.io.File topDst org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.internal.wc17.db.Structure revisionPair java.io.File locked private java.lang.Void copy (java.util.Collection, java.io.File, boolean, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNNodeKind dstKind org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair pair java.util.Iterator i$ String sourceUuid org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo info String dstUuid org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair pair java.util.Iterator i$ java.util.Collection copyPairs java.io.File topDst boolean ignoreExternals org.tmatesoft.svn.core.io.SVNRepository repository boolean sameRepositories private long copy (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair, boolean, boolean, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e java.io.File dstLock org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnCheckout co org.tmatesoft.svn.core.wc.ISVNEventHandler oldHandler java.io.File dstParent java.io.File dstPath String relativePath java.io.File tmpDir org.tmatesoft.svn.core.internal.wc17.SVNWCContext$UniqueFileInfo ufInfo org.tmatesoft.svn.core.SVNProperties newProperties java.io.InputStream newContents org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair pair boolean sameRepositories boolean ignoreExternals org.tmatesoft.svn.core.io.SVNRepository repository long rev org.tmatesoft.svn.core.SVNURL oldLocation java.util.Map mergeInfo String mergeInfoProperty java.util.Map wcMergeInfo String extendedMergeInfoValue org.tmatesoft.svn.core.wc.SVNEvent event private org.tmatesoft.svn.core.SVNURL getCommonCopyAncestor (java.util.Collection) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair svnCopyPair java.util.Iterator i$ java.util.Collection copyPairs org.tmatesoft.svn.core.SVNURL ancestor private java.io.File getCommonCopyDst (java.util.Collection) String path org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair svnCopyPair java.util.Iterator i$ java.util.Collection copyPairs String ancestor public static void addFileToWc (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.InputStream, java.io.InputStream, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNURL, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.Structure ni org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err2 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo reposInfo String reposPath org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File tempDir org.tmatesoft.svn.core.internal.wc17.SVNWCContext$UniqueFileInfo ufInfo org.tmatesoft.svn.core.internal.util.SVNSkel remove org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File path java.io.InputStream newBaseContents java.io.InputStream newContents org.tmatesoft.svn.core.SVNProperties newBaseProps org.tmatesoft.svn.core.SVNProperties newProps org.tmatesoft.svn.core.SVNURL copyFromURL long copyFromRev org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status java.io.File dirPath org.tmatesoft.svn.core.internal.wc17.db.Structure ni org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.SVNURL originalURL java.io.File originalReposPath String originalUuid org.tmatesoft.svn.core.SVNProperties regularProps org.tmatesoft.svn.core.SVNProperties entryProps long changedRev String changedAuthor org.tmatesoft.svn.core.internal.util.SVNDate changedDate org.tmatesoft.svn.core.internal.wc17.SVNWCContext$WritableBaseInfo wbInfo java.io.File sourcePath boolean recordFileInfo org.tmatesoft.svn.core.internal.util.SVNSkel wi private java.util.Map calculateTargetMergeInfo (org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL srcURL long srcRevision org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL url java.util.Map targetMergeInfo String mergeInfoPath org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.SVNURL oldLocation protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMarkReplaced$1.class
SvnNgMarkReplaced.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMarkReplaced$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { final synthetic java.util.List val$deletedPaths final synthetic org.tmatesoft.svn.core.wc.ISVNEventHandler val$eventHandler final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMarkReplaced this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMarkReplaced, java.util.List, org.tmatesoft.svn.core.wc.ISVNEventHandler) public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeDriver$MergePath.class
SvnNgMergeDriver.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath extends java.lang.Object implements java.lang.Comparable { protected java.io.File absPath protected boolean missingChild protected boolean switched protected boolean hasNonInheritable protected boolean absent protected boolean childOfNonInheritable protected org.tmatesoft.svn.core.SVNMergeRangeList remainingRanges protected java.util.Map preMergeMergeInfo protected java.util.Map implicitMergeInfo protected boolean inheritedMergeInfo protected boolean scheduledForDeletion protected boolean immediateChildDir final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver this$0 public void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver, java.io.File) java.io.File path public int compareTo (java.lang.Object) Object obj org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath mergePath public boolean equals (java.lang.Object) Object obj public java.lang.String toString () String str }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgGetInfo.class
SvnNgGetInfo.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgGetInfo extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ISVNWCNodeHandler { private boolean hasRootTreeConflict private boolean isFirstInfo private java.util.Map treeConflicts public void <init> () public void reset (org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.wc2.SvnInfo run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc2.SvnInfo unversionedInfo java.util.Collection conflicts org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict java.io.File target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo reposInfo public void nodeFound (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind) throws org.tmatesoft.svn.core.SVNException String name java.util.Iterator i$ java.util.Map treeConflicts java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.wc2.SvnInfo info private org.tmatesoft.svn.core.wc2.SvnInfo buildUnversionedInfo (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File localAbspath org.tmatesoft.svn.core.wc2.SvnWorkingCopyInfo wcInfo org.tmatesoft.svn.core.wc2.SvnInfo info private org.tmatesoft.svn.core.wc2.SvnInfo buildInfo (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind) throws org.tmatesoft.svn.core.SVNException long baseRev org.tmatesoft.svn.core.internal.wc17.db.Structure additionInfo org.tmatesoft.svn.core.internal.wc17.db.Structure nodeOrigin org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo scheduleInfo java.io.File addedAbsPath org.tmatesoft.svn.core.internal.wc17.db.Structure additionInfo java.io.File p org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.internal.wc17.db.Structure pristineInfo org.tmatesoft.svn.core.internal.wc17.db.Structure delInfo java.io.File workDelAbsPath org.tmatesoft.svn.core.SVNLock lock java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.wc2.SvnInfo info org.tmatesoft.svn.core.wc2.SvnWorkingCopyInfo wcInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo readInfo java.io.File reposRelPath private org.tmatesoft.svn.core.wc2.SvnSchedule toSchedule (org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCSchedule) org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCSchedule schedule private boolean isDepthIncludes (java.io.File, org.tmatesoft.svn.core.SVNDepth, java.io.File, org.tmatesoft.svn.core.SVNNodeKind) java.io.File rootPath org.tmatesoft.svn.core.SVNDepth depth java.io.File childPath org.tmatesoft.svn.core.SVNNodeKind childKind java.io.File childParentPath private java.util.Map getTreeConflicts () protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeDriver$MergeSource.class
SvnNgMergeDriver.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergeSource extends java.lang.Object { org.tmatesoft.svn.core.SVNURL url1 long rev1 org.tmatesoft.svn.core.SVNURL url2 long rev2 public void <init> () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgAbstractUpdate.class
SvnNgAbstractUpdate.java package org.tmatesoft.svn.core.internal.wc2.ng public abstract org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { static final synthetic boolean $assertionsDisabled public void <init> () protected long update (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e long revnum java.io.File missingParent java.util.Iterator i$ java.io.File parentPath java.util.List missingParents java.io.File anchor org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File localAbspath org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean depthIsSticky boolean ignoreExternals boolean allowUnversionedObstructions boolean addsAsMoodifications boolean makeParents boolean innerUpdate boolean sleepForTimestamp java.io.File lockRootPath java.io.File anchor protected long updateInternal (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException String target org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNNodeKind targetKind org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File localAbspath java.io.File anchorAbspath org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean depthIsSticky boolean ignoreExternals boolean allowUnversionedObstructions boolean addsAsMoodifications boolean sleepForTimestamp boolean notifySummary String target org.tmatesoft.svn.core.SVNURL anchorUrl long baseRevision org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictInfo conflictInfo boolean treeConflict String[] preservedExts boolean useCommitTimes boolean cleanCheckout org.tmatesoft.svn.core.io.SVNRepository repos boolean serverSupportsDepth org.tmatesoft.svn.core.internal.wc17.SVNReporter17 reporter long revNumber org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.io.SVNRepository[] repos2 org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher dirFetcher org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore externalsStore org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor editor long targetRevision protected void handleExternals (java.util.Map, java.util.Map, org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException String externalDefinition org.tmatesoft.svn.core.SVNDepth ambientDepth java.io.File externalPath java.util.Iterator i$ org.tmatesoft.svn.core.SVNCancelException cancel org.tmatesoft.svn.core.SVNException e java.io.File definingAbsPath java.io.File oldExternalPath java.util.Iterator i$ java.util.Map newExternals java.util.Map ambientDepths org.tmatesoft.svn.core.SVNURL anchorUrl java.io.File targetAbspath org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.SVNDepth requestedDepth boolean sleepForTimestamp java.util.Map oldExternals private void handleExternalItemRemoval (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e java.io.File definingAbsPath java.io.File localAbsPath org.tmatesoft.svn.core.SVNNodeKind kind java.io.File lockRootAbsPath boolean lockedHere org.tmatesoft.svn.core.SVNErrorMessage err private void handleExternalsChange (org.tmatesoft.svn.core.SVNURL, java.io.File, java.lang.String, java.util.Map, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNCancelException cancel org.tmatesoft.svn.core.SVNException e java.io.File targetAbsPath java.io.File oldExternalDefiningPath int i org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL reposRoot java.io.File externalPath String externalDefinition java.util.Map oldExternals org.tmatesoft.svn.core.SVNDepth ambientDepth org.tmatesoft.svn.core.SVNDepth requestedDepth private void handleExternalItemChange (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.SVNURL, java.io.File, java.io.File, org.tmatesoft.svn.core.internal.wc.SVNExternal) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNRevision[] revs org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo localReposInfo org.tmatesoft.svn.core.SVNURL localReposRootUrl String localReposUuid String externalRepositoryPath org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfoStructure org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.SVNURL rootUrl java.io.File parentPath org.tmatesoft.svn.core.SVNURL parentUrl java.io.File localAbsPath java.io.File oldDefiningPath org.tmatesoft.svn.core.internal.wc.SVNExternal newItem org.tmatesoft.svn.core.SVNURL newUrl org.tmatesoft.svn.core.wc.SVNRevision externalRevision org.tmatesoft.svn.core.wc.SVNRevision externalPegRevision org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repository long externalRevnum String repositoryUUID org.tmatesoft.svn.core.SVNURL repositoryRoot org.tmatesoft.svn.core.SVNNodeKind externalKind org.tmatesoft.svn.core.SVNNodeKind localKind private void switchDirExternal (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc2.SvnRelocate relocate org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo nodeRepositoryInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL nodeUrl java.io.File localAbsPath org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File definingPath org.tmatesoft.svn.core.internal.wc.SVNFileType fileKind private void relegateExternal (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.internal.wc.SVNFileType) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File definingPath org.tmatesoft.svn.core.internal.wc.SVNFileType fileKind org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo nodeRepositoryInfo private void relegateExternalDir (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File oldName org.tmatesoft.svn.core.SVNException e java.io.File wriAbsPath java.io.File localAbsPath private void switchFileExternal (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.io.SVNRepository, long, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File wcRoot String rootPath String defPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind eKind org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.Structure externalInfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNNodeKind diskKind java.io.File localAbsPath org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision java.io.File defDirAbspath org.tmatesoft.svn.core.io.SVNRepository repository long repositoryRevision org.tmatesoft.svn.core.SVNURL reposRootUrl java.io.File dirAbspath boolean lockedHere org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNNodeKind externalKind org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo long revnum org.tmatesoft.svn.core.SVNURL swithUrl String uuid String[] preservedExts boolean useCommitTimes java.io.File definitionAbsPath org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor updateEditor org.tmatesoft.svn.core.internal.wc17.db.SvnExternalFileReporter reporter protected long doSwitch (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File localAbsPath org.tmatesoft.svn.core.SVNURL switchUrl org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNDepth depth boolean depthIsSticky boolean ignoreExternals boolean allowUnversionedObstructions boolean ignoreAncestry boolean sleepForTimestamp java.io.File anchor boolean releaseLock protected long switchInternal (java.io.File, java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String target org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNNodeKind targetKind org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL targetUrl long targetRev org.tmatesoft.svn.core.io.SVNLocationSegment ancestor org.tmatesoft.svn.core.SVNException e java.io.File localAbsPath java.io.File anchor org.tmatesoft.svn.core.SVNURL switchUrl org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNDepth depth boolean depthIsSticky boolean ignoreExternals boolean allowUnversionedObstructions boolean ignoreAncestry boolean sleepForTimestamp org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo String[] preservedExts boolean useCommitTimes String target org.tmatesoft.svn.core.SVNURL anchorUrl org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repository long revnum org.tmatesoft.svn.core.SVNURL switchRevUrl org.tmatesoft.svn.core.SVNURL switchRootUrl boolean serverSupportsDepth org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore externalsStore org.tmatesoft.svn.core.io.SVNRepository[] repos2 org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher dirFetcher org.tmatesoft.svn.core.internal.wc17.SVNReporter17 reporter org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor editor protected long checkout (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String message org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL entryUrl int formatVersion org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url java.io.File localAbspath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean ignoreExternals boolean allowUnversionedObstructions boolean sleepForTimestamp org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repository long revnum org.tmatesoft.svn.core.SVNURL rootUrl String uuid org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc.SVNFileType fileKind protected static boolean isEmptyWc (java.io.File, java.io.File) java.io.File root java.io.File anchorAbspath java.io.File[] children static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo26.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo26 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable { private void <init> () public void bumpTo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.io.File wcRootAbsPath synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgPropertiesManager.class
SvnNgPropertiesManager.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgPropertiesManager extends java.lang.Object { public void <init> () public static java.util.Collection getGlobalIgnores (org.tmatesoft.svn.core.wc.ISVNOptions) int i org.tmatesoft.svn.core.wc.ISVNOptions options java.util.Collection allPatterns String[] ignores public static java.util.Collection getEffectiveIgnores (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.util.Collection) String token java.util.StringTokenizer tokens String ignoreProperty org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File absPath java.util.Collection globalIgnores java.util.Collection allPatterns public static boolean isIgnored (java.lang.String, java.util.Collection) String pattern java.util.Iterator ps String name java.util.Collection patterns public static void setProperty (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File path String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue org.tmatesoft.svn.core.SVNDepth depth boolean skipChecks org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler java.util.Collection changelists public static void setProperty (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File path String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue org.tmatesoft.svn.core.SVNDepth depth boolean skipChecks org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.wc2.ISvnObjectReceiver receiver java.util.Collection changelists public static void setProperty (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNProperties wcProps java.io.File dirPath org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File path String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider pvProvider org.tmatesoft.svn.core.SVNDepth depth boolean skipChecks org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.wc2.ISvnObjectReceiver receiver java.util.Collection changelists org.tmatesoft.svn.core.SVNNodeKind kind java.io.File dirPath private static void setProperty (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.ISVNFileContentFetcher fetcher org.tmatesoft.svn.core.SVNPropertyValue pv org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNPropertyValue oldKeywords org.tmatesoft.svn.core.SVNPropertyValue oldEolStyle boolean wasExecutable boolean wasNeedsLock org.tmatesoft.svn.core.SVNPropertyValue newKeywords org.tmatesoft.svn.core.SVNPropertyValue newEolStyle boolean isExecutable boolean isNeedsLock boolean clearRecordedInfo String oldValue java.util.Map keywords java.util.Map newKeywords String oldValue org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File path org.tmatesoft.svn.core.SVNNodeKind kind String propertyName org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider pvProvider boolean skipChecks org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.wc2.ISvnObjectReceiver receiver org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.SVNProperties properties boolean clearRecordedInfo org.tmatesoft.svn.core.wc.SVNEventAction action private static boolean equals (org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue) org.tmatesoft.svn.core.SVNPropertyValue oldValue org.tmatesoft.svn.core.SVNPropertyValue newValue public static void checkPropertyName (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public static void categorizeProperties (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNPropertyValue pv String name java.util.Iterator i$ org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNProperties regular org.tmatesoft.svn.core.SVNProperties entry org.tmatesoft.svn.core.SVNProperties working static synthetic void access$000 (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 java.io.File x1 org.tmatesoft.svn.core.SVNNodeKind x2 String x3 org.tmatesoft.svn.core.SVNPropertyValue x4 org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider x5 boolean x6 org.tmatesoft.svn.core.wc.ISVNEventHandler x7 org.tmatesoft.svn.core.wc2.ISvnObjectReceiver x8 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgRemoteDiffEditor.class
SvnNgRemoteDiffEditor.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private java.io.File target private org.tmatesoft.svn.core.io.SVNRepository repository private long revision private boolean walkDeletedDirs private boolean pureRemoteDiff private org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback diffCallback private long targetRevision private java.io.File emptyFile private java.util.Map deletedPaths private org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton currentDir private org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult currentResult private org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$FileBaton currentFile private org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler private java.io.File globalTmpDir private java.util.Collection tmpFiles public void <init> () public static org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor createEditor (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.SVNRepository, long, boolean, boolean, boolean, org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback, org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File target org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.io.SVNRepository repository long revision boolean walkDeletedDirs boolean dryRun boolean pureRemoteDiff org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback diffCallback org.tmatesoft.svn.core.wc.ISVNEventHandler handler org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor editor public java.io.File getGlobalTmpDir () throws org.tmatesoft.svn.core.SVNException private org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton makeDirBaton (java.lang.String, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton, boolean) String path org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton parent boolean added org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton baton private org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$FileBaton makeFileBaton (java.lang.String, boolean) String path boolean added org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$FileBaton baton private void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum java.io.File tmpDir public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String checksum String path public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton baton public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$FileBaton b String[] mTypes org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DeletedPath dp String path long revision org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNEventAction action private void diffDeletedDir (java.lang.String, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$FileBaton fb java.io.File emptyFile String[] mTypes String entryPath org.tmatesoft.svn.core.SVNDirEntry entry java.util.Iterator i$ String path long revision org.tmatesoft.svn.core.io.SVNRepository repository java.util.Collection entries private java.io.File getEmptyFile () throws org.tmatesoft.svn.core.SVNException java.io.File tmpDir public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path java.io.File file org.tmatesoft.svn.core.wc.SVNEvent event public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path java.io.File file org.tmatesoft.svn.core.wc.SVNEvent event public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton db org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton pb org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DeletedPath dp org.tmatesoft.svn.core.wc.SVNEvent event public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton db org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton pb public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DeletedPath dp org.tmatesoft.svn.core.wc.SVNEvent event java.io.File d java.util.Iterator i$ org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEvent event boolean skipped org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton b public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$FileBaton fb public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$FileBaton fb public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnChecksum expected String[] mTypes String path String textChecksum org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$FileBaton b org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DeletedPath dp org.tmatesoft.svn.core.wc.SVNEventAction expectedAction org.tmatesoft.svn.core.wc.SVNEvent event private void removeNonPropChanges (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNPropertyValue oldValue org.tmatesoft.svn.core.SVNPropertyValue newValue String propertyName java.util.Iterator i$ String name java.util.Iterator i$ org.tmatesoft.svn.core.SVNProperties pristineProps org.tmatesoft.svn.core.SVNProperties propChanges java.util.Set removed public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void cleanup () org.tmatesoft.svn.core.SVNException ignore java.io.File tmpFile java.util.Iterator i$ public void abortEdit () throws org.tmatesoft.svn.core.SVNException static synthetic boolean access$000 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgAdd.class
SvnNgAdd.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAdd extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private void add (org.tmatesoft.svn.core.wc2.SvnTarget) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc2.SvnTarget target java.io.File path java.io.File existingParent java.io.File parentPath org.tmatesoft.svn.core.internal.wc.SVNFileType targetType java.io.File lockRoot private void add (java.io.File, java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String component org.tmatesoft.svn.core.internal.wc.SVNFileType pathType java.util.StringTokenizer components String parent String existingParent String relativeChildPath org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictInfo conflictInfo org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e java.io.File path java.io.File parentPath java.io.File existingParentPath org.tmatesoft.svn.core.SVNNodeKind kind private void addFile (java.io.File) throws org.tmatesoft.svn.core.SVNException java.util.Map autoProps org.tmatesoft.svn.core.wc2.ISvnAddParameters addParameters org.tmatesoft.svn.core.wc2.ISvnAddParameters$Action action org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNPropertyValue value String propertyName java.util.Iterator i$ java.io.File path boolean special org.tmatesoft.svn.core.SVNProperties properties String mimeType private void doRevert (java.io.File) org.tmatesoft.svn.core.SVNException svne java.io.File path private void addDirectory (java.io.File, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNDepth depthBelow org.tmatesoft.svn.core.SVNException e String name org.tmatesoft.svn.core.SVNNodeKind childKind int i java.io.File path org.tmatesoft.svn.core.SVNDepth depth java.util.Collection ignorePatterns java.io.File[] children private void addFromDisk (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean fireEvent org.tmatesoft.svn.core.SVNNodeKind kind private void checkCanAddtoParent (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e java.io.File path java.io.File parentPath private org.tmatesoft.svn.core.SVNNodeKind checkCanAddNode (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo org.tmatesoft.svn.core.SVNException e java.io.File path String name org.tmatesoft.svn.core.internal.wc.SVNFileType pathType private java.io.File findExistingParent (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File parentPath org.tmatesoft.svn.core.SVNNodeKind kind protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgSwitch.class
SvnNgSwitch.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgSwitch extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate { public void <init> () protected java.lang.Long run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.wc2.SvnTarget switchTarget protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNewDiffGenerator.class
SvnNewDiffGenerator.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNewDiffGenerator extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNDiffGenerator { private final org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator generator private boolean diffDeleted private boolean diffAdded private boolean diffCopied private boolean diffUnversioned public void <init> (org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator) org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator defaultGenerator org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator generator public org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator getDelegate () public void init (java.lang.String, java.lang.String) String anchorPath1 String anchorPath2 public void setBasePath (java.io.File) java.io.File basePath public void setForcedBinaryDiff (boolean) boolean forced public void setEncoding (java.lang.String) String encoding public java.lang.String getEncoding () public void setEOL (byte[]) byte[] eol public byte[] getEOL () public void setDiffDeleted (boolean) boolean isDiffDeleted public boolean isDiffDeleted () public void setDiffAdded (boolean) boolean isDiffAdded public boolean isDiffAdded () public void setDiffCopied (boolean) boolean isDiffCopied public boolean isDiffCopied () public void setDiffUnversioned (boolean) boolean diffUnversioned public boolean isDiffUnversioned () public java.io.File createTempDirectory () throws org.tmatesoft.svn.core.SVNException public void displayPropDiff (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties diff java.io.OutputStream result public void displayFileDiff (java.lang.String, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException String path java.io.File file1 java.io.File file2 String rev1 String rev2 String mimeType1 String mimeType2 java.io.OutputStream result public void displayDeletedDirectory (java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String rev1 String rev2 public void displayAddedDirectory (java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String rev1 String rev2 public boolean isForcedBinaryDiff () private org.tmatesoft.svn.core.wc2.SvnTarget getTarget (java.lang.String) String path private org.tmatesoft.svn.core.wc2.SvnTarget getAbsoluteTarget (java.lang.String) org.tmatesoft.svn.core.SVNException e String path }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgCat.class
SvnNgCat.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCat extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PristineContentsInfo info org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.wc2.SvnStatus status org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.SVNURL url String rev String author String date org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e String eolStyle String keywords boolean special long lastModified java.util.Map keywordsMap org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNProperties properties java.io.InputStream source boolean localModifications protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgAbstractUpdate$2$1.class
SvnNgAbstractUpdate.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate$2$1 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNDirEntryHandler { final synthetic java.util.Map val$entries final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate$2 this$1 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate$2, java.util.Map) public void handleDirEntry (org.tmatesoft.svn.core.SVNDirEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDirEntry dirEntry }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo24$1$1.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo24$1$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo24$1 this$1 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo24$1, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException protected void defineFields () protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgReposToWcCopy$2.class
SvnNgReposToWcCopy.java package org.tmatesoft.svn.core.internal.wc2.ng synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$2 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbStatus static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgRepositoryAccess.class
SvnNgRepositoryAccess.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRepositoryAccess extends org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess { public void <init> (org.tmatesoft.svn.core.wc2.ISvnOperationOptionsProvider, org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.ISvnOperationOptionsProvider operationOptionsProvider org.tmatesoft.svn.core.internal.wc17.SVNWCContext context public org.tmatesoft.svn.core.internal.wc17.db.Structure createRepositoryFor (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.Structure revs org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File baseDirectory org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision[] resolvedRevisions org.tmatesoft.svn.core.wc.SVNRevision pegRev org.tmatesoft.svn.core.wc.SVNRevision startRev org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.internal.wc17.db.Structure locationsInfo long rev org.tmatesoft.svn.core.internal.wc17.db.Structure result public org.tmatesoft.svn.core.internal.wc17.db.Structure getURLFromPath (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure nodeOrigin org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnTarget path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.internal.wc17.db.Structure urlInfo org.tmatesoft.svn.core.SVNURL url public org.tmatesoft.svn.core.internal.wc17.db.Structure getRevisionNumber (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.internal.wc17.db.Structure) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long youngest org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err long revnum org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err long revnum org.tmatesoft.svn.core.SVNErrorMessage err long revnum org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.wc2.SvnTarget path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.internal.wc17.db.Structure youngestRevision org.tmatesoft.svn.core.internal.wc17.db.Structure result public org.tmatesoft.svn.core.io.SVNRepository createRepository (org.tmatesoft.svn.core.SVNURL, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorCode errorCode org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo nodeReposInfo org.tmatesoft.svn.core.SVNURL url java.io.File baseDirectory String expectedUuid public org.tmatesoft.svn.core.wc2.SvnCopySource createRemoteCopySource (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.wc2.SvnCopySource) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.wc2.SvnCopySource localCopySource org.tmatesoft.svn.core.internal.wc17.db.Structure origin org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision protected org.tmatesoft.svn.core.SVNURL getTargetURL (org.tmatesoft.svn.core.wc2.SvnTarget) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgRelocate.class
SvnNgRelocate.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRelocate extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner implements org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRelocate$ISvnRelocateValidator { private java.util.Map collectedUuids public void <init> () protected org.tmatesoft.svn.core.SVNURL run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL fromURL String externalDefinition org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals java.io.File externalAbsPath java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.SVNURL oldReposRootUrl org.tmatesoft.svn.core.SVNURL newReposRootUrl org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore externalsStore private void relocateExternals (java.io.File, org.tmatesoft.svn.core.internal.wc.SVNExternal[], org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL targetRepositoryRootUrl org.tmatesoft.svn.core.SVNException e String rawUrl java.io.File targetPath int i java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals org.tmatesoft.svn.core.SVNURL oldReposRootUrl org.tmatesoft.svn.core.SVNURL newReposRootUrl public void validateRelocation (java.lang.String, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL root String uu java.util.Iterator i$ org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String uuid org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL rootUrl String urlUuid org.tmatesoft.svn.core.SVNURL urlRoot public void reset (org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/ISvnDiffGenerator.class
ISvnDiffGenerator.java package org.tmatesoft.svn.core.internal.wc2.ng public abstract org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator extends java.lang.Object { public abstract void setOriginalTargets (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnTarget) public abstract void setAnchors (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnTarget) public abstract void setBaseTarget (org.tmatesoft.svn.core.wc2.SvnTarget) public abstract void setRepositoryRoot (org.tmatesoft.svn.core.wc2.SvnTarget) public abstract void setEncoding (java.lang.String) public abstract java.lang.String getEncoding () public abstract java.lang.String getGlobalEncoding () public abstract void setEOL (byte[]) public abstract byte[] getEOL () public abstract void setForceEmpty (boolean) public abstract void setForcedBinaryDiff (boolean) public abstract void setUseGitFormat (boolean) public abstract void displayDeletedDirectory (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException public abstract void displayAddedDirectory (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException public abstract void displayPropsChanged (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException public abstract void displayContentChanged (org.tmatesoft.svn.core.wc2.SvnTarget, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind, java.io.File, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException public abstract boolean isForcedBinaryDiff () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgReposToWcCopy$1.class
SvnNgReposToWcCopy.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { final synthetic org.tmatesoft.svn.core.wc.ISVNEventHandler val$oldHandler final synthetic java.io.File val$dstPath final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair val$pair final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy, org.tmatesoft.svn.core.wc.ISVNEventHandler, java.io.File, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgReposToWcCopy$SvnCopyPair) public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress java.io.File path }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgCommit$SvnCommittedQueueItem.class
SvnNgCommit.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueueItem extends java.lang.Object { public java.io.File localAbspath public boolean recurse public boolean noUnlock public boolean keepChangelist public org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum public org.tmatesoft.svn.core.SVNProperties newDavCache private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgCommitUtil$ISvnUrlKindCallback.class
SvnNgCommitUtil.java package org.tmatesoft.svn.core.internal.wc2.ng abstract org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$ISvnUrlKindCallback extends java.lang.Object { public abstract org.tmatesoft.svn.core.SVNNodeKind getUrlKind (org.tmatesoft.svn.core.SVNURL, long) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeDriver.class
SvnNgMergeDriver.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { boolean force boolean dryRun boolean recordOnly boolean sourcesAncestral boolean sameRepos private boolean mergeinfoCapable private boolean ignoreAncestry private boolean targetMissingChild boolean reintegrateMerge java.io.File targetAbsPath java.io.File addedPath org.tmatesoft.svn.core.SVNURL reposRootUrl org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergeSource source private org.tmatesoft.svn.core.SVNMergeRangeList implicitSrcGap org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private boolean addNecessiatedMerge java.util.Collection dryRunDeletions java.util.Collection dryRunAdded private java.util.Collection conflictedPaths java.util.Collection pathsWithNewMergeInfo java.util.Collection pathsWithDeletedMergeInfo org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions org.tmatesoft.svn.core.io.SVNRepository repos1 org.tmatesoft.svn.core.io.SVNRepository repos2 org.tmatesoft.svn.core.wc2.SvnMerge operation org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess repositoryAccess private java.util.Map childrenWithMergeInfo private int currentAncestorIndex private boolean singleFileMerge private int operativeNotifications private int notifications private java.util.Collection addedPaths private java.util.Collection mergedPaths private java.util.Collection skippedPaths private java.util.Collection treeConflictedPaths public void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.wc2.SvnMerge, org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess, org.tmatesoft.svn.core.wc.SVNDiffOptions) org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.wc2.SvnMerge operation org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess repositoryAccess org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions public void ensureWcIsSuitableForMerge (java.io.File, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long[] revs org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File targetAbsPath boolean allowMixedRevs boolean allowLocalMods boolean allowSwitchedSubtrees public void mergeCousinsAndSupplementMergeInfo (java.io.File, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, long, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergeSource fauxSource java.util.List fauxSources org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNEvent mergeStartedEvent org.tmatesoft.svn.core.SVNException e java.io.File file java.util.Map mergeinfo java.util.Iterator paths java.util.Map addResultsCatalog java.util.Map removeResultsCatalog java.io.File targetWCPath org.tmatesoft.svn.core.io.SVNRepository repository1 org.tmatesoft.svn.core.io.SVNRepository repository2 org.tmatesoft.svn.core.SVNURL url1 long rev1 org.tmatesoft.svn.core.SVNURL url2 long rev2 long youngestCommonRev org.tmatesoft.svn.core.SVNURL sourceReposRoot org.tmatesoft.svn.core.SVNURL wcReposRoot org.tmatesoft.svn.core.SVNDepth depth boolean ignoreAncestry boolean force boolean recordOnly boolean dryRun java.util.List addSources java.util.List removeSources org.tmatesoft.svn.core.wc.SVNRevision sRev org.tmatesoft.svn.core.wc.SVNRevision eRev org.tmatesoft.svn.core.wc.SVNRevisionRange range java.util.List ranges boolean sameRepos java.util.Collection modifiedSubtrees public java.util.List normalizeMergeSources (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.util.Collection, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNRevisionRange revRange org.tmatesoft.svn.core.wc.SVNRevision rangeStart org.tmatesoft.svn.core.wc.SVNRevision rangeEnd long startRev long endRev java.util.Iterator rangesIter long minRev long maxRev org.tmatesoft.svn.core.SVNMergeRange mergeRange java.util.Iterator i$ org.tmatesoft.svn.core.io.SVNLocationSegment newSegment org.tmatesoft.svn.core.io.SVNLocationSegment segment2 org.tmatesoft.svn.core.SVNURL segmentURL org.tmatesoft.svn.core.io.SVNLocationEntry copyFromLocation String copyFromPath long copyFromRevision org.tmatesoft.svn.core.io.SVNLocationSegment segment org.tmatesoft.svn.core.SVNMergeRange range java.util.List mergeSources java.util.Iterator rangesIter org.tmatesoft.svn.core.wc2.SvnTarget source org.tmatesoft.svn.core.SVNURL sourceURL org.tmatesoft.svn.core.SVNURL sourceRootURL org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.util.Collection rangesToMerge org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.internal.wc17.db.Structure pair long pegRevNum java.util.List mergeRanges long oldestRequested long youngesRequested java.util.List segments long trimRevision org.tmatesoft.svn.core.io.SVNLocationSegment[] segmentsArray java.util.List resultMergeSources private java.util.List combineRangeWithSegments (org.tmatesoft.svn.core.SVNMergeRange, org.tmatesoft.svn.core.io.SVNLocationSegment[], org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException long tmpRev org.tmatesoft.svn.core.SVNURL tmpURL org.tmatesoft.svn.core.io.SVNLocationSegment segment String path1 long rev1 org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergeSource mergeSource int i org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.io.SVNLocationSegment[] segments org.tmatesoft.svn.core.SVNURL sourceRootURL long minRev long maxRev boolean subtractive java.util.List mergeSources protected java.util.Collection doMerge (java.util.Map, java.util.List, java.io.File, boolean, boolean, boolean, boolean, boolean, boolean, boolean, java.util.Collection, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.SVNDiffOptions) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err boolean abortOnConflicts org.tmatesoft.svn.core.wc.SVNEvent mergeCompletedEvent org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergeSource mergeSource org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.SVNURL url2 long revision1 long revision2 int i java.util.Map resultCatalog java.util.List mergeSources java.io.File targetAbsPath boolean sourcesAncestral boolean sourcesRelated boolean sameRepository boolean ignoreAncestry boolean force boolean dryRun boolean recordOnly java.util.Collection recordOnlyPaths boolean reintegrateMerge boolean squelcheMergeInfoNotifications org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions org.tmatesoft.svn.core.SVNNodeKind targetKind boolean checkedMergeInfoCapability java.util.Collection modifiedSubtrees protected void doMergeInfoUnawareDirectoryMerge (java.io.File, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File targetPath org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 org.tmatesoft.svn.core.SVNDepth depth boolean isRollBack org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath item org.tmatesoft.svn.core.SVNMergeRange itemRange org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback mergeCallback protected void doFileMerge (java.io.File, java.util.Map, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNDepth, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.util.Map[] mis org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL sourceReposRootURL org.tmatesoft.svn.core.SVNURL oldUrl boolean sent String mType1 String mType2 org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback callback org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result org.tmatesoft.svn.core.SVNMergeRange rng org.tmatesoft.svn.core.wc.SVNEvent mergeBeginEvent org.tmatesoft.svn.core.io.SVNRepository rep1 org.tmatesoft.svn.core.io.SVNRepository rep2 java.io.File tmpDir java.io.File tmpFile1 java.io.File tmpFile2 org.tmatesoft.svn.core.SVNProperties props1 org.tmatesoft.svn.core.SVNProperties props2 java.io.OutputStream os1 java.io.OutputStream os2 int i org.tmatesoft.svn.core.SVNMergeRangeList ranges org.tmatesoft.svn.core.SVNMergeRange[] rangesToMerge long[] revs org.tmatesoft.svn.core.SVNMergeRange r org.tmatesoft.svn.core.wc.SVNEvent mergeBeginEvent java.util.Map merges org.tmatesoft.svn.core.SVNMergeRangeList filteredRangeList org.tmatesoft.svn.core.SVNErrorMessage err java.io.File targetPath java.util.Map resultCatalog org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 org.tmatesoft.svn.core.SVNDepth depth boolean sourceRelated boolean squelchMergeinfoNotifications org.tmatesoft.svn.core.SVNURL targetURL org.tmatesoft.svn.core.SVNMergeRange range boolean isRollback org.tmatesoft.svn.core.SVNURL primaryURL org.tmatesoft.svn.core.SVNMergeRangeList remainingRanges String mergeInfoPath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath mergeTarget boolean[] inherited java.util.Map targetMergeInfo org.tmatesoft.svn.core.SVNMergeRange conflictedRange private boolean singleFileMergeNotify (java.io.File, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNEvent, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNStatusType contents org.tmatesoft.svn.core.wc.SVNStatusType props org.tmatesoft.svn.core.wc.SVNEvent header boolean headerSent org.tmatesoft.svn.core.wc.SVNEvent event protected void doDirectoryMerge (java.io.File, java.util.Map, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNDepth, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange conflictedRange org.tmatesoft.svn.core.SVNMergeRange firstTargetRange org.tmatesoft.svn.core.SVNURL realURL1 org.tmatesoft.svn.core.SVNURL realURL2 org.tmatesoft.svn.core.SVNURL oldURL1 org.tmatesoft.svn.core.SVNURL oldURL2 long nextEndRev long endRev long newRangeStart long startRev java.io.File targetPath java.util.Map resultCatalog org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 org.tmatesoft.svn.core.SVNDepth depth boolean abortOnConflicts boolean squelchMergeinfoNotifications boolean isRollBack org.tmatesoft.svn.core.SVNURL primaryURL boolean honorMergeInfo boolean recordMergeInfo boolean sameURLs org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback mergeCallback java.util.Map childrenWithMergeInfo org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL sourceRootURL String mergeInfoPath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath targetMergePath org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.SVNErrorMessage err private void removeNoOpSubtreeRanges (org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 org.tmatesoft.svn.core.io.SVNRepository repository java.util.Iterator mps org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath rootPath org.tmatesoft.svn.core.SVNMergeRangeList requestedRanges org.tmatesoft.svn.core.SVNMergeRangeList subtreeGapRanges org.tmatesoft.svn.core.SVNMergeRangeList subtreeRemainingRanges org.tmatesoft.svn.core.SVNMergeRange oldestGapRev org.tmatesoft.svn.core.SVNMergeRange youngestRev org.tmatesoft.svn.core.SVNURL reposRootURL org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$NoopLogHandler logHandler org.tmatesoft.svn.core.SVNMergeRangeList inoperativeRanges public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor driveMergeReportEditor (java.io.File, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, java.util.Map, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange[] ranges org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath targetMergePath org.tmatesoft.svn.core.SVNMergeRangeList remainingRanges org.tmatesoft.svn.core.SVNDepth reportDepth long reportStart String targetPath java.io.File targetWCPath org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 java.util.Map childrenWithMergeInfo boolean isRollBack org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback mergeCallback boolean honorMergeInfo long targetStart org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor editor org.tmatesoft.svn.core.SVNURL oldURL protected boolean isHonorMergeInfo () public boolean isRecordMergeInfo () protected org.tmatesoft.svn.core.SVNURL ensureSessionURL (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL oldURL private int findNearestAncestor (java.lang.Object[], boolean, java.io.File) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child String childPath String pathStr int i Object[] childrenWithMergeInfoArray boolean pathIsOwnAncestor java.io.File path int ancestorIndex private java.util.Map getMergeInfoPaths (java.util.Map, java.lang.String, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, long, long, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e String value org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath mp java.util.Map mi java.io.File wcPath java.util.Iterator i$ java.io.File missingPath java.util.Iterator i$ StringBuffer errorMessage Object[] values int index org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child java.io.File switchedPath java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child org.tmatesoft.svn.core.SVNDepth childDepth boolean newChild java.io.File shallowPath java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath mp java.io.File excludedTree java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath mp org.tmatesoft.svn.core.SVNNodeKind childKind java.io.File immeidateChild java.util.Iterator i$ java.util.List immediateChildren org.tmatesoft.svn.core.SVNNodeKind childKind org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoInfo info org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath mpOfNonInheritable java.io.File childOfNonInheritable java.util.Iterator i$ java.util.List childrenOfNonInheritable org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child java.io.File childPath java.util.Iterator i$ java.util.Map children String mergeSrcPath org.tmatesoft.svn.core.SVNURL sourceRootURL org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.SVNURL url2 long revision1 long revision2 org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNDepth depth java.util.Map childrenWithMergeInfo org.tmatesoft.svn.core.wc2.SvnGetProperties pg java.util.Map subtreesWithMergeinfo java.util.Map shallowSubtrees java.util.Collection missingSubtrees java.util.Collection switchedSubtrees org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17 statusEditor java.util.Collection excludedTrees private void insertParentAndSiblingsOfAbsentDelSubtree (java.util.Map, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath siblingMp java.io.File file java.util.Iterator i$ java.util.Map childrenWithMergeInfo org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child org.tmatesoft.svn.core.SVNDepth depth java.io.File parentPath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath parentMp java.util.List files private org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath getChildWithMergeinfo (java.util.Map, java.io.File) java.util.Map childrenWithMergeInfo java.io.File path private void populateRemainingRanges (java.util.Map, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, boolean, org.tmatesoft.svn.core.io.SVNRepository, java.lang.String) throws org.tmatesoft.svn.core.SVNException boolean[] indirect java.util.Map[] mergeInfo int parentIndex org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath parent boolean childInheritsImplicit org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child org.tmatesoft.svn.core.SVNMergeRange range java.util.Iterator childrenIter int index Object[] childrenWithMergeInfoArray Object[] childrenWithMergeInfoArray int parentIndex long start long end int j boolean properSubset boolean equals boolean overlapsOrAdjoins org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child String childRelativePath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath parent org.tmatesoft.svn.core.SVNURL childURL1 org.tmatesoft.svn.core.SVNURL childURL2 boolean[] inherited java.util.Map[] mergeInfo boolean childInheritsImplicit java.util.Iterator childrenIter java.util.Map childrenWithMergeInfo org.tmatesoft.svn.core.SVNURL sourceRootURL org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 boolean honorMergeInfo org.tmatesoft.svn.core.io.SVNRepository repository String parentMergeSrcCanonPath long[] gap int index protected java.util.Map[] getFullMergeInfo (boolean, boolean, boolean[], org.tmatesoft.svn.core.SVNMergeInfoInheritance, org.tmatesoft.svn.core.io.SVNRepository, java.io.File, long, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoCatalogInfo catalog org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL sessionUrl java.io.File reposRelPath org.tmatesoft.svn.core.SVNURL reposRootUrl long targetRevision org.tmatesoft.svn.core.internal.wc17.db.Structure originInfo boolean getRecorded boolean getImplicit boolean[] inherited org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit org.tmatesoft.svn.core.io.SVNRepository repos java.io.File target long start long end java.util.Map[] result public java.util.Map calculateImplicitMergeInfo (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNURL, long[], long, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.SVNURL url long[] targetRev long start long end java.util.Map implicitMergeInfo boolean closeSession org.tmatesoft.svn.core.SVNURL sessionURL private void inheritImplicitMergeinfoFromParent (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath, long, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException java.util.Map[] mergeinfo org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath parent org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child long revision1 long revision2 org.tmatesoft.svn.core.io.SVNRepository repository String ancestorPath String childPath private void ensureImplicitMergeinfo (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath, boolean, long, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException java.util.Map[] mergeinfo org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath parent org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child boolean childInheritsParent long revision1 long revision2 org.tmatesoft.svn.core.io.SVNRepository repository protected void findGapsInMergeSourceHistory (long[], java.lang.String, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException String path java.util.Iterator paths org.tmatesoft.svn.core.SVNMergeRangeList implicitMergeRangeList org.tmatesoft.svn.core.SVNMergeRangeList requestedMergeRangeList org.tmatesoft.svn.core.SVNMergeRangeList gapRangeList long[] gap String mergeSrcCanonPath org.tmatesoft.svn.core.SVNURL url1 long rev1 org.tmatesoft.svn.core.SVNURL url2 long rev2 org.tmatesoft.svn.core.io.SVNRepository repos long youngRev long oldRev org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL oldURL java.util.Map implicitSrcMergeInfo org.tmatesoft.svn.core.SVNMergeRangeList rangelist public void calculateRemainingRanges (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, java.util.Map, org.tmatesoft.svn.core.SVNMergeRangeList, boolean, boolean, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException java.util.Map gapMergeInfo org.tmatesoft.svn.core.SVNMergeRangeList explicitMergeInfoGapRanges boolean isRollback org.tmatesoft.svn.core.SVNMergeRangeList[] rangeListDiff org.tmatesoft.svn.core.SVNMergeRangeList deletedRangeList org.tmatesoft.svn.core.SVNMergeRangeList addedRangeList org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.Structure locations org.tmatesoft.svn.core.SVNURL startURL org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath parent org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child org.tmatesoft.svn.core.SVNURL sourceRootURL org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 java.util.Map targetMergeInfo org.tmatesoft.svn.core.SVNMergeRangeList implicitSrcGap boolean isSubtree boolean childInheritsImplicit org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL primaryURL java.util.Map adjustedTargetMergeInfo String mergeInfoPath long childBaseRevision private void adjustDeletedSubTreeRanges (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath, long, long, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException long primaryURLDeletedRevision org.tmatesoft.svn.core.SVNMergeRangeList existingRangeList org.tmatesoft.svn.core.SVNMergeRangeList deletedRangeList org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNErrorCode errCode org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.io.SVNLocationSegment segment org.tmatesoft.svn.core.SVNMergeRangeList existingRangeList org.tmatesoft.svn.core.SVNMergeRangeList nonExistentRangeList org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath parent long revision1 long revision2 org.tmatesoft.svn.core.SVNURL primaryURL org.tmatesoft.svn.core.io.SVNRepository repository String relativePath boolean isRollback long pegRev long youngerRev long olderRev java.util.List locationSegments private void filterMergedRevisions (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath, org.tmatesoft.svn.core.io.SVNRepository, java.lang.String, java.util.Map, long, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRangeList implicitRangeList org.tmatesoft.svn.core.SVNMergeRangeList[] diff org.tmatesoft.svn.core.SVNMergeRangeList deletedRangeList org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath parent org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child org.tmatesoft.svn.core.io.SVNRepository repository String mergeInfoPath java.util.Map targetMergeInfo long rev1 long rev2 boolean childInheritsImplicit org.tmatesoft.svn.core.SVNMergeRangeList targetRangeList org.tmatesoft.svn.core.SVNMergeRangeList targetImplicitRangeList org.tmatesoft.svn.core.SVNMergeRangeList explicitRangeList org.tmatesoft.svn.core.SVNMergeRangeList requestedMergeRangeList protected java.lang.String getPathRelativeToRoot (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL reposRootURL org.tmatesoft.svn.core.io.SVNRepository repos String reposRootPath String absPath private void sliceRemainingRanges (java.util.Map, boolean, long) org.tmatesoft.svn.core.SVNMergeRange splitRange1 org.tmatesoft.svn.core.SVNMergeRange splitRange2 org.tmatesoft.svn.core.SVNMergeRange[] remainingRanges org.tmatesoft.svn.core.SVNMergeRange[] originalRemainingRanges org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child java.util.Iterator i$ java.util.Map childrenWithMergeInfo boolean isRollBack long endRevision private long getMostInclusiveEndRevision (java.util.Map, boolean) org.tmatesoft.svn.core.SVNMergeRange[] ranges org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child java.util.Iterator i$ java.util.Map childrenWithMergeInfo boolean isRollBack long endRev private long getMostInclusiveStartRevision (java.util.Map, boolean) org.tmatesoft.svn.core.SVNMergeRange[] ranges org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child java.util.Iterator i$ java.util.Map childrenWithMergeInfo boolean isRollBack long startRev boolean first private void processChildrenWithNewMergeInfo (java.util.Map) throws org.tmatesoft.svn.core.SVNException String value Object[] childrenWithMergeInfoArray int parentIndex org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath parent java.util.Map pathInheritedMergeInfo org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath newChild java.io.File pathWithNewMergeInfo org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoInfo pathExplicitMergeInfo org.tmatesoft.svn.core.SVNURL oldURL java.util.Iterator pathsIter java.util.Map childrenWithMergeInfo private void processChildrenWithDeletedMergeInfo (java.util.Map) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath path java.util.Iterator children java.util.Map childrenWithMergeInfo private void removeFirstRangeFromRemainingRanges (long, java.util.Map) org.tmatesoft.svn.core.SVNMergeRange[] remainingRanges org.tmatesoft.svn.core.SVNMergeRange[] originalRemainingRanges org.tmatesoft.svn.core.SVNMergeRange firstRange org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child java.util.Iterator children long endRevision java.util.Map childrenWithMergeInfo private org.tmatesoft.svn.core.SVNErrorMessage makeMergeConflictError (java.io.File, org.tmatesoft.svn.core.SVNMergeRange) java.io.File targetPath org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.SVNErrorMessage error private void removeAbsentChildren (java.io.File, java.util.Map) java.io.File childPath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child String topDir String childPathStr java.util.Iterator children java.io.File targetWCPath java.util.Map childrenWithMergeInfo protected void recordMergeInfoForDirectoryMerge (java.util.Map, org.tmatesoft.svn.core.SVNMergeRange, java.lang.String, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent mergeBeginEvent org.tmatesoft.svn.core.SVNMergeRangeList childMergeSrcRangelist org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL subtreeMergeUrl org.tmatesoft.svn.core.SVNURL oldUrl java.util.Map subtreeHistory boolean childNodeDeleted String childReposPath String childMergeSrcCanonPath org.tmatesoft.svn.core.SVNMergeRangeList childMergeRangelist boolean rangelistInheritance java.util.Map childMerges org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath parent int j boolean inSwitchedSubtree org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child int index java.util.Map resultCatalog org.tmatesoft.svn.core.SVNMergeRange mergeRange String mergeInfoPath org.tmatesoft.svn.core.SVNDepth depth boolean squelchMergeinfoNotifications boolean isRollBack boolean operativeMerge org.tmatesoft.svn.core.SVNMergeRange range java.util.Map inoperativeImmediateChildren Object[] array private boolean calculateMergeInheritance (org.tmatesoft.svn.core.SVNMergeRangeList, java.io.File, boolean, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.io.File localAbsPath boolean wcPathIsMergeTarget boolean wcPathHasMissingChild org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.SVNNodeKind kind boolean result private void recordSkips (java.lang.String, org.tmatesoft.svn.core.SVNMergeRangeList, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState os java.io.File skippedPath java.util.Iterator i$ String mergeInfoPath org.tmatesoft.svn.core.SVNMergeRangeList childMergeRangelist boolean isRollBack java.util.Map merges private void updateWCMergeInfo (java.util.Map, java.io.File, java.lang.String, java.util.Map, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties properties String propValue org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoInfo mergeinfoInfo String relPath java.util.Map existingMergeInfo org.tmatesoft.svn.core.SVNException e java.util.Map mergeinfo org.tmatesoft.svn.core.SVNMergeRangeList ranges String localAbsPathRelToTarget String relPath org.tmatesoft.svn.core.SVNMergeRangeList rangelist java.io.File localAbsPath java.util.Iterator i$ java.util.Map resultCatalog java.io.File targetAbsPath String reposRelPath java.util.Map merges boolean isRollBack private void recordMergeinfo (java.io.File, java.util.Map, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PropDiffs propDiff org.tmatesoft.svn.core.wc.SVNEvent event java.io.File localAbsPath java.util.Map mergeinfo boolean notify String mergeInfoValue boolean mergeInfoChanged private boolean isSubtreeTouchedByMerge (java.io.File) java.io.File absPath private boolean isSubtree (java.io.File, java.util.Collection) java.io.File subtree java.util.Iterator i$ java.io.File path java.util.Collection paths private org.tmatesoft.svn.core.SVNMergeRangeList filterNaturalHistoryFromMergeInfo (java.lang.String, java.util.Map, org.tmatesoft.svn.core.SVNMergeRange) org.tmatesoft.svn.core.SVNMergeRangeList impliedRangeList String srcPath java.util.Map implicitMergeInfo org.tmatesoft.svn.core.SVNMergeRange requestedRange org.tmatesoft.svn.core.SVNMergeRangeList requestedRangeList org.tmatesoft.svn.core.SVNMergeRangeList filteredRangeList private java.util.Map getInoperativeImmediateChildrent (java.lang.String, long, long, java.io.File, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException String relPath String fullPath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child java.io.File childPath java.util.Iterator i$ String mergeSourceReposAbsPath long oldestRev long youngestRev java.io.File targetAbsPath org.tmatesoft.svn.core.io.SVNRepository repos java.util.Map result private void recordMergeInfoForAddedSubtrees (org.tmatesoft.svn.core.SVNMergeRange, java.lang.String, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath targetMergePath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNMergeRange rng org.tmatesoft.svn.core.SVNMergeRangeList rangelist java.util.Map mergeMergeino String relAddedPath String addedMergeInfoPath org.tmatesoft.svn.core.SVNURL addedMergeInfoUrl org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL oldUrl java.util.Map addsHistory java.io.File dirPath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoInfo miInfo org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoInfo parentMiInfo java.io.File addedPath java.util.Iterator i$ org.tmatesoft.svn.core.SVNMergeRange range String mergeInfoPath org.tmatesoft.svn.core.SVNDepth depth boolean squelchMergeinfoNotifications private org.tmatesoft.svn.core.SVNMergeRangeList removeNoOpMergeRanges (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNMergeRangeList) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange range long maxRev long minRev int i long changedRev java.util.Iterator changedRevsIter org.tmatesoft.svn.core.SVNMergeRange range long rangeMinRev long rangeMaxRev int i org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNMergeRangeList ranges long oldestRev long youngestRev org.tmatesoft.svn.core.SVNMergeRange[] mergeRanges java.util.List changedRevs long youngestChangedRevision long oldestChangedRevision java.util.List operativeRanges private void fixDeletedSubtreeRanges (org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException String childReposSrcPath org.tmatesoft.svn.core.SVNURL childPrimarySrcUrl int parentIndex org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath parent org.tmatesoft.svn.core.SVNMergeRangeList added org.tmatesoft.svn.core.SVNMergeRangeList deleted org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 org.tmatesoft.svn.core.io.SVNRepository repository boolean isRollback org.tmatesoft.svn.core.SVNURL sourceRootUrl Object[] array public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException private static boolean isOperativeNotification (org.tmatesoft.svn.core.wc.SVNEvent) org.tmatesoft.svn.core.wc.SVNEvent event public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException java.io.File addedPathParent boolean subtreeRoot org.tmatesoft.svn.core.wc.SVNEvent mergeBeginEvent org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath child Object[] array int index org.tmatesoft.svn.core.wc.SVNEvent mergeBeginEvent org.tmatesoft.svn.core.wc.SVNEvent event double progress boolean operative protected org.tmatesoft.svn.core.io.SVNRepository ensureRepository (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL url public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState performObstructionCheck (java.io.File, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.SVNNodeKind expectedKind org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState result boolean checkRoot boolean isDryRunAddition (java.io.File) java.io.File path boolean isDryRunDeletion (java.io.File) java.io.File path private void checkWcForObstruction (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.internal.wc17.db.Structure parentInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus parentStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind parentDbKind org.tmatesoft.svn.core.SVNException e2 org.tmatesoft.svn.core.SVNException e boolean isRoot org.tmatesoft.svn.core.SVNNodeKind expectedKind org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictInfo ci org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState result java.io.File localAbsPath boolean noWcRootCheck org.tmatesoft.svn.core.internal.wc.SVNFileType diskKind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind dbKind boolean conflicted static synthetic int access$400 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver, java.lang.Object[], boolean, java.io.File) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver x0 Object[] x1 boolean x2 java.io.File x3 static synthetic java.util.Map access$500 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnDiffCallbackResult.class
SvnDiffCallbackResult.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult extends java.lang.Object { public org.tmatesoft.svn.core.wc.SVNStatusType contentState public org.tmatesoft.svn.core.wc.SVNStatusType propState public boolean skip public boolean skipChildren public boolean treeConflicted public void <init> () public org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult reset () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgRemoteDiffEditor$DirBaton.class
SvnNgRemoteDiffEditor.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton extends java.lang.Object { boolean added boolean treeConflicted boolean skip boolean skipChildren java.io.File wcPath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$DirBaton parent org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties pristineProperties private void <init> () public void loadProperties (org.tmatesoft.svn.core.io.SVNRepository, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repos String path long revision synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgLockUtil$LockInfo.class
SvnNgLockUtil.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLockUtil$LockInfo extends java.lang.Object { private java.io.File myFile private org.tmatesoft.svn.core.wc.SVNRevision myRevision private String myToken public void <init> (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) java.io.File file org.tmatesoft.svn.core.wc.SVNRevision rev public void <init> (java.io.File, java.lang.String) java.io.File file String token public java.io.File getFile () public org.tmatesoft.svn.core.wc.SVNRevision getRevision () public java.lang.String getToken () static synthetic org.tmatesoft.svn.core.wc.SVNRevision access$000 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLockUtil$LockInfo) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLockUtil$LockInfo x0 static synthetic java.lang.String access$100 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLockUtil$LockInfo) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLockUtil$LockInfo x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnDiffEditor$Entry.class
SvnDiffEditor.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry extends java.lang.Object { private boolean isFile private org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry parent private String path private boolean added private org.tmatesoft.svn.core.SVNDepth depth private org.tmatesoft.svn.core.SVNProperties propChanges private java.io.File localAbspath private org.tmatesoft.svn.core.wc2.SvnChecksum baseChecksum private org.tmatesoft.svn.core.wc2.SvnChecksum resultChecksum private java.io.File file private java.util.Set compared public void <init> (boolean, java.lang.String, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry, boolean, org.tmatesoft.svn.core.SVNDepth, java.io.File) boolean file String path org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry parent boolean added org.tmatesoft.svn.core.SVNDepth depth java.io.File localAbspath static synthetic org.tmatesoft.svn.core.SVNProperties access$000 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 static synthetic boolean access$100 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 static synthetic java.io.File access$200 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$002 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic java.lang.String access$300 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 static synthetic org.tmatesoft.svn.core.SVNDepth access$400 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 static synthetic java.util.Set access$500 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 static synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry access$600 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 static synthetic org.tmatesoft.svn.core.wc2.SvnChecksum access$702 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry, org.tmatesoft.svn.core.wc2.SvnChecksum) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 org.tmatesoft.svn.core.wc2.SvnChecksum x1 static synthetic org.tmatesoft.svn.core.wc2.SvnChecksum access$700 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 static synthetic java.io.File access$802 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry, java.io.File) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 java.io.File x1 static synthetic java.io.File access$800 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 static synthetic org.tmatesoft.svn.core.wc2.SvnChecksum access$900 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 static synthetic org.tmatesoft.svn.core.wc2.SvnChecksum access$902 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry, org.tmatesoft.svn.core.wc2.SvnChecksum) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 org.tmatesoft.svn.core.wc2.SvnChecksum x1 static synthetic java.util.Set access$502 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry, java.util.Set) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$Entry x0 java.util.Set x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgAbstractUpdate$1.class
SvnNgAbstractUpdate.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher { final synthetic org.tmatesoft.svn.core.io.SVNRepository[] val$repos2 final synthetic long val$revNumber final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate, org.tmatesoft.svn.core.io.SVNRepository[], long) public java.util.Map fetchEntries (org.tmatesoft.svn.core.SVNURL, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL reposRoot java.io.File path org.tmatesoft.svn.core.SVNURL url java.util.Map entries }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgCommit$SvnCommittedQueue.class
SvnNgCommit.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$SvnCommittedQueue extends java.lang.Object { public java.util.Map queue private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommit$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgCanonicalizeUrls.class
SvnNgCanonicalizeUrls.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCanonicalizeUrls extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnCanonicalizeUrls canonicalize java.io.File externalPath int i String externalPropertyValue org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals java.io.File path java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File lockRootPath org.tmatesoft.svn.core.internal.wc17.SVNExternalsStore store protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$UpdateChecksum$1.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$UpdateChecksum$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement select final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$UpdateChecksum this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$UpdateChecksum, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException public long exec () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues String checksum org.tmatesoft.sqljet.core.SqlJetException e long n }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergePegged.class
SvnNgMergePegged.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergePegged extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnMerge, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnMerge operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File lockPath private java.io.File getLockPath (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File firstTarget org.tmatesoft.svn.core.SVNNodeKind kind private void merge (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String targetUuid String sourceUuid org.tmatesoft.svn.core.SVNURL sourceRootURL java.io.File target org.tmatesoft.svn.core.internal.wc.SVNFileType ft org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNNodeKind targetKind org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver mergeDriver org.tmatesoft.svn.core.SVNURL wcReposRootURL boolean sameRepos org.tmatesoft.svn.core.io.SVNRepository repos java.util.List sources protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo20$2$1.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20$2$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20$2 this$1 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20$2, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgGetMergeInfo$1.class
SvnNgGetMergeInfo.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgGetMergeInfo$1 extends java.lang.Object implements java.util.Comparator { final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgGetMergeInfo this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgGetMergeInfo) public int compare (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL o1 org.tmatesoft.svn.core.SVNURL o2 public volatile synthetic int compare (java.lang.Object, java.lang.Object) Object x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgCheckout.class
SvnNgCheckout.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCheckout extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate { public void <init> () protected java.lang.Long run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.wc2.SvnTarget source protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgSuggestMergeSources.class
SvnNgSuggestMergeSources.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgSuggestMergeSources extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnSuggestMergeSources, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnSuggestMergeSources operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration public org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getWcGeneration () protected java.util.Collection run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String path java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.SVNURL[] root java.util.Map mergeInfoCatalog java.util.Map mergeInfo java.util.List suggestions org.tmatesoft.svn.core.io.SVNLocationEntry copySource protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeDriver$5.class
SvnNgMergeDriver.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$5 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { final synthetic java.util.Map val$result final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver, java.util.Map) public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException java.io.File iPath String reposPath java.util.Iterator immediateChildAbsPath java.io.File removedPath String changedPath java.util.Iterator i$ org.tmatesoft.svn.core.SVNLogEntry logEntry }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgWcToReposCopy$1.class
SvnNgWcToReposCopy.java package org.tmatesoft.svn.core.internal.wc2.ng synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc2/ng/SvnDiffGenerator.class
SvnDiffGenerator.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffGenerator extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator { protected static final String WC_REVISION_LABEL protected static final String PROPERTIES_SEPARATOR protected static final String HEADER_SEPARATOR private org.tmatesoft.svn.core.wc2.SvnTarget originalTarget1 private org.tmatesoft.svn.core.wc2.SvnTarget originalTarget2 private org.tmatesoft.svn.core.wc2.SvnTarget baseTarget private org.tmatesoft.svn.core.wc2.SvnTarget relativeToTarget private org.tmatesoft.svn.core.wc2.SvnTarget repositoryRoot private String encoding private byte[] eol private boolean useGitFormat private boolean forcedBinaryDiff private boolean diffDeleted private java.util.List rawDiffOptions private boolean forceEmpty private java.util.Set visitedPaths private String externalDiffCommand private org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions private boolean fallbackToAbsolutePath private org.tmatesoft.svn.core.wc.ISVNOptions options private java.lang.String getDisplayPath (org.tmatesoft.svn.core.wc2.SvnTarget) String relativePath String targetString String baseTargetString org.tmatesoft.svn.core.wc2.SvnTarget target String relativePath private java.lang.String getRelativeToRootPath (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnTarget) String relativePath String targetString String baseTargetString String relativePath String targetString String baseTargetString org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnTarget originalTarget String relativePath private java.lang.String getChildPath (java.lang.String, java.lang.String) String path String relativeToPath String relativePath public void <init> () public void setBaseTarget (org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget baseTarget public void setUseGitFormat (boolean) boolean useGitFormat public void setOriginalTargets (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget originalTarget1 org.tmatesoft.svn.core.wc2.SvnTarget originalTarget2 public void setRelativeToTarget (org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget relativeToTarget public void setAnchors (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget originalTarget1 org.tmatesoft.svn.core.wc2.SvnTarget originalTarget2 public void setRepositoryRoot (org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget repositoryRoot public void setForceEmpty (boolean) boolean forceEmpty public void setEncoding (java.lang.String) String encoding public java.lang.String getEncoding () public java.lang.String getGlobalEncoding () org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions defaultOptions org.tmatesoft.svn.core.wc.ISVNOptions options public void setEOL (byte[]) byte[] eol public byte[] getEOL () public boolean isForcedBinaryDiff () public void setForcedBinaryDiff (boolean) boolean forcedBinaryDiff public void displayDeletedDirectory (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target String revision1 String revision2 java.io.OutputStream outputStream public void displayAddedDirectory (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target String revision1 String revision2 java.io.OutputStream outputStream public void displayPropsChanged (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException String relativeToPath String absolutePath String childPath String childPath1 String childPath2 String newTargetString String newTargetString1 String newTargetString2 String commonAncestor int commonLength String label1 String label2 boolean shouldStopDisplaying org.tmatesoft.svn.core.wc2.SvnTarget target String revision1 String revision2 boolean dirWasAdded org.tmatesoft.svn.core.SVNProperties originalProps org.tmatesoft.svn.core.SVNProperties propChanges java.io.OutputStream outputStream String displayPath String targetString1 String targetString2 boolean showDiffHeader private void throwBadRelativePathException (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String displayPath String relativeToPath org.tmatesoft.svn.core.SVNErrorMessage errorMessage private void displayGitHeaderFields (java.io.OutputStream, org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.OutputStream outputStream org.tmatesoft.svn.core.wc2.SvnTarget target String revision1 String revision2 org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operation String copyFromPath String path1 String path2 private java.lang.String adjustRelativeToReposRoot (java.lang.String) String repositoryRootString String relativePath String targetString private java.lang.String computeLabel (java.lang.String, java.lang.String) String targetString String originalTargetString public void displayContentChanged (org.tmatesoft.svn.core.wc2.SvnTarget, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind, java.io.File, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException String relativeToPath String absolutePath String childPath String childPath1 String childPath2 boolean shouldStopDisplaying boolean shouldStopDisplaying org.tmatesoft.svn.core.wc2.SvnTarget target java.io.File leftFile java.io.File rightFile String revision1 String revision2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operation java.io.File copyFromPath java.io.OutputStream outputStream String displayPath String targetString1 String targetString2 String newTargetString String newTargetString1 String newTargetString2 String commonAncestor int commonLength String label1 String label2 boolean leftIsBinary boolean rightIsBinary String diffCommand private void displayBinary (java.lang.String, java.lang.String, java.io.OutputStream, boolean, boolean) throws org.tmatesoft.svn.core.SVNException String mimeType1 String mimeType2 java.io.OutputStream outputStream boolean leftIsBinary boolean rightIsBinary private void internalDiff (org.tmatesoft.svn.core.wc2.SvnTarget, java.io.OutputStream, java.lang.String, java.io.File, java.io.File, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException e String diffHeader java.util.Map properties String diffHeader de.regnis.q.sequence.line.diff.QDiffGenerator generator org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffGenerator$EmptyDetectionWriter writer org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.wc2.SvnTarget target java.io.OutputStream outputStream String displayPath java.io.File file1 java.io.File file2 String label1 String label2 org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operation String copyFromPath String revision1 String revision2 String header String headerFields java.io.RandomAccessFile is1 java.io.RandomAccessFile is2 private java.lang.String getHeaderFieldsString (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException e1 org.tmatesoft.svn.core.SVNException e java.io.IOException e org.tmatesoft.svn.core.wc2.SvnTarget target String displayPath String label1 String label2 String revision1 String revision2 org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operation String copyFromPath java.io.ByteArrayOutputStream byteArrayOutputStream private java.lang.String getHeaderString (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, boolean, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind, java.lang.String) throws org.tmatesoft.svn.core.SVNException boolean stopDisplaying java.io.IOException e1 org.tmatesoft.svn.core.SVNException e java.io.IOException e org.tmatesoft.svn.core.wc2.SvnTarget target String displayPath boolean deleted org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operation String copyFromPath java.io.ByteArrayOutputStream byteArrayOutputStream private void runExternalDiffCommand (java.io.OutputStream, java.lang.String, java.io.File, java.io.File, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.util.Collection svnDiffOptionsCollection java.io.Writer writer org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e java.io.OutputStream outputStream String diffCommand java.io.File file1 java.io.File file2 String label1 String label2 java.util.List args boolean tmpFile1 boolean tmpFile2 String file1Path String file2Path private java.lang.String getExternalDiffCommand () private void displayMimeType (java.io.OutputStream, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.OutputStream outputStream String mimeType private void displayMimeTypes (java.io.OutputStream, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.OutputStream outputStream String mimeType1 String mimeType2 private void displayCannotDisplayFileMarkedBinary (java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.OutputStream outputStream private void ensureEncodingAndEOLSet () private void displayPropDiffValues (java.io.OutputStream, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException byte[] originalValueBytes byte[] newValueBytes boolean newValueHadEol java.util.Map properties de.regnis.q.sequence.line.diff.QDiffGenerator generator java.io.Writer writer java.io.IOException e String name org.tmatesoft.svn.core.SVNPropertyValue originalValue org.tmatesoft.svn.core.SVNPropertyValue newValue String headerFormat java.util.Iterator changedPropNames java.io.OutputStream outputStream org.tmatesoft.svn.core.SVNProperties diff org.tmatesoft.svn.core.SVNProperties baseProps private byte[] maybeAppendEOL (byte[]) byte[] newBuffer byte[] buffer byte lastByte private java.lang.String getGitDiffLabel1 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind, java.lang.String, java.lang.String, java.lang.String, java.lang.String) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operationKind String path1 String path2 String copyFromPath String revision private java.lang.String getGitDiffLabel2 (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind, java.lang.String, java.lang.String, java.lang.String, java.lang.String) org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operationKind String path1 String path2 String copyFromPath String revision private void displayGitDiffHeader (java.io.OutputStream, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.OutputStream outputStream org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operationKind String path1 String path2 String copyFromPath private void displayGitDiffHeaderAdded (java.io.OutputStream, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.OutputStream outputStream String path1 String path2 String copyFromPath private void displayGitDiffHeaderDeleted (java.io.OutputStream, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.OutputStream outputStream String path1 String path2 String copyFromPath private void displayGitDiffHeaderCopied (java.io.OutputStream, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.OutputStream outputStream String path1 String path2 String copyFromPath private void displayGitDiffHeaderRenamed (java.io.OutputStream, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.OutputStream outputStream String path1 String path2 String copyFromPath private void displayGitDiffHeaderModified (java.io.OutputStream, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.OutputStream outputStream String path1 String path2 String copyFromPath private void displayFirstGitPath (java.io.OutputStream, java.lang.String) throws java.io.IOException java.io.OutputStream outputStream String path1 private void displaySecondGitPath (java.io.OutputStream, java.lang.String) throws java.io.IOException java.io.OutputStream outputStream String path2 private void displayFirstGitLabelPath (java.io.OutputStream, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind) throws java.io.IOException java.io.OutputStream outputStream String path1 String revision1 org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operation String pathPrefix private void displaySecondGitLabelPath (java.io.OutputStream, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind) throws java.io.IOException java.io.OutputStream outputStream String path2 String revision2 org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operation String pathPrefix private void displayGitPath (java.io.OutputStream, java.lang.String, java.lang.String, boolean) throws java.io.IOException java.io.OutputStream outputStream String path1 String pathPrefix boolean label private java.lang.String getAdjustedPathWithLabel (java.lang.String, java.lang.String, java.lang.String, java.lang.String) String displayPath String path String revision String commonAncestor String adjustedPath private java.lang.String getAdjustedPath (java.lang.String, java.lang.String, java.lang.String) String displayPath String path1 String commonAncestor String adjustedPath protected java.lang.String getLabel (java.lang.String, java.lang.String) String path String revToken protected boolean displayHeader (java.io.OutputStream, java.lang.String, boolean, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.OutputStream os String path boolean deleted org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operation protected void displayHeaderFields (java.io.OutputStream, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.OutputStream os String label1 String label2 private void displayPropertyChangesOn (java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException java.io.IOException e String path java.io.OutputStream outputStream private byte[] getPropertyAsBytes (org.tmatesoft.svn.core.SVNPropertyValue, java.lang.String) java.io.UnsupportedEncodingException e org.tmatesoft.svn.core.SVNPropertyValue value String encoding private void displayMergeInfoDiff (java.io.OutputStream, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException String path org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator paths String path org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator paths java.io.OutputStream outputStream String oldValue String newValue java.util.Map oldMergeInfo java.util.Map newMergeInfo java.util.Map deleted java.util.Map added private boolean useLocalFileSeparatorChar () public boolean isDiffDeleted () private void wrapException (java.io.IOException) throws org.tmatesoft.svn.core.SVNException java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage errorMessage private void displayString (java.io.OutputStream, java.lang.String) throws java.io.IOException java.io.OutputStream outputStream String s private void displayEOL (java.io.OutputStream) throws java.io.IOException java.io.OutputStream os public org.tmatesoft.svn.core.wc.SVNDiffOptions getDiffOptions () public void setExternalDiffCommand (java.lang.String) String externalDiffCommand public void setRawDiffOptions (java.util.List) java.util.List rawDiffOptions public void setDiffOptions (org.tmatesoft.svn.core.wc.SVNDiffOptions) org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions public void setDiffDeleted (boolean) boolean diffDeleted public void setBasePath (java.io.File) java.io.File absoluteFile public void setFallbackToAbsolutePath (boolean) boolean fallbackToAbsolutePath public void setOptions (org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNOptions options public org.tmatesoft.svn.core.wc.ISVNOptions getOptions () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUnlock.class
SvnNgUnlock.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUnlock extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected org.tmatesoft.svn.core.SVNLock run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.util.Map entriesMap java.util.Map pathsRevisionsMap org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRepositoryAccess wcAccess org.tmatesoft.svn.core.SVNURL topURL org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL rootURL protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext access$000 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUnlock) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUnlock x0 static synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext access$100 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUnlock) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUnlock x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeReintegrate$UnmergedMergeInfo.class
SvnNgMergeReintegrate.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo extends java.lang.Object { private java.util.Map catalog private boolean neverSynced private long youngestMergedRevision private void <init> () static synthetic java.util.Map access$102 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo, java.util.Map) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo x0 java.util.Map x1 static synthetic java.util.Map access$100 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo x0 static synthetic boolean access$200 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo x0 static synthetic long access$300 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo x0 synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$1 x0 static synthetic boolean access$202 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo, boolean) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo x0 boolean x1 static synthetic long access$302 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo, long) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$UnmergedMergeInfo x0 long x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMarkReplaced.class
SvnNgMarkReplaced.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMarkReplaced extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb db org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo schedule boolean alreadyReplaced java.io.File path java.io.File lock org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind getKind (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb db java.io.File path org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind private void doReplace (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File deletedPath java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb db java.io.File path java.util.List deletedPaths private void markAdded (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb db java.io.File path org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.wc.SVNEvent event private java.util.List markDeletedRecursively (org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb db java.io.File path java.util.List deletedPaths org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo20$2.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20$2 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20 this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e int n protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow java.util.Map insertValues }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo29.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo29 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable { private void <init> () public void bumpTo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File newAbsPath java.io.File file java.io.File[] arr$ int len$ int i$ java.io.File dir java.io.File[] arr$ int len$ int i$ org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.io.File wcRootAbsPath java.io.File pristineDirAbsPath synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgOperationRunner.class
SvnNgOperationRunner.java package org.tmatesoft.svn.core.internal.wc2.ng public abstract org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner extends org.tmatesoft.svn.core.internal.wc2.SvnLocalOperationRunner { private org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRepositoryAccess repositoryAccess public void <init> () protected java.lang.Object run () throws org.tmatesoft.svn.core.SVNException protected boolean matchesChangelist (java.io.File) java.io.File target protected org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRepositoryAccess getRepositoryAccess () throws org.tmatesoft.svn.core.SVNException protected void setRepositoryAccess (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRepositoryAccess) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRepositoryAccess repositoryAccess protected abstract java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException public void reset (org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration public org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getWcGeneration () protected void deleteDeleteFiles (org.tmatesoft.svn.core.internal.wc17.SVNCommitter17, org.tmatesoft.svn.core.wc2.ISvnCommitParameters) boolean delete java.io.File deletedPath java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNCommitter17 committer org.tmatesoft.svn.core.wc2.ISvnCommitParameters parameters java.util.Collection deletedPaths }
org/tmatesoft/svn/core/internal/wc2/ng/SvnOldDiffGenerator.class
SvnOldDiffGenerator.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnOldDiffGenerator extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator { private final org.tmatesoft.svn.core.wc.ISVNDiffGenerator generator private org.tmatesoft.svn.core.wc2.SvnTarget repositoryRoot public void <init> (org.tmatesoft.svn.core.wc.ISVNDiffGenerator) org.tmatesoft.svn.core.wc.ISVNDiffGenerator generator public org.tmatesoft.svn.core.wc.ISVNDiffGenerator getDelegate () public void setOriginalTargets (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget originalTarget1 org.tmatesoft.svn.core.wc2.SvnTarget originalTarget2 public void setAnchors (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget originalTarget1 org.tmatesoft.svn.core.wc2.SvnTarget originalTarget2 public void setBaseTarget (org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget baseTarget public void setRepositoryRoot (org.tmatesoft.svn.core.wc2.SvnTarget) org.tmatesoft.svn.core.wc2.SvnTarget repositoryRoot public void setEncoding (java.lang.String) String encoding public java.lang.String getEncoding () public java.lang.String getGlobalEncoding () public void setEOL (byte[]) byte[] eol public byte[] getEOL () public void setForceEmpty (boolean) boolean forceEmpty public void setForcedBinaryDiff (boolean) boolean forced public void setUseGitFormat (boolean) boolean useGitFormat public void displayDeletedDirectory (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget displayPath String revision1 String revision2 java.io.OutputStream outputStream public void displayAddedDirectory (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget displayPath String revision1 String revision2 java.io.OutputStream outputStream public void displayPropsChanged (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget displayPath String revision1 String revision2 boolean dirWasAdded org.tmatesoft.svn.core.SVNProperties originalProps org.tmatesoft.svn.core.SVNProperties propChanges java.io.OutputStream outputStream public void displayContentChanged (org.tmatesoft.svn.core.wc2.SvnTarget, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind, java.io.File, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget displayPath java.io.File leftFile java.io.File rightFile String revision1 String revision2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind operation java.io.File copyFromPath java.io.OutputStream outputStream private java.lang.String getDisplayPath (org.tmatesoft.svn.core.wc2.SvnTarget) String absolutePath String currentPath String relativePath org.tmatesoft.svn.core.wc2.SvnTarget path public boolean isForcedBinaryDiff () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgLogMergeInfo$LogEntryReceiver.class
SvnNgLogMergeInfo.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { private boolean isFilteringMerged private java.util.List mergeSourcePaths private String reposTargertAbsPath private java.util.Map targetCatalog private org.tmatesoft.svn.core.SVNMergeRangeList rangelist private org.tmatesoft.svn.core.wc2.ISvnObjectReceiver receiver public void <init> () public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException String mergeSourcePath java.util.Iterator i$ String path java.util.Iterator i$ org.tmatesoft.svn.core.SVNMergeRangeList rlist org.tmatesoft.svn.core.SVNMergeRange youngestRange org.tmatesoft.svn.core.SVNMergeRangeList inter org.tmatesoft.svn.core.SVNMergeRangeList rlist String path java.util.Iterator i$ String mergeSourceRelTarget boolean interrupted String mSourcePath String targetPathAffected java.util.Map nearestAncestorMergeInfo boolean ancestorIsSelf boolean foundThisRevision String changedPath java.util.Iterator i$ boolean allSubtreesHaveThisRev org.tmatesoft.svn.core.SVNMergeRangeList thisRevRangeList org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNLogEntry logEntry org.tmatesoft.svn.core.SVNMergeRangeList thisRangeList org.tmatesoft.svn.core.SVNMergeRangeList intersection public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 static synthetic org.tmatesoft.svn.core.wc2.ISvnObjectReceiver access$002 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver x0 org.tmatesoft.svn.core.wc2.ISvnObjectReceiver x1 static synthetic org.tmatesoft.svn.core.SVNMergeRangeList access$102 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver, org.tmatesoft.svn.core.SVNMergeRangeList) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver x0 org.tmatesoft.svn.core.SVNMergeRangeList x1 static synthetic boolean access$202 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver, boolean) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver x0 boolean x1 static synthetic java.util.Map access$302 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver, java.util.Map) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver x0 java.util.Map x1 static synthetic java.util.List access$402 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver, java.util.List) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver x0 java.util.List x1 static synthetic java.lang.String access$502 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver, java.lang.String) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLogMergeInfo$LogEntryReceiver x0 String x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb extends java.lang.Object { private static String PRISTINE_STORAGE_EXT private static int PRISTINE_BASENAME_OLD_LEN public void <init> () private static java.lang.String versionStringFromFormat (int) int wcFormat public static int upgrade (java.io.File, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File wcRootAbsPath org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb int startFormat int resultFormat java.io.File bumpWcRootAbsPath private static void migrateTreeConflictData (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt private static void migrateSingleTreeConflictData (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.String, long, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File entryPath org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt boolean haveRow java.util.Iterator keys org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb String treeConflictData long wcId java.io.File localRelPath java.util.Map conflicts private static void setVersion (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb int version private static void runBump (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.io.File wcRootAbsPath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable bump private static void upgradeExternals (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File externalPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement addStmt org.tmatesoft.svn.core.internal.wc.SVNExternal externalDef org.tmatesoft.svn.core.internal.wc.SVNExternal[] arr$ int len$ int i$ org.tmatesoft.svn.core.internal.wc.SVNExternal[] externalDefs org.tmatesoft.svn.core.SVNProperties props String externalsValues java.io.File localRelPath java.io.File localAbsPath org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.io.File wcRootAbsPath org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt static synthetic void access$1000 (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 int x1 static synthetic void access$1100 (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 static synthetic int access$1200 () static synthetic java.lang.String access$1300 () static synthetic void access$1400 (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 java.io.File x1 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgWcToWcCopy$2.class
SvnNgWcToWcCopy.java package org.tmatesoft.svn.core.internal.wc2.ng synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$2 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbStatus static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgGetChangelistPaths.class
SvnNgGetChangelistPaths.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgGetChangelistPaths extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner implements org.tmatesoft.svn.core.wc.ISVNChangelistHandler org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ISVNWCNodeHandler { private org.tmatesoft.svn.core.internal.wc17.SVNWCContext context public void <init> () protected java.lang.String run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context public void doGetChangeLists (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File file public void nodeFound (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info public void handle (java.io.File, java.lang.String) org.tmatesoft.svn.core.SVNException e java.io.File path String changelistName protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgRevert.class
SvnNgRevert.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRevert extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e boolean isWcRoot java.io.File lockTarget java.io.File lockRoot org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context boolean useCommitTimes private void revert (java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNNodeKind childKind java.io.File childAbsPath String childName java.util.Iterator i$ java.util.Set children java.io.File localAbsPath org.tmatesoft.svn.core.SVNDepth depth boolean useCommitTimes java.util.Collection changelists org.tmatesoft.svn.core.SVNErrorMessage err private void revertChangelist (java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.io.File childAbsPath String childName java.util.Iterator i$ java.io.File localAbsPath org.tmatesoft.svn.core.SVNDepth depth boolean useCommitTimes java.util.Collection changelists java.util.Set children private void revert (java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File localAbsPath org.tmatesoft.svn.core.SVNDepth depth boolean useCommitTimes java.io.File wcRoot public static void restore (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo org.tmatesoft.svn.core.SVNException e boolean removed long lastModified long size boolean isReadOnly boolean needsLock boolean executable boolean executableProperty org.tmatesoft.svn.core.SVNProperties pristineProperties boolean modified String specialProperty org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File childAbsPath String childName java.util.Iterator i$ java.util.Set children org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath org.tmatesoft.svn.core.SVNDepth depth boolean useCommitTimes org.tmatesoft.svn.core.wc.ISVNEventHandler notifier org.tmatesoft.svn.core.internal.wc17.db.Structure revertInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus status org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind long recordedSize long recordedTime boolean notifyRequired org.tmatesoft.svn.core.internal.wc.SVNFileType filetype org.tmatesoft.svn.core.SVNNodeKind onDisk boolean special private static boolean restoreCopiedDirectory (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind childKind org.tmatesoft.svn.core.internal.wc.SVNFileType childFileType java.io.File child java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind childKind java.io.File child java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath boolean removeSelf boolean selfRemoved java.util.Map children protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeinfoUtil$SvnMergeInfoCatalogInfo.class
SvnNgMergeinfoUtil.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoCatalogInfo extends java.lang.Object { java.util.Map catalog boolean inherited String walkRelPath public void <init> () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgExport.class
SvnNgExport.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgExport extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected java.lang.Long run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.wc.SVNRevision revision java.io.File to java.io.File from String eolStyle boolean ignoreKeywords boolean force org.tmatesoft.svn.core.SVNDepth depth private void copyVersionedDir (java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure originInfo boolean isDeleted org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind externalKind java.io.File targetPath org.tmatesoft.svn.core.SVNNodeKind childKind java.io.File child java.util.Iterator i$ java.io.File extFrom java.io.File extTo int i org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals String externalProperty java.util.List children org.tmatesoft.svn.core.SVNDepth nodeDepth org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.wc.SVNFileType toType java.io.File from java.io.File to org.tmatesoft.svn.core.wc.SVNRevision revision String eolStyle boolean ignoreKeywords boolean force org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.SVNNodeKind fromKind private void copyVersionedFile (java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PristineContentsInfo pristine org.tmatesoft.svn.core.wc2.SvnStatus fromStatus String linkTarget long timestamp org.tmatesoft.svn.core.internal.util.SVNDate committedDate org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo String rev String author org.tmatesoft.svn.core.SVNURL nodeUrl java.io.IOException e java.io.OutputStream os java.io.InputStream is java.io.File from java.io.File to org.tmatesoft.svn.core.wc.SVNRevision revision String eolStyle boolean ignoreKeywords boolean isDeleted java.io.File source org.tmatesoft.svn.core.SVNProperties properties boolean modified long timestamp boolean special boolean executable String keywords String charsetProp String mimeType String charset byte[] eols org.tmatesoft.svn.core.internal.util.SVNDate committedDate java.util.Map keywordsMap java.io.File tmpFile protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo25.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo25 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable { private void <init> () public void bumpTo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.io.File wcRootAbsPath synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgLockUtil.class
SvnNgLockUtil.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLockUtil extends java.lang.Object { public void <init> () public static org.tmatesoft.svn.core.SVNURL collectLockInfo (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner, org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRepositoryAccess, java.util.Collection, java.util.Map, java.util.Map, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err int segments org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock dbLock java.io.File file org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNErrorMessage err String encodedPath org.tmatesoft.svn.core.SVNURL fullURL org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLockUtil$LockInfo info java.util.Iterator encodedPaths org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner opRunner org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRepositoryAccess wcAccess java.util.Collection targets java.util.Map lockInfo java.util.Map lockPaths boolean lock boolean stealLock String[] paths int i java.util.Collection condencedPaths String commonParentPath int depth org.tmatesoft.svn.core.SVNURL[] urls java.util.Collection urlPaths org.tmatesoft.svn.core.SVNURL topURL }
org/tmatesoft/svn/core/internal/wc2/ng/SvnDiffCallback$OperationKind.class
SvnDiffCallback.java package org.tmatesoft.svn.core.internal.wc2.ng public final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind Unchanged public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind Added public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind Deleted public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind Copied public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind Moved public static final enum org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind Modified private static final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind[] $VALUES public static org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind[] values () public static org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback$OperationKind valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo23.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo23 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable { private void <init> () public void bumpTo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.io.File wcRootAbsPath org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement stmt boolean haveRow synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo22$2.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo22$2 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo22 this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo22, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUnlock$1.class
SvnNgUnlock.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUnlock$1 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLockHandler { final synthetic org.tmatesoft.svn.core.SVNURL val$rootURL final synthetic java.util.Map val$entriesMap final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUnlock this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUnlock, org.tmatesoft.svn.core.SVNURL, java.util.Map) public void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNURL fullURL org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLockUtil$LockInfo lockInfo org.tmatesoft.svn.core.wc.SVNEventAction action }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgWcToReposCopy.class
SvnNgWcToReposCopy.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner implements org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCommitUtil$ISvnUrlKindCallback { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnRemoteCopy, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnRemoteCopy operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration private boolean areAllSourcesLocal (org.tmatesoft.svn.core.wc2.SvnRemoteCopy) org.tmatesoft.svn.core.wc2.SvnCopySource source java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnRemoteCopy operation protected org.tmatesoft.svn.core.SVNCommitInfo run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnCopySource source org.tmatesoft.svn.core.SVNURL target org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.SVNCommitInfo info protected org.tmatesoft.svn.core.SVNCommitInfo doRun (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$SvnCopyPair copyPair String baseName org.tmatesoft.svn.core.wc2.SvnCopySource copySource java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$SvnCopyPair copyPair org.tmatesoft.svn.core.wc2.SvnCopySource source org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.SVNURL target java.util.Collection sources java.util.Collection copyPairs private org.tmatesoft.svn.core.SVNCommitInfo copy (java.util.Collection, boolean, org.tmatesoft.svn.core.SVNProperties, java.lang.String, org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$SvnCopyPair pair java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$SvnCopyPair pair java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnCommitItem parentItem org.tmatesoft.svn.core.SVNURL parent java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnCommitItem item org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$SvnCopyPair svnCopyPair java.util.Iterator i$ String parentPath org.tmatesoft.svn.core.SVNURL parent java.util.Iterator i$ java.util.Map externals org.tmatesoft.svn.core.wc2.SvnCommitItem item java.util.Map mergeInfo String mergeInfoProperty java.util.Map wcMergeInfo String extendedMergeInfoValue org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$SvnCopyPair svnCopyPair java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnCommitPacket oldPacket java.util.Collection copyPairs boolean makeParents org.tmatesoft.svn.core.SVNProperties revisionProperties String commitMessage org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler commitHandler org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$SvnCopyPair firstPair org.tmatesoft.svn.core.SVNURL topDstUrl java.io.File topSrcPath org.tmatesoft.svn.core.io.SVNRepository repository java.util.Collection parents org.tmatesoft.svn.core.wc2.SvnCommitItem[] items int index org.tmatesoft.svn.core.wc2.SvnCommitPacket packet org.tmatesoft.svn.core.SVNURL repositoryRoot java.util.Map committables org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.internal.wc17.SVNCommitter17 committer org.tmatesoft.svn.core.SVNCommitInfo info private java.lang.String buildErrorMessageWithDebugInformation (org.tmatesoft.svn.core.wc2.SvnCommitPacket) org.tmatesoft.svn.core.wc2.SvnCommitItem oldItem java.util.Iterator i$ java.util.Collection oldItems org.tmatesoft.svn.core.SVNURL oldRoot java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnCommitPacket oldPacket StringBuilder stringBuilder java.util.Collection repositoryRoots private org.tmatesoft.svn.core.wc2.SvnCommitPacket filterLocalModifications (org.tmatesoft.svn.core.wc2.SvnCommitPacket) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL copyFromUrl org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc2.SvnCommitItem item java.util.Iterator i$ java.util.Collection items org.tmatesoft.svn.core.SVNURL repositoryRoot java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnCommitPacket packet org.tmatesoft.svn.core.wc2.SvnCommitPacket filteredPacket java.util.Collection repositoryRoots private void includeExternalsChanges (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.wc2.SvnCommitPacket, java.util.Map, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$SvnCopyPair) throws org.tmatesoft.svn.core.SVNException long rev org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.SVNExternal newExternal java.io.File externalWC org.tmatesoft.svn.core.wc.SVNRevision externalsWCRevision org.tmatesoft.svn.core.SVNURL resolvedURL String unresolvedURL org.tmatesoft.svn.core.wc.SVNRevision[] revs int k String external java.util.Iterator i$ String newExternalsProp org.tmatesoft.svn.core.wc2.SvnCommitItem itemWithExternalsChanges String externalsPropString org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals boolean introduceVirtualExternalChange java.util.List newExternals org.tmatesoft.svn.core.SVNURL ownerURL long ownerRev java.io.File ownerReposRelPath java.io.File sourceReposRelPath String relativePath org.tmatesoft.svn.core.SVNURL targetURL java.io.File externalHolder java.util.Iterator i$ org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.wc2.SvnCommitPacket packet java.util.Map externalsStorage org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$SvnCopyPair svnCopyPair private java.util.Collection findMissingParents (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL targetURL org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNNodeKind kind java.util.Collection parents private java.io.File getCommonCopyAncestor (java.util.Collection) String ancestorPath String sourcePath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$SvnCopyPair svnCopyPair java.util.Iterator i$ java.util.Collection copyPairs java.io.File ancestor private java.util.Map calculateTargetMergeInfo (java.io.File, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException java.util.Map targetMergeInfo String mergeInfoPath org.tmatesoft.svn.core.io.SVNRepository repos java.io.File srcFile long srcRevision org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL oldLocation org.tmatesoft.svn.core.internal.wc17.db.Structure nodeOrigin public org.tmatesoft.svn.core.SVNNodeKind getUrlKind (org.tmatesoft.svn.core.SVNURL, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url long revision protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeDriver$6.class
SvnNgMergeDriver.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$6 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { final synthetic java.util.List val$changedRevs final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver, java.util.List) public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry }
org/tmatesoft/svn/core/internal/wc2/ng/ISvnDiffCallback.class
ISvnDiffCallback.java package org.tmatesoft.svn.core.internal.wc2.ng public abstract org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback extends java.lang.Object { public abstract void fileOpened (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, long) throws org.tmatesoft.svn.core.SVNException public abstract void fileChanged (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException public abstract void fileAdded (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, java.io.File, long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException public abstract void fileDeleted (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, java.io.File, java.io.File, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException public abstract void dirDeleted (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void dirOpened (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, long) throws org.tmatesoft.svn.core.SVNException public abstract void dirAdded (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, long, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException public abstract void dirPropsChanged (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException public abstract void dirClosed (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$1.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng final org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected void defineFields () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgAbstractUpdate$2.class
SvnNgAbstractUpdate.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate$2 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.ISVNDirFetcher { final synthetic org.tmatesoft.svn.core.io.SVNRepository[] val$repos2 final synthetic long val$revnum final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate, org.tmatesoft.svn.core.io.SVNRepository[], long) public java.util.Map fetchEntries (org.tmatesoft.svn.core.SVNURL, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL reposRoot java.io.File path org.tmatesoft.svn.core.SVNURL url java.util.Map entries org.tmatesoft.svn.core.SVNNodeKind kind }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo20$1$1.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20$1$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20$1 this$1 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20$1, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo21.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo21 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable { private void <init> () public void bumpTo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.io.File wcRootAbsPath synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo20$1.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement select final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20 this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e int n protected java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException java.util.Map selectedRow java.util.Map insertValues }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo22$1.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo22$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement { final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo22 this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo22, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 public java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException java.util.Map rowValues }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeReintegrate$2.class
SvnNgMergeReintegrate.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$2 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { final synthetic java.io.File val$targetReposRelPath final synthetic java.io.File val$sourceReposRelPath final synthetic java.util.Map val$mergedToSourceCatalog final synthetic java.util.Map val$finalUnmergedCatalog final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate, java.io.File, java.io.File, java.util.Map, java.util.Map) public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException java.io.File missingPath java.io.File subtreeMissingInThisRev java.util.Map mi2 java.util.Map existing String relPath java.io.File sourceRelpath String mergeInfoForPath java.util.Map mi java.io.File[] subtreeMissing boolean inCatalog String changedPath java.util.Iterator i$ org.tmatesoft.svn.core.SVNLogEntry logEntry }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgPropertiesManager$1.class
SvnNgPropertiesManager.java package org.tmatesoft.svn.core.internal.wc2.ng final org.tmatesoft.svn.core.internal.wc2.ng.SvnNgPropertiesManager$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ISVNWCNodeHandler { final synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext val$context final synthetic String val$propertyName final synthetic org.tmatesoft.svn.core.SVNPropertyValue val$propertyValue final synthetic org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider val$pvProvider final synthetic boolean val$skipChecks final synthetic org.tmatesoft.svn.core.wc.ISVNEventHandler val$eventHandler final synthetic org.tmatesoft.svn.core.wc2.ISvnObjectReceiver val$receiver void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler, org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) public void nodeFound (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File localAbspath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeinfoUtil.class
SvnNgMergeinfoUtil.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil extends java.lang.Object { public void <init> () private static java.util.Map parseMergeInfo (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath org.tmatesoft.svn.core.SVNPropertyValue propValue public static void elideMergeInfo (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.io.SVNRepository, java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoInfo targetMergeinfo org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoInfo mergeinfo org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.io.SVNRepository repos java.io.File targetAbsPath java.io.File limitAbsPath private static void elideMergeInfo (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.util.Map, java.util.Map, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.util.Map parent java.util.Map child java.io.File targetAbsPath public static org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoInfo getWCMergeInfo (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext$CheckWCRootInfo rootInfo long parentBaseRev long parentChangedRev org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath java.io.File limitAbsPath org.tmatesoft.svn.core.SVNMergeInfoInheritance inheritance boolean ignoreInvalidMergeInfo long baseRevision java.util.Map wcMergeInfo String walkRelPath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoInfo result private static org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoCatalogInfo getWcMergeInfoCatalog (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, boolean, org.tmatesoft.svn.core.SVNMergeInfoInheritance, java.io.File, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException String propValue java.io.File keyPath java.util.Map childMergeInfo java.io.File childPath java.util.Iterator i$ java.util.Map mergeInfoProperties org.tmatesoft.svn.core.internal.wc17.SVNWCContext context boolean includeDescendants org.tmatesoft.svn.core.SVNMergeInfoInheritance inheritance java.io.File localAbsPath java.io.File limitAbsPath boolean ignoreInvalidMergeInfo org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoCatalogInfo result org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo reposInfo java.io.File targetReposRelPath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoInfo mi private static org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoCatalogInfo getReposMergeInfoCatalog (org.tmatesoft.svn.core.io.SVNRepository, java.lang.String, long, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNMergeInfo mi String reposRelativePath java.util.Iterator i$ org.tmatesoft.svn.core.io.SVNRepository repository String relativePath long revision org.tmatesoft.svn.core.SVNMergeInfoInheritance inheritance boolean squelchIncapable boolean includeDescendats org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoCatalogInfo result java.util.Map reposMeregInfo static org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoCatalogInfo getWcOrReposMergeInfoCatalog (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.io.SVNRepository, java.io.File, boolean, boolean, boolean, org.tmatesoft.svn.core.SVNMergeInfoInheritance) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoCatalogInfo catalogInfo org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoCatalogInfo catalogInfo org.tmatesoft.svn.core.SVNURL oldLocation org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.io.SVNRepository repository java.io.File wcPath boolean includeDescendants boolean reposOnly boolean ignoreInvalidMergeInfo org.tmatesoft.svn.core.SVNMergeInfoInheritance inheritance org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoCatalogInfo result org.tmatesoft.svn.core.internal.wc17.db.Structure nodeOriginInfo org.tmatesoft.svn.core.SVNURL url long revision java.io.File reposRelPath java.util.Map wcMergeInfoCatalog java.util.Map reposMergeInfoCatalog public static java.util.Map getMergeInfo (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess, org.tmatesoft.svn.core.wc2.SvnTarget, boolean, boolean, org.tmatesoft.svn.core.SVNURL[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL originURL org.tmatesoft.svn.core.internal.wc17.db.Structure nodeOriginInfo java.io.File reposRelPath org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess repoAccess org.tmatesoft.svn.core.wc2.SvnTarget target boolean includeDescendants boolean ignoreInvalidMergeInfo org.tmatesoft.svn.core.SVNURL[] root org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.SVNURL url long pegRev long rev org.tmatesoft.svn.core.io.SVNRepository repository boolean useURL public static java.util.Map getWCOrReposMergeInfo (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, org.tmatesoft.svn.core.io.SVNRepository, boolean, org.tmatesoft.svn.core.SVNMergeInfoInheritance) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File wcPath org.tmatesoft.svn.core.io.SVNRepository repository boolean reposOnly org.tmatesoft.svn.core.SVNMergeInfoInheritance inheritance org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeinfoUtil$SvnMergeInfoCatalogInfo catalog public static java.util.Map convertToCatalog (java.util.Map) org.tmatesoft.svn.core.SVNMergeInfo mi String path java.util.Iterator i$ java.util.Map catalog java.util.Map result public static java.util.Map convertToCatalog2 (java.util.Map) org.tmatesoft.svn.core.SVNMergeInfo mi String path java.util.Iterator i$ java.util.Map catalog java.util.Map result public static java.util.Map addPrefixToCatalog (java.util.Map, java.io.File) java.util.Map mi String prefixedPath String path java.util.Iterator i$ java.util.Map catalog java.io.File prefix java.util.Map result }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgPropertiesManager$2.class
SvnNgPropertiesManager.java package org.tmatesoft.svn.core.internal.wc2.ng final org.tmatesoft.svn.core.internal.wc2.ng.SvnNgPropertiesManager$2 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNFileContentFetcher { final synthetic org.tmatesoft.svn.core.internal.wc17.SVNWCContext val$context final synthetic java.io.File val$path void <init> (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) public org.tmatesoft.svn.core.SVNPropertyValue getProperty (java.lang.String) throws org.tmatesoft.svn.core.SVNException String propertyName public boolean fileIsBinary () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue mimeType public void fetchFileContent (java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ioew org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.OutputStream os java.io.InputStream is }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeDriver$2.class
SvnNgMergeDriver.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$2 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { final synthetic long val$reportStart final synthetic org.tmatesoft.svn.core.SVNDepth val$reportDepth final synthetic boolean val$honorMergeInfo final synthetic java.util.Map val$childrenWithMergeInfo final synthetic boolean val$isRollBack final synthetic long val$revision2 final synthetic String val$targetPath final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver, long, org.tmatesoft.svn.core.SVNDepth, boolean, java.util.Map, boolean, long, java.lang.String) public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange parentRange org.tmatesoft.svn.core.SVNMergeRange childRange org.tmatesoft.svn.core.SVNMergeRangeList remainingRangesList org.tmatesoft.svn.core.SVNMergeRange[] remainingRanges org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath childMergePath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergePath parent int parentIndex org.tmatesoft.svn.core.SVNMergeRange range String childPath String relChildPath int i Object[] childrenWithMergeInfoArray org.tmatesoft.svn.core.io.ISVNReporter reporter }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo23$1.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo23$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo23 this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo23, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected void defineFields () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeCallback.class
SvnNgMergeCallback.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback { private java.util.Collection conflictedPaths private org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver driver public void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver driver public java.util.Collection getConflictedPaths () public void fileOpened (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path long revision public void fileChanged (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDepth parentDepth org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo mergeOutcome org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergeInfo mergeOutcome boolean hasLocalMods String targetLabel String leftLabel String rightLabel org.tmatesoft.svn.core.internal.wc.SVNConflictVersion[] cvs org.tmatesoft.svn.core.wc.ISVNOptions opts org.tmatesoft.svn.core.wc.ISVNConflictHandler[] conflictHandler org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path java.io.File tmpFile1 java.io.File tmpFile2 long rev1 long rev2 String mimetype1 String mimeType2 org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState os org.tmatesoft.svn.core.SVNNodeKind wcKind boolean isDeleted public void fileAdded (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, java.io.File, long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String propName java.util.Iterator i$ String child org.tmatesoft.svn.core.SVNProperties newBaseProps org.tmatesoft.svn.core.SVNProperties newProps org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc org.tmatesoft.svn.core.SVNURL copyFromUrl long copyFromRev java.io.InputStream newBaseContents java.io.InputStream newContents org.tmatesoft.svn.core.SVNProperties newBaseProps org.tmatesoft.svn.core.SVNProperties newProps org.tmatesoft.svn.core.SVNNodeKind wcKind org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path java.io.File leftFile java.io.File rightFile long rev1 long rev2 String mimeType1 String mimeType2 java.io.File copyFromPath long copyFromRevision org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties fileProps org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState os org.tmatesoft.svn.core.SVNNodeKind kind public void fileDeleted (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, java.io.File, java.io.File, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException boolean same org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path java.io.File leftFile java.io.File rightFile String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState os org.tmatesoft.svn.core.SVNNodeKind kind private void setDryRunDeletions (java.util.Collection) java.util.Collection set private void setDryRunAddtions (java.util.Collection) java.util.Collection set public void dirDeleted (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState os boolean isVersioned public void dirOpened (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDepth parentDepth org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path long revision org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState os public void dirAdded (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, long, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNFileType diskKind org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo reposInfo java.io.File reposRelPath org.tmatesoft.svn.core.internal.wc17.SVNWCContext$SVNWCNodeReposInfo reposInfo java.io.File reposRelPath org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path long revision String copyFromPath long copyFromRevision java.io.File parentPath String child org.tmatesoft.svn.core.SVNURL copyFromUrl long copyFromRev org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState os boolean isVersioned public void dirPropsChanged (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path boolean isAdded org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$ObstructionState os org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo info public void dirClosed (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallbackResult result java.io.File path boolean isAdded private void checkReposMatch (java.io.File, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path org.tmatesoft.svn.core.SVNURL url private org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo mergePropChanges (java.io.File, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties mergeinfoProps org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNProperties pristineProps boolean hasPristineMergeInfo String propName java.util.Iterator i$ org.tmatesoft.svn.core.SVNException err java.io.File localAbsPath org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.internal.wc17.SVNWCContext$MergePropertiesInfo mergeOutcome private void addPathWithAddedMergeInfo (java.io.File) java.io.File localAbsPath private void addPathWithDeletedMergeInfo (java.io.File) java.io.File localAbsPath private org.tmatesoft.svn.core.SVNProperties filterSelfReferentialMergeInfo (org.tmatesoft.svn.core.SVNProperties, java.io.File, boolean, boolean, boolean, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL startURL org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.wc17.db.Structure locations int i org.tmatesoft.svn.core.SVNMergeRangeList adjustedRangeList String sourcePath org.tmatesoft.svn.core.SVNMergeRangeList rangeList org.tmatesoft.svn.core.SVNMergeRange[] ranges java.util.List adjustedRanges org.tmatesoft.svn.core.SVNURL mergeSourceURL java.util.Iterator youngerMergeInfoIter org.tmatesoft.svn.core.SVNURL mergeSourceRootUrl java.util.Map implicitMergeInfo String filteredMergeInfoStr org.tmatesoft.svn.core.SVNURL targetUrl org.tmatesoft.svn.core.SVNURL oldUrl String mi java.util.Map mergeinfo java.util.Map filteredYoungerMergeinfo java.util.Map filteredMergeinfo java.util.Map[] splitted java.util.Map youngerMergeInfo String propName java.util.Iterator i$ org.tmatesoft.svn.core.SVNProperties props java.io.File localAbsPath boolean honorMergeInfo boolean sameRepos boolean reintegrateMerge org.tmatesoft.svn.core.io.SVNRepository repos boolean isAdded long baseRevision org.tmatesoft.svn.core.SVNProperties adjustedProps private java.util.Map[] splitMergeInfoOnRevision (java.util.Map, long) org.tmatesoft.svn.core.SVNMergeRange r2 org.tmatesoft.svn.core.SVNMergeRange youngerRange int j org.tmatesoft.svn.core.SVNMergeRangeList youngerRl org.tmatesoft.svn.core.SVNMergeRange r int i org.tmatesoft.svn.core.SVNMergeRangeList rl String path java.util.Iterator i$ java.util.Map mergeinfo long revision java.util.Map youngerMergeinfo java.util.Map[] result private org.tmatesoft.svn.core.SVNProperties omitMergeInfoChanges (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNPropertyValue pv String name java.util.Iterator i$ org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNProperties result private boolean isHonorMergeInfo () private org.tmatesoft.svn.core.internal.wc.SVNConflictVersion[] makeConflictVersions (java.io.File, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL leftUrl org.tmatesoft.svn.core.SVNURL rightUrl java.io.File target org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNURL srcReposUrl String child org.tmatesoft.svn.core.SVNURL leftUrl org.tmatesoft.svn.core.SVNURL rightUrl String leftPath String rightPath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion lv org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rv private void treeConflictOnAdd (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.wc.SVNConflictReason) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNConflictAction action org.tmatesoft.svn.core.wc.SVNConflictReason reason org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc org.tmatesoft.svn.core.wc.SVNTreeConflictDescription existingTc private org.tmatesoft.svn.core.wc.SVNTreeConflictDescription makeTreeConflict (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.wc.SVNConflictReason) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNConflictAction action org.tmatesoft.svn.core.wc.SVNConflictReason reason org.tmatesoft.svn.core.internal.wc.SVNConflictVersion[] cvs org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc private void treeConflict (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.wc.SVNConflictReason) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNConflictAction action org.tmatesoft.svn.core.wc.SVNConflictReason reason org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc private boolean compareProps (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String propName java.util.Iterator i$ org.tmatesoft.svn.core.SVNProperties p1 org.tmatesoft.svn.core.SVNProperties p2 org.tmatesoft.svn.core.SVNProperties diff private boolean compareFiles (java.io.File, org.tmatesoft.svn.core.SVNProperties, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.InputStream is java.io.InputStream old java.io.File oldPath org.tmatesoft.svn.core.SVNProperties oldProps java.io.File minePath org.tmatesoft.svn.core.SVNProperties workingProperties boolean same private org.tmatesoft.svn.core.internal.wc17.SVNWCContext getContext () private boolean isReintegrateMerge () private boolean isRecordOnly () private boolean isDryRun () private boolean isForce () private boolean isSameRepos () private org.tmatesoft.svn.core.wc.SVNDiffOptions getDiffOptions () private java.io.File getAddedPath () private void setAddedPath (java.io.File) java.io.File path private boolean areSourcesAncestral () private java.io.File getTargetPath () private org.tmatesoft.svn.core.io.SVNRepository getRepos1 () private org.tmatesoft.svn.core.io.SVNRepository getRepos2 () private org.tmatesoft.svn.core.SVNURL getReposRootURL () private org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess getRepositoryAccess () private org.tmatesoft.svn.core.SVNURL getSource1URL () private org.tmatesoft.svn.core.SVNURL getSource2URL () private long getSource1Rev () private long getSource2Rev () private java.util.Collection getDryRunDeletions () private java.util.Collection getDryRunAdditions () static synthetic java.util.Collection access$000 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback x0 static synthetic java.util.Collection access$002 (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback, java.util.Collection) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback x0 java.util.Collection x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeDriver$3.class
SvnNgMergeDriver.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$3 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic java.util.Map val$subtreesWithMergeinfo final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver, java.util.Map) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNProperties object String value public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgRemove$1.class
SvnNgRemove.java package org.tmatesoft.svn.core.internal.wc2.ng final org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemove$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { void <init> () public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnStatus status org.tmatesoft.svn.core.SVNErrorMessage err public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgWcToWcCopy$1.class
SvnNgWcToWcCopy.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic String val$interestingPath final synthetic org.tmatesoft.svn.core.wc2.SvnStatus[] val$status2 final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy, java.lang.String, org.tmatesoft.svn.core.wc2.SvnStatus[]) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnStatus svnStatus java.io.File path String statusPath public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo20.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo20 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable { private void <init> () public void bumpTo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$UpdateChecksum uc org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement stmt org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.io.File wcRootAbsPath synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgWcToWcCopy.class
SvnNgWcToWcCopy.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnCopy, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnCopy operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration private boolean areAllSourcesLocal (org.tmatesoft.svn.core.wc2.SvnCopy) org.tmatesoft.svn.core.wc2.SvnCopySource source java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnCopy operation private boolean isLocalRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision revision protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnCopySource source org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.util.Collection sources protected java.lang.Void tryRun (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.util.Collection, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.util.Collection sources java.io.File target private java.lang.Void disjointCopy (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File nestedWC java.io.File nestedWCParent java.io.File wcRoot java.io.File tempDirectory java.io.File fakeWorkingCopyDirectory java.io.File lockRoot private void checkForDisjointCopyPossibility (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File nestedWC java.io.File nestedWCParent org.tmatesoft.svn.core.internal.wc.SVNFileType nestedWCType org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb wcdb org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo parentBaseInfo org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo parentSchedule org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ScheduleInternalInfo schedule java.io.File relativePath java.io.File parentRelativePath private void moveWcDb (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File sourceWc java.io.File targetWc java.io.File sourceWcDbFile java.io.File targetWcDbFile private void copyPristineFiles (java.io.File, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File targetPristineFile java.io.File sourcePristineFile java.io.File[] arr$ int len$ int i$ java.io.File targetDirectory java.io.File[] sourcePristineFiles java.io.File sourceDirectory java.io.File[] arr$ int len$ int i$ java.io.File sourceWc java.io.File targetWc boolean move java.io.File sourcePristineDirectory java.io.File targetPristineDirectory java.io.File[] sourceDirectories private java.io.File getPristineDirectory (java.io.File) java.io.File workingCopyDirectory private java.io.File getWCDbFile (java.io.File) java.io.File nestedWC private java.io.File getAdminDirectory (java.io.File) java.io.File parentWC String adminDirectoryName private boolean hasMetadataInParentWc (org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb wcdb java.io.File nestedWC java.io.File nestedWCParent org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb$DirParsedInfo parsedInfo org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbDir wcDbDir org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot wcdbRoot private java.lang.Void copy (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.util.Collection, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$SvnCopyPair copyPair String baseName org.tmatesoft.svn.core.wc2.SvnCopySource copySource java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$SvnCopyPair copyPair org.tmatesoft.svn.core.wc2.SvnCopySource source org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File src java.io.File dst org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$SvnCopyPair pair java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.Structure externalInfo org.tmatesoft.svn.core.SVNException e java.io.File src org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$SvnCopyPair pair java.util.Iterator i$ java.io.File dstPath org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$SvnCopyPair copyPair java.util.Iterator i$ java.io.File dstAncestor org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.util.Collection sources java.io.File target java.util.Collection copyPairs private void move (java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.io.File file java.util.Iterator i$ java.io.File file java.util.Iterator i$ java.io.File file java.util.Iterator i$ java.util.Collection lockPaths java.util.Collection lockedPaths java.io.File sourceParent org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$SvnCopyPair copyPair java.util.Iterator i$ java.util.Collection pairs private void verifyPaths (java.util.Collection, boolean, boolean) throws org.tmatesoft.svn.core.SVNException boolean caseOnlyRename org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc2.SvnScheduleForAddition add org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNFileType srcType org.tmatesoft.svn.core.internal.wc.SVNFileType dstType org.tmatesoft.svn.core.internal.wc.SVNFileType dstParentType org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$SvnCopyPair copyPair java.util.Iterator i$ java.util.Collection copyPairs boolean makeParents boolean move private boolean verifyPaths (org.tmatesoft.svn.core.internal.wc.SVNFileType, org.tmatesoft.svn.core.internal.wc.SVNFileType, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$SvnCopyPair, int, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File srcDir java.io.File dstDir org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNFileType srcType org.tmatesoft.svn.core.internal.wc.SVNFileType dstType org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$SvnCopyPair copyPair int copyPairsCount boolean move private void verifyPathsExistenceForVirtualCopy (java.io.File, java.io.File, org.tmatesoft.svn.core.internal.wc.SVNFileType, org.tmatesoft.svn.core.internal.wc.SVNFileType, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$SvnCopyPair, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File source java.io.File dst org.tmatesoft.svn.core.internal.wc.SVNFileType srcType org.tmatesoft.svn.core.internal.wc.SVNFileType dstType org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToWcCopy$SvnCopyPair copyPair boolean move String opName org.tmatesoft.svn.core.wc2.SvnStatus dstStatus org.tmatesoft.svn.core.wc2.SvnStatus sourceStatus private org.tmatesoft.svn.core.wc2.SvnStatus getStatus (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File interestingFile String interestingPath org.tmatesoft.svn.core.wc2.SvnStatus[] status2 org.tmatesoft.svn.core.wc2.SvnOperationFactory operationFactory org.tmatesoft.svn.core.wc2.SvnGetStatus status protected void move (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File source java.io.File dst boolean metadataOnly org.tmatesoft.svn.core.internal.wc17.db.Structure nodeInfo protected void copy (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.SVNErrorMessage err2 org.tmatesoft.svn.core.internal.wc17.db.Structure additionInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo org.tmatesoft.svn.core.internal.wc17.db.Structure additionInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbRepositoryInfo reposInfo org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.SVNErrorMessage err2 org.tmatesoft.svn.core.internal.wc17.db.Structure dstInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus dstStatus org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err2 org.tmatesoft.svn.core.internal.wc.SVNFileType dstType boolean shouldCopyBaseData org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File source java.io.File dst boolean metadataOnly java.io.File dstDirectory org.tmatesoft.svn.core.internal.wc17.db.Structure srcInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus srcStatus org.tmatesoft.svn.core.internal.wc17.db.Structure dstDirInfo org.tmatesoft.svn.core.SVNURL dstReposRootUrl String dstReposUuid org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus dstDirStatus org.tmatesoft.svn.core.SVNURL srcReposRootUrl String srcReposUuid org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind srcKind org.tmatesoft.svn.core.wc2.SvnChecksum srcChecksum boolean srcConflicted java.io.File tmpDir private boolean shouldCopyBaseData (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, boolean, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File source boolean metadataOnly org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus srcStatus org.tmatesoft.svn.core.wc2.SvnStatus svnStatus private void copyBaseDataOfFile (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File source java.io.File dst org.tmatesoft.svn.core.SVNProperties pristineProps org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo baseInfo String changedAuthor org.tmatesoft.svn.core.internal.util.SVNDate changedDate long changedRev org.tmatesoft.svn.core.wc2.SvnChecksum checksum long revision org.tmatesoft.svn.core.SVNURL reposRootUrl String reposUuid String relativePath org.tmatesoft.svn.core.wc.SVNEvent event private void copyVersionedDirectory (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File, java.io.File, java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File tmpDst org.tmatesoft.svn.core.wc.SVNEvent event String name int i java.io.File[] children org.tmatesoft.svn.core.internal.wc17.db.Structure baseChildInfo org.tmatesoft.svn.core.wc2.SvnChecksum checksum boolean conflicted boolean skip org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File childSrcPath java.io.File childDstPath org.tmatesoft.svn.core.internal.wc17.db.Structure childInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus childStatus org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind childKind String childName java.util.Iterator i$ org.tmatesoft.svn.core.internal.util.SVNSkel moveItem java.io.File childSrcPath java.io.File childDstPath java.io.File tmp String childName java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File source java.io.File dst java.io.File dstOpRoot java.io.File tmpDir boolean metadataOnly boolean notify org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.wc.SVNFileType srcType java.util.Set diskChildren java.util.Set versionedChildren private void copyVersionedFile (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, java.io.File, java.io.File, java.io.File, org.tmatesoft.svn.core.wc2.SvnChecksum, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnChecksum md5 org.tmatesoft.svn.core.internal.wc17.SVNWCContext$PristineContentsInfo pristine java.io.File tempFile org.tmatesoft.svn.core.wc.SVNConflictDescription conflictDescription java.util.Iterator i$ java.io.File conflictWorking java.util.List conflicts org.tmatesoft.svn.core.internal.util.SVNSkel workItem2 boolean needsLock org.tmatesoft.svn.core.internal.util.SVNSkel workItem org.tmatesoft.svn.core.SVNNodeKind kind java.io.File tmpDst org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File source java.io.File dst java.io.File dstOpRoot java.io.File tmpDir org.tmatesoft.svn.core.wc2.SvnChecksum srcChecksum boolean metadataOnly boolean conflicted boolean notify org.tmatesoft.svn.core.internal.util.SVNSkel workItems java.io.File toCopy private java.io.File copyToTmpDir (java.io.File, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File source java.io.File tmpDir boolean recursive org.tmatesoft.svn.core.internal.wc.SVNFileType sourceType boolean special java.io.File dstPath protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeDriver$1.class
SvnNgMergeDriver.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$1 extends java.lang.Object implements java.util.Comparator { final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver) public int compare (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergeSource, org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergeSource) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergeSource o1 org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergeSource o2 org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergeSource source1 org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergeSource source2 long src1Rev1 long src2Rev1 public volatile synthetic int compare (java.lang.Object, java.lang.Object) Object x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgWcToReposCopy$SvnCopyPair.class
SvnNgWcToReposCopy.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$SvnCopyPair extends java.lang.Object { java.io.File source org.tmatesoft.svn.core.SVNURL dst private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgWcToReposCopy$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo27$1.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo27$1 extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement { final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo27 this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo27, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb x0 Enum x1 protected void defineFields () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgAdd$1.class
SvnNgAdd.java package org.tmatesoft.svn.core.internal.wc2.ng synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAdd$1 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbStatus static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeReintegrate$1.class
SvnNgMergeReintegrate.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic java.util.Map val$explicitMergeInfo final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeReintegrate, java.util.Map) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNProperties props String value public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$Bumpable.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng abstract org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable extends java.lang.Object { public abstract void bumpTo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/ng/SvnDiffEditor$1.class
SvnDiffEditor.java package org.tmatesoft.svn.core.internal.wc2.ng synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor$1 extends java.lang.Object { static final synthetic int[] $SwitchMap$org$tmatesoft$svn$core$internal$wc17$db$ISVNWCDb$SVNWCDbKind static void <clinit> () NoSuchFieldError ex NoSuchFieldError ex NoSuchFieldError ex }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgSetLock$1.class
SvnNgSetLock.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgSetLock$1 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLockHandler { final synthetic org.tmatesoft.svn.core.SVNURL val$rootURL final synthetic java.util.Map val$entriesMap final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgSetLock this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgSetLock, org.tmatesoft.svn.core.SVNURL, java.util.Map) public void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock dbLock String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNURL fullURL org.tmatesoft.svn.core.internal.wc2.ng.SvnNgLockUtil$LockInfo lockInfo public void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgradeSDb$bumpTo22.class
SvnNgUpgradeSDb.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$bumpTo22 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$Bumpable { private void <init> () public void bumpTo (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb java.io.File wcRootAbsPath org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement stmt synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1) org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgradeSDb$1 x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgDiff.class
SvnNgDiff.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgDiff extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { static final synthetic boolean $assertionsDisabled public void <init> () public org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getWcGeneration () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnDiff, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnDiff operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.wc.SVNRevision revision2 org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc2.SvnTarget target1 org.tmatesoft.svn.core.wc2.SvnTarget target2 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.wc.SVNRevision revision2 org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.internal.wc17.SVNWCContext context private void doDiff (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err boolean isRepos1 boolean isRepos2 org.tmatesoft.svn.core.wc2.SvnTarget target1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc2.SvnTarget target2 org.tmatesoft.svn.core.wc.SVNRevision revision2 boolean isLocalRev1 boolean isLocalRev2 boolean isRepos1 boolean isRepos2 private void doDiffReposRepos (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.Structure locations org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL newAnchor org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.wc2.SvnTarget target1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc2.SvnTarget target2 org.tmatesoft.svn.core.wc.SVNRevision revision2 org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.SVNURL url2 java.io.File basePath org.tmatesoft.svn.core.io.SVNRepository repository long revisionNumber2 org.tmatesoft.svn.core.SVNNodeKind kind2 long revisionNumber1 org.tmatesoft.svn.core.SVNNodeKind kind1 org.tmatesoft.svn.core.SVNURL anchor1 org.tmatesoft.svn.core.SVNURL anchor2 String targetString1 String targetString2 org.tmatesoft.svn.core.SVNURL repositoryRoot org.tmatesoft.svn.core.SVNNodeKind oldKind1 org.tmatesoft.svn.core.SVNNodeKind oldKind2 org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator generator org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback callback org.tmatesoft.svn.core.io.SVNRepository extraRepository boolean pureRemoteDiff org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRemoteDiffEditor remoteDiffEditor org.tmatesoft.svn.core.io.ISVNEditor editor private void doDiffReposWC (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File anchor org.tmatesoft.svn.core.SVNErrorMessage err java.io.File wcRoot org.tmatesoft.svn.core.wc2.SvnTarget target1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc2.SvnTarget target2 org.tmatesoft.svn.core.wc.SVNRevision revision2 boolean reverse org.tmatesoft.svn.core.SVNURL url1 String target java.io.File anchor org.tmatesoft.svn.core.SVNURL anchorUrl org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator generator org.tmatesoft.svn.core.io.SVNRepository repository2 boolean serverSupportsDepth long revisionNumber1 org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback callback org.tmatesoft.svn.core.internal.wc17.SVNReporter17 reporter boolean revisionIsBase org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffEditor svnDiffEditor org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor updateEditor org.tmatesoft.svn.core.io.ISVNEditor editor private void doDiffWCWC (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long revisionNumber1 org.tmatesoft.svn.core.SVNException e java.io.File anchor org.tmatesoft.svn.core.wc2.SvnTarget target1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.wc2.SvnTarget target2 org.tmatesoft.svn.core.wc.SVNRevision revision2 long revisionNumber1 java.io.File anchor org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator generator org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback callback private void doDiffWC (java.io.File, org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback) throws org.tmatesoft.svn.core.SVNException java.io.File anchorAbspath boolean getAll java.io.File localAbspath org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffCallback callback org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbKind kind java.io.File anchorAbspath boolean getAll boolean diffIgnored org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffStatusReceiver statusHandler org.tmatesoft.svn.core.internal.wc17.SVNStatusEditor17 statusEditor private void checkDiffTargetExists (org.tmatesoft.svn.core.SVNURL, long, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url long revision long otherRevision org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNNodeKind kind private boolean isPeggedDiff () private boolean isRevisionBase (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision revision2 private org.tmatesoft.svn.core.SVNDepth getDiffDepth (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth private org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffCallback createDiffCallback (org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator, boolean, long, long) org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator generator boolean reverse long revisionNumber1 long revisionNumber2 private org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator getDiffGenerator () org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator diffGenerator protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnDiffGenerator$1.class
SvnDiffGenerator.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffGenerator$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNReturnValueCallback { final synthetic String val$diffCommand final synthetic java.io.Writer val$writer final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffGenerator this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffGenerator, java.lang.String, java.io.Writer) public void handleReturnValue (int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int returnValue public void handleChar (char) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe char ch public boolean isHandleProgramOutput () }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgCleanup.class
SvnNgCleanup.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCleanup extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext private void cleanup (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File localAbsPath private int canBeCleaned (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File localAbsPath int wcFormat private void cleanupInternal (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File localAbsPath int wcFormat java.io.File cleanupWCRoot public static void repairTimestamps (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File childAbsPath String childPath java.util.Iterator i$ java.util.Set children org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbInfo info protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMerge.class
SvnNgMerge.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMerge extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnMerge, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnMerge operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected java.lang.Void run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context java.io.File lockPath private java.io.File getLockPath (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File firstTarget org.tmatesoft.svn.core.SVNNodeKind kind private void merge (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String targetUuid org.tmatesoft.svn.core.wc.SVNRevisionRange range java.util.Collection ranges org.tmatesoft.svn.core.wc.SVNRevisionRange range java.util.Collection ranges org.tmatesoft.svn.core.SVNURL ycURL org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver$MergeSource source org.tmatesoft.svn.core.internal.wc17.db.Structure pair long rev1 long rev2 String uuid1 String uuid2 boolean sameRepos org.tmatesoft.svn.core.SVNURL sourceReposRootURL org.tmatesoft.svn.core.io.SVNLocationSegment yc java.util.List sources boolean sourcesAncestral boolean sourcesRelated java.io.File target org.tmatesoft.svn.core.internal.wc.SVNFileType ft org.tmatesoft.svn.core.wc2.SvnTarget source1 org.tmatesoft.svn.core.wc2.SvnTarget source2 org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.SVNNodeKind targetKind org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeDriver mergeDriver org.tmatesoft.svn.core.SVNURL wcReposRootURL org.tmatesoft.svn.core.io.SVNRepository repos1 org.tmatesoft.svn.core.io.SVNRepository repos2 protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgMergeCallback$1.class
SvnNgMergeCallback.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNConflictHandler { final synthetic org.tmatesoft.svn.core.wc.ISVNConflictHandler[] val$conflictHandler final synthetic java.io.File val$path final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgMergeCallback, org.tmatesoft.svn.core.wc.ISVNConflictHandler[], java.io.File) public org.tmatesoft.svn.core.wc.SVNConflictResult handleConflict (org.tmatesoft.svn.core.wc.SVNConflictDescription) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNConflictDescription conflictDescription org.tmatesoft.svn.core.wc.SVNConflictResult result }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgUpgrade.class
SvnNgUpgrade.java package org.tmatesoft.svn.core.internal.wc2.ng public org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpgrade extends org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner { public void <init> () protected org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.SVNErrorMessage err protected volatile synthetic java.lang.Object run (org.tmatesoft.svn.core.internal.wc17.SVNWCContext) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext x0 }
org/tmatesoft/svn/core/internal/wc2/ng/SvnNgDiff$1.class
SvnNgDiff.java package org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.ng.SvnNgDiff$1 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { final synthetic long val$revisionNumber1 final synthetic org.tmatesoft.svn.core.internal.wc2.ng.SvnNgDiff this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.ng.SvnNgDiff, long) public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNReporter reporter }
org/tmatesoft/svn/core/internal/wc2/admin/
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryListLocksImpl.class
SvnRepositoryListLocksImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryListLocksImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryCatImpl.class
SvnRepositoryCatImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryCatImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected java.lang.Long run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNLookClient lc protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetRevisionPropertyImpl.class
SvnRepositoryGetRevisionPropertyImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetRevisionPropertyImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected org.tmatesoft.svn.core.SVNPropertyValue run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue propvalue org.tmatesoft.svn.core.wc.admin.SVNLookClient lc org.tmatesoft.svn.core.SVNPropertyValue propvalue protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetDateImpl.class
SvnRepositoryGetDateImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetDateImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected java.util.Date run () throws org.tmatesoft.svn.core.SVNException java.util.Date date org.tmatesoft.svn.core.wc.admin.SVNLookClient lc java.util.Date date protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryListTransactionsImpl.class
SvnRepositoryListTransactionsImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryListTransactionsImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetLockImpl.class
SvnRepositoryGetLockImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetLockImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected org.tmatesoft.svn.core.SVNLock run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNLookClient lc protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositorySynchronizeImpl.class
SvnRepositorySynchronizeImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositorySynchronizeImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetChangedDirectoriesImpl.class
SvnRepositoryGetChangedDirectoriesImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetChangedDirectoriesImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler { public void <init> () protected java.lang.String run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNLookClient lc public void handleDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetLogImpl.class
SvnRepositoryGetLogImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetLogImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected java.lang.String run () throws org.tmatesoft.svn.core.SVNException String log org.tmatesoft.svn.core.wc.admin.SVNLookClient lc String log protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetPropertiesImpl.class
SvnRepositoryGetPropertiesImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetPropertiesImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected org.tmatesoft.svn.core.SVNProperties run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.wc.admin.SVNLookClient lc org.tmatesoft.svn.core.SVNProperties props protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryRecoverImpl.class
SvnRepositoryRecoverImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryRecoverImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetPropertyImpl.class
SvnRepositoryGetPropertyImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetPropertyImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected org.tmatesoft.svn.core.SVNPropertyValue run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue propvalue org.tmatesoft.svn.core.wc.admin.SVNLookClient lc org.tmatesoft.svn.core.SVNPropertyValue propvalue protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryRemoveLocksImpl.class
SvnRepositoryRemoveLocksImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryRemoveLocksImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryRemoveTransactionsImpl.class
SvnRepositoryRemoveTransactionsImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryRemoveTransactionsImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetUUIDImpl.class
SvnRepositoryGetUUIDImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetUUIDImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected java.lang.String run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNLookClient lc protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryLoadImpl.class
SvnRepositoryLoadImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryLoadImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetHistoryImpl.class
SvnRepositoryGetHistoryImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetHistoryImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNHistoryHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminPath run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNLookClient lc public void handlePath (org.tmatesoft.svn.core.wc.admin.SVNAdminPath) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminPath path protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryDumpImpl.class
SvnRepositoryDumpImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryDumpImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryVerifyImpl.class
SvnRepositoryVerifyImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryVerifyImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetAuthorImpl.class
SvnRepositoryGetAuthorImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetAuthorImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected java.lang.String run () throws org.tmatesoft.svn.core.SVNException String author org.tmatesoft.svn.core.wc.admin.SVNLookClient lc String author protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryPackImpl.class
SvnRepositoryPackImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryPackImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryHotCopyImpl.class
SvnRepositoryHotCopyImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryHotCopyImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected java.lang.Long run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryUpgradeImpl.class
SvnRepositoryUpgradeImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryUpgradeImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetYoungestImpl.class
SvnRepositoryGetYoungestImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetYoungestImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected java.lang.Long run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNLookClient lc protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryFilterImpl.class
SvnRepositoryFilterImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryFilterImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositorySetUUIDImpl.class
SvnRepositorySetUUIDImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositorySetUUIDImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected java.lang.Long run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetChangedImpl.class
SvnRepositoryGetChangedImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetChangedImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNChangeEntry run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNLookClient lc public void handleEntry (org.tmatesoft.svn.core.wc.admin.SVNChangeEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNChangeEntry entry protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryCreateImpl.class
SvnRepositoryCreateImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryCreateImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected org.tmatesoft.svn.core.SVNURL run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryInitializeImpl.class
SvnRepositoryInitializeImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryInitializeImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositorySyncInfoImpl.class
SvnRepositorySyncInfoImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositorySyncInfoImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected java.lang.Long run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryOperationRunner.class
SvnRepositoryOperationRunner.java package org.tmatesoft.svn.core.internal.wc2.admin public abstract org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration public org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getWcGeneration () }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetTreeImpl.class
SvnRepositoryGetTreeImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetTreeImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNTreeHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminPath run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNLookClient lc public void handlePath (org.tmatesoft.svn.core.wc.admin.SVNAdminPath) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminPath path protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetDiffImpl.class
SvnRepositoryGetDiffImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetDiffImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected java.lang.Long run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNLookClient lc protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetInfoImpl.class
SvnRepositoryGetInfoImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetInfoImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected org.tmatesoft.svn.core.SVNLogEntry run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry entry org.tmatesoft.svn.core.wc.admin.SVNLookClient lc org.tmatesoft.svn.core.SVNLogEntry entry protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryGetRevisionPropertiesImpl.class
SvnRepositoryGetRevisionPropertiesImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryGetRevisionPropertiesImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner { public void <init> () protected org.tmatesoft.svn.core.SVNProperties run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.wc.admin.SVNLookClient lc org.tmatesoft.svn.core.SVNProperties props protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/admin/SvnRepositoryCopyRevisionPropertiesImpl.class
SvnRepositoryCopyRevisionPropertiesImpl.java package org.tmatesoft.svn.core.internal.wc2.admin public org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryCopyRevisionPropertiesImpl extends org.tmatesoft.svn.core.internal.wc2.admin.SvnRepositoryOperationRunner implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () protected org.tmatesoft.svn.core.wc.admin.SVNAdminEvent run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminClient ac public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/
org/tmatesoft/svn/core/internal/wc2/old/SvnOldMarkReplaced.class
SvnOldMarkReplaced.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldMarkReplaced extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 client protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldUpgradeEntries$DbNode.class
SvnOldUpgradeEntries.java package org.tmatesoft.svn.core.internal.wc2.old org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbNode extends java.lang.Object { long wcId String localRelPath long opDepth long reposId String reposRelPath String parentRelPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus presence long revision org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc2.SvnChecksum checksum long translatedSize long changedRev org.tmatesoft.svn.core.internal.util.SVNDate changedDate String changedAuthor org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.util.SVNDate lastModTime org.tmatesoft.svn.core.SVNProperties properties boolean isFileExternal private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$1) org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$1 x0 }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldCommit.class
SvnOldCommit.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldCommit extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner implements org.tmatesoft.svn.core.internal.wc2.ISvnCommitRunner { public void <init> () public org.tmatesoft.svn.core.wc2.SvnCommitPacket collectCommitItems (org.tmatesoft.svn.core.wc2.SvnCommit) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget tgt java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnCommit operation org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16 client java.io.File[] paths int i String[] changelists org.tmatesoft.svn.core.wc.SVNCommitPacket[] packets protected org.tmatesoft.svn.core.SVNCommitInfo run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnCommitPacket packet org.tmatesoft.svn.core.wc.SVNCommitPacket oldPacket org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16 client org.tmatesoft.svn.core.SVNCommitInfo info public void disposeCommitPacket (java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e int i org.tmatesoft.svn.core.wc.SVNCommitPacket[] packets Object lockingContext protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldUpdate.class
SvnOldUpdate.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpdate extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected long[] run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget tgt java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16 client java.io.File[] paths int i protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldResolve.class
SvnOldResolve.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldResolve extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 client protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldUpgrade$RepositoryInfo.class
SvnOldUpgrade.java package org.tmatesoft.svn.core.internal.wc2.old org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$RepositoryInfo extends java.lang.Object { public org.tmatesoft.svn.core.SVNURL repositoryRootUrl public String UUID final synthetic org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade this$0 private void <init> (org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade) synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade, org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$1) org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade x0 org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$1 x1 }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldSwitch.class
SvnOldSwitch.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldSwitch extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Long run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16 client protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldUpgradeEntries.class
SvnOldUpgradeEntries.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries extends java.lang.Object { static final synthetic boolean $assertionsDisabled public void <init> () public static org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton writeUpgradedEntries (org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData, java.io.File, java.util.Map, org.tmatesoft.svn.core.internal.util.SVNHashMap) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$TextBaseInfo info java.io.File childAbsPath java.io.File childRelPath java.util.Iterator names org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton parentNode org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData upgradeData java.io.File dirAbsPath java.util.Map entries org.tmatesoft.svn.core.internal.util.SVNHashMap textBases org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton dirNode org.tmatesoft.svn.core.internal.wc.admin.SVNEntry thisDir java.io.File oldRootAbsPath java.io.File dirRelPath private static org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton writeEntry (boolean, org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$TextBaseInfo, java.io.File, java.io.File, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, boolean) throws org.tmatesoft.svn.core.SVNException String scheduleOperation String scheduleOperation String scheduleOperation String scheduleOperation org.tmatesoft.svn.core.SVNErrorMessage errorMessage String relPath org.tmatesoft.svn.core.SVNErrorMessage err java.io.File entryPath org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict String key java.util.Iterator keys java.util.Map tcs String treeConflictData org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnChecksum entryMd5Checksum org.tmatesoft.svn.core.wc2.SvnChecksum foundMd5Checksum String relPath String relPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbLock lock org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbNode work boolean isCalculateEntryNode org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton parentNode org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData upgradeData org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$TextBaseInfo textBaseInfo java.io.File localRelPath java.io.File tmpEntryAbsPath java.io.File rootAbsPath org.tmatesoft.svn.core.internal.wc.admin.SVNEntry thisDir boolean isCreateLocks org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbNode baseNode org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbNode workingNode org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbNode belowWorkingNode org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbActualNode actualNode String parentRelPath java.util.Map treeConflicts org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton entryNode private static void insertNode (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbNode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbNode node org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt private static void insertActualNode (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbActualNode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbActualNode actualNode org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt private static void writeActualOnlyEntries (java.util.Map, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbActualNode actualNode java.util.Iterator items java.util.Map treeConflicts org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb long wcId String dirRelPath static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldGetStatusSummary$1.class
SvnOldGetStatusSummary.java package org.tmatesoft.svn.core.internal.wc2.old org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetStatusSummary$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNStatusHandler { final synthetic long[] val$minRevision final synthetic long[] val$maxRevision final synthetic boolean[] val$switched final synthetic String[] val$wcURL final synthetic org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetStatusSummary this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetStatusSummary, long[], long[], boolean[], java.lang.String[]) public void handleStatus (org.tmatesoft.svn.core.wc.SVNStatus) org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNStatus status }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldCopy.class
SvnOldCopy.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldCopy extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { static final synthetic boolean $assertionsDisabled public void <init> () protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException private java.lang.Void disjointCopy () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc16.SVNCopyClient16 client java.util.Collection targets private java.lang.Void virtualCopy () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNCopySource source org.tmatesoft.svn.core.wc.SVNCopySource[] arr$ int len$ int i$ org.tmatesoft.svn.core.internal.wc16.SVNMoveClient16 client org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.SVNCopySource[] sources private java.lang.Void copy () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNCopyClient16 client org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.SVNCopySource[] sources private org.tmatesoft.svn.core.wc.SVNCopySource[] getCopySources () org.tmatesoft.svn.core.wc2.SvnCopySource newSource java.util.Iterator i$ org.tmatesoft.svn.core.wc.SVNCopySource[] sources int i private void throwCannotPerformOnUrl (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target String kind String operation org.tmatesoft.svn.core.SVNErrorMessage err protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldUpgrade$TextBaseFileInfo.class
SvnOldUpgrade.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$TextBaseFileInfo extends java.lang.Object { public org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum public org.tmatesoft.svn.core.wc2.SvnChecksum md5Checksum final synthetic org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade this$0 public void <init> (org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade) }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldUpgrade$1.class
SvnOldUpgrade.java package org.tmatesoft.svn.core.internal.wc2.old org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic java.util.Map val$externals final synthetic org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade, java.util.Map) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNProperties object String value public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldSetLock.class
SvnOldSetLock.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldSetLock extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected org.tmatesoft.svn.core.SVNLock run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL[] urls org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ java.io.File[] paths org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 client int i protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldRunner.class
SvnOldRunner.java package org.tmatesoft.svn.core.internal.wc2.old public abstract org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner extends org.tmatesoft.svn.core.internal.wc2.SvnLocalOperationRunner { public void <init> () public org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getWcGeneration () }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldUpgradeEntries$1.class
SvnOldUpgradeEntries.java package org.tmatesoft.svn.core.internal.wc2.old synthetic org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldCat.class
SvnOldCat.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldCat extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 client protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldRepositoryAccess.class
SvnOldRepositoryAccess.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldRepositoryAccess extends org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess { public void <init> (org.tmatesoft.svn.core.wc2.ISvnOperationOptionsProvider) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.ISvnOperationOptionsProvider operationOptionsProvider public org.tmatesoft.svn.core.wc2.SvnCopySource createRemoteCopySource (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.wc2.SvnCopySource) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.wc2.SvnCopySource localCopySource org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File path public org.tmatesoft.svn.core.internal.wc17.db.Structure createRepositoryFor (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.Structure revs org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File baseDirectory org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision[] resolvedRevisions org.tmatesoft.svn.core.wc.SVNRevision pegRev org.tmatesoft.svn.core.wc.SVNRevision startRev org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.internal.wc17.db.Structure locationsInfo long rev org.tmatesoft.svn.core.internal.wc17.db.Structure result public org.tmatesoft.svn.core.internal.wc17.db.Structure getRevisionNumber (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.internal.wc17.db.Structure) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long latestRevision org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.wc2.SvnTarget path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.internal.wc17.db.Structure youngestRevision org.tmatesoft.svn.core.internal.wc17.db.Structure result protected org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess createWCAccess () org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access public org.tmatesoft.svn.core.internal.wc17.db.Structure getURLFromPath (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.wc2.SvnTarget path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.internal.wc17.db.Structure urlInfo org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess protected org.tmatesoft.svn.core.SVNURL getURL (org.tmatesoft.svn.core.wc2.SvnTarget) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target protected org.tmatesoft.svn.core.SVNURL deriveLocation (java.io.File, org.tmatesoft.svn.core.SVNURL, long[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc17.db.Structure revPair boolean closeRepository java.io.File path org.tmatesoft.svn.core.SVNURL url long[] pegRevisionNumber org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access protected org.tmatesoft.svn.core.SVNURL getEntryLocation (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, long[], org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry long[] revNum org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL url }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldMerge.class
SvnOldMerge.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldMerge extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnRevisionRange range java.util.Iterator i$ java.util.Collection oldRanges org.tmatesoft.svn.core.wc2.SvnTarget firstSource org.tmatesoft.svn.core.wc2.SvnTarget secondSource org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldLogMergeInfo.class
SvnOldLogMergeInfo.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldLogMergeInfo extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner implements org.tmatesoft.svn.core.ISVNLogEntryHandler { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnLogMergeInfo, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnLogMergeInfo operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.SVNLogEntry run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnTarget mergeSource boolean eligible public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldExport.class
SvnOldExport.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldExport extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Long run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16 client protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldGetProperties.class
SvnOldGetProperties.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetProperties extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner implements org.tmatesoft.svn.core.wc.ISVNPropertyHandler { private java.io.File currentFile private org.tmatesoft.svn.core.SVNProperties currentProperties public void <init> () public void reset (org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnGetProperties, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnGetProperties operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.SVNProperties run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 client public void handleProperty (java.io.File, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNPropertyData property public void handleProperty (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNPropertyData property public void handleProperty (long, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException long revision org.tmatesoft.svn.core.wc.SVNPropertyData property public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldGetStatusSummary.class
SvnOldGetStatusSummary.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetStatusSummary extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected org.tmatesoft.svn.core.wc2.SvnStatusSummary run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16 statusClient long[] maxRevision long[] minRevision boolean[] switched String[] wcURL org.tmatesoft.svn.core.wc2.SvnStatusSummary summary StringBuffer id protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException static synthetic org.tmatesoft.svn.core.wc2.SvnOperation access$000 (org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetStatusSummary) org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetStatusSummary x0 static synthetic java.io.File access$100 (org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetStatusSummary) org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetStatusSummary x0 }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldUpgradeEntries$DbActualNode.class
SvnOldUpgradeEntries.java package org.tmatesoft.svn.core.internal.wc2.old org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbActualNode extends java.lang.Object { long wcId String localRelPath String parentRelPath org.tmatesoft.svn.core.SVNProperties properties String conflictOld String conflictNew String conflictWorking String propReject String changelist String treeConflictData private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$1) org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$1 x0 }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldRelocate.class
SvnOldRelocate.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldRelocate extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected org.tmatesoft.svn.core.SVNURL run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16 client protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldRemove.class
SvnOldRemove.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldRemove extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 client protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldGetMergeInfo.class
SvnOldGetMergeInfo.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetMergeInfo extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnGetMergeInfo, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnGetMergeInfo operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected java.util.Map run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 dc public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldRevert.class
SvnOldRevert.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldRevert extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 client java.io.File[] paths int i protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldCanonicalizeUrls.class
SvnOldCanonicalizeUrls.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldCanonicalizeUrls extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16 client protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldImport.class
SvnOldImport.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldImport extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () public org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration getWcGeneration () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnImport, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnImport operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.SVNCommitInfo run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16 client org.tmatesoft.svn.core.SVNCommitInfo info public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldSuggestMergeSources.class
SvnOldSuggestMergeSources.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldSuggestMergeSources extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnSuggestMergeSources, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnSuggestMergeSources operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected java.util.Collection run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 dc public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldUpgrade.class
SvnOldUpgrade.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { private static final String SVN_WC__BASE_EXT private static final String SVN_WC__REVERT_EXT private static final String WCPROPS_SUBDIR_FOR_FILES private static final String WCPROPS_FNAME_FOR_DIR private static final String WCPROPS_ALL_DATA private static final String PROPS_SUBDIR private static final String PROP_BASE_SUBDIR private static final String PROP_BASE_FOR_DIR private static final String PROP_REVERT_FOR_DIR private static final String PROP_WORKING_FOR_DIR private static final String TEXT_BASE_SUBDIR private static final String ADM_README private static final String ADM_EMPTY_FILE private static final String ADM_LOG private static final String ADM_LOCK private static final String PRISTINE_STORAGE_RELPATH private static final String SDB_FILE private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access public void <init> () public static org.tmatesoft.svn.core.SVNURL getEntryRepositoryRootURL (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public static org.tmatesoft.svn.core.SVNURL getEntryURL (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public static org.tmatesoft.svn.core.SVNURL getEntryCopyFromURL (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry private static org.tmatesoft.svn.core.SVNURL getCanonicalURL (org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL original org.tmatesoft.svn.core.SVNURL canonical private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess getWCAccess () protected org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnUpgrade upgradeExternal org.tmatesoft.svn.core.SVNException e java.io.File externalPath int i org.tmatesoft.svn.core.internal.wc.SVNExternal[] externalDefs org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$RepositoryInfo reposInfo java.util.Map externals org.tmatesoft.svn.core.wc2.SvnGetProperties getProperties private void checkIsOldWCRoot (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException ex org.tmatesoft.svn.core.SVNException e java.io.File childAbsPath java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File parentAbsPath org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map entries org.tmatesoft.svn.core.SVNErrorMessage err private void fetchReposInfo (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$RepositoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$RepositoryInfo lastRepositoryInfo org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess repAccess org.tmatesoft.svn.core.io.SVNRepository repository private void ensureReposInfo (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.io.File, org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$RepositoryInfo, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL reposRootUrl java.util.Iterator items org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$RepositoryInfo lastRepositoryInfo java.util.Map reposCache private void wcUpgrade (java.io.File, org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$RepositoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException ex java.io.File pristineFrom java.io.File pristineTo org.tmatesoft.svn.core.internal.util.SVNSkel workItems org.tmatesoft.svn.core.internal.util.SVNSkel workItem java.io.File dbFrom java.io.File dbTo org.tmatesoft.svn.core.wc.SVNEvent event java.io.File localAbsPath org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$RepositoryInfo reposInfo org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData upgradeData org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db org.tmatesoft.svn.core.internal.wc17.SVNWCContext wcContext org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNEntry thisDir java.util.Map reposCache java.io.File rootAdmAbsPath private void upgradeWorkingCopy (org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData, java.util.Map, org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$RepositoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNException ex org.tmatesoft.svn.core.wc.SVNEvent event java.io.File childAbsPath java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton parentDirBaton org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File dirAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData data java.util.Map reposCache org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$RepositoryInfo reposInfo org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton dirBaton int oldFormat java.util.ArrayList children private org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton upgradeToWcng (org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb, java.io.File, int, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData, java.util.Map, org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$RepositoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException ex java.io.File file java.util.Iterator files org.tmatesoft.svn.core.internal.util.SVNHashMap cachedProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties verProps java.util.Set children org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc.admin.SVNEntry thisDir String dirAbsPathString String oldWcRootAbsPath java.io.File dirRelPath org.tmatesoft.svn.core.internal.util.SVNHashMap textBases org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton parentDirBaton org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb db java.io.File dirAbsPath int oldFormat org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData data java.util.Map reposCache org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$RepositoryInfo reposInfo org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton dirBaton java.io.File logFilePath org.tmatesoft.svn.core.SVNNodeKind logFileKind org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.util.Map entries private org.tmatesoft.svn.core.internal.util.SVNHashMap migrateTextBases (java.io.File, java.io.File, org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot) throws org.tmatesoft.svn.core.SVNException java.io.File tempPath java.io.InputStream readStream org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream readChecksummedIS org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt boolean isRevertBase boolean isRevertBase java.io.File versionedFile String versionedFileName org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$TextBaseInfo info org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$TextBaseFileInfo fileInfo org.tmatesoft.svn.core.wc2.SvnChecksum md5Checksum org.tmatesoft.svn.core.wc2.SvnChecksum sha1Checksum java.io.File pristinePath java.io.File textBasePath java.io.File[] arr$ int len$ int i$ java.io.File dirAbsPath java.io.File newWcRootAbsPath org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot root org.tmatesoft.svn.core.internal.util.SVNHashMap textBasesInfo java.io.File textBaseDir java.io.File[] files private java.io.File removeSuffix (java.io.File, java.lang.String) java.io.File file String suffix String fileName private void createPhysicalLock (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File absPath java.io.File lockAbsPath public static void wipePostUpgrade (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException ex java.io.File childAbsPath java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc17.SVNWCContext ctx java.io.File dirAbsPath boolean isWholeAdmin org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.util.ArrayList subDirs boolean isDoDeleteDir public static void wipeObsoleteFiles (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File dirAbsPath private static java.io.File buildLockfilePath (java.io.File) java.io.File dirAbsPath private static java.util.Map readEntries (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.io.File localAbsPath java.util.Map entries public static boolean getVersionedSubdirs (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, java.util.ArrayList, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNNodeKind kind String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File childAbsPath java.util.Iterator names org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.io.File localAbsPath java.util.ArrayList children boolean isCalculateDoDeleteDir boolean isSkipMissing boolean isDoDeleteDir java.util.Map entries org.tmatesoft.svn.core.internal.wc.admin.SVNEntry thisDir private java.util.Set getVersionedFiles (java.io.File, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, long) throws org.tmatesoft.svn.core.SVNException java.io.File localRelPath java.io.File parentRelPath org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb long wcId java.util.Set children org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt private void migrateProps (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData, int, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException java.io.File file java.util.Iterator files java.io.File dirAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData data int originalFormat org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area String dirAbsPathString String oldWcRootAbsPath java.io.File dirRelPath java.util.Set children private void migrateNodeProps (java.io.File, org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData, java.lang.String, int, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException java.io.File dirAbsPath org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbUpgradeData data String name int originalFormat org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area String dirAbsPathString String oldWcRootAbsPath java.io.File dirRelPath java.io.File basePropsFile java.io.File revertPropsFile java.io.File propsFile org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties revertProps org.tmatesoft.svn.core.SVNProperties props protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldUpgradeEntries$WriteBaton.class
SvnOldUpgradeEntries.java package org.tmatesoft.svn.core.internal.wc2.old org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$WriteBaton extends java.lang.Object { org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbNode base org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbNode work org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgradeEntries$DbNode belowWork java.util.Map treeConflicts void <init> () }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldRemoteCopy.class
SvnOldRemoteCopy.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldRemoteCopy extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnRemoteCopy, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration sourceFormat org.tmatesoft.svn.core.wc2.SvnCopySource source java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnRemoteCopy operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.SVNCommitInfo run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnCopySource newSource java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc16.SVNCopyClient16 client org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.SVNCopySource[] sources int i org.tmatesoft.svn.core.SVNCommitInfo info public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldUnlock.class
SvnOldUnlock.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldUnlock extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected org.tmatesoft.svn.core.SVNLock run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL[] urls org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ java.io.File[] paths org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 client int i protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldCheckout.class
SvnOldCheckout.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldCheckout extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Long run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16 client protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldAnnotate.class
SvnOldAnnotate.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldAnnotate extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner implements org.tmatesoft.svn.core.wc.ISVNAnnotateHandler { public void <init> () protected org.tmatesoft.svn.core.wc2.SvnAnnotateItem run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc16.SVNLogClient16 client public void handleLine (java.util.Date, long, java.lang.String, java.lang.String, java.util.Date, long, java.lang.String, java.lang.String, int) throws org.tmatesoft.svn.core.SVNException java.util.Date date long revision String author String line java.util.Date mergedDate long mergedRevision String mergedAuthor String mergedPath int lineNumber public boolean handleRevision (java.util.Date, long, java.lang.String, java.io.File) throws org.tmatesoft.svn.core.SVNException java.util.Date date long revision String author java.io.File contents org.tmatesoft.svn.core.wc2.SvnAnnotateItem item public void handleLine (java.util.Date, long, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.util.Date date long revision String author String line public void handleEOF () org.tmatesoft.svn.core.SVNException e protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldAdd.class
SvnOldAdd.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldAdd extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 client java.io.File[] paths int i protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldDiff.class
SvnOldDiff.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldDiff extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnDiff, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnDiff operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient boolean peggedDiff private org.tmatesoft.svn.core.wc.ISVNDiffGenerator getDiffGenerator () org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator defaultSVNDiffGenerator org.tmatesoft.svn.core.internal.wc2.ng.ISvnDiffGenerator diffGenerator public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldGetChangelistPaths.class
SvnOldGetChangelistPaths.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetChangelistPaths extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner implements org.tmatesoft.svn.core.wc.ISVNChangelistHandler { public void <init> () protected java.lang.String run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc16.SVNChangelistClient16 client java.util.Collection targets public void handle (java.io.File, java.lang.String) org.tmatesoft.svn.core.SVNException e java.io.File path String changelistName protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldGetStatus.class
SvnOldGetStatus.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetStatus extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner implements org.tmatesoft.svn.core.wc.ISVNStatusHandler { public void <init> () protected org.tmatesoft.svn.core.wc2.SvnStatus run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16 client long revision public void handleStatus (org.tmatesoft.svn.core.wc.SVNStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatus status protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldGetInfo.class
SvnOldGetInfo.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldGetInfo extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner implements org.tmatesoft.svn.core.wc.ISVNInfoHandler { public void <init> () protected org.tmatesoft.svn.core.wc2.SvnInfo run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 client public void handleInfo (org.tmatesoft.svn.core.wc.SVNInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNInfo info org.tmatesoft.svn.core.wc2.SvnInfo info2 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldCleanup.class
SvnOldCleanup.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldCleanup extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 client protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldUpgrade$TextBaseInfo.class
SvnOldUpgrade.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$TextBaseInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$TextBaseFileInfo normalBase public org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade$TextBaseFileInfo revertBase final synthetic org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade this$0 public void <init> (org.tmatesoft.svn.core.internal.wc2.old.SvnOldUpgrade) }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldSetProperty.class
SvnOldSetProperty.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldSetProperty extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner implements org.tmatesoft.svn.core.wc.ISVNPropertyHandler { public void <init> () protected org.tmatesoft.svn.core.wc.SVNPropertyData run () throws org.tmatesoft.svn.core.SVNException String propName org.tmatesoft.svn.core.SVNPropertyValue propertyValue org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 client java.io.File path public void handleProperty (java.io.File, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNPropertyData property public void handleProperty (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNPropertyData property public void handleProperty (long, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException long revision org.tmatesoft.svn.core.wc.SVNPropertyData property public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnSetProperty, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnSetProperty operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/old/SvnOldSetChangelist.class
SvnOldSetChangelist.java package org.tmatesoft.svn.core.internal.wc2.old public org.tmatesoft.svn.core.internal.wc2.old.SvnOldSetChangelist extends org.tmatesoft.svn.core.internal.wc2.old.SvnOldRunner { public void <init> () protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc16.SVNChangelistClient16 client java.io.File[] paths int i java.util.Collection applicableChangelists protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteCat.class
SvnRemoteCat.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteCat extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner { public void <init> () protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ioew java.io.IOException e String cmtRev String cmtDate String author java.util.Map keywordsMap java.io.OutputStream translatingStream org.tmatesoft.svn.core.SVNProperties properties String mimeType String charset String keywords String eol java.io.IOException e org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repos long revNumber org.tmatesoft.svn.core.SVNNodeKind nodeKind protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteLog.class
SvnRemoteLog.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteLog extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner implements org.tmatesoft.svn.core.ISVNLogEntryHandler { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnCat, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnCat operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.SVNLogEntry run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end org.tmatesoft.svn.core.wc2.SvnRevisionRange revRange java.util.Iterator revRangesIter java.io.File path org.tmatesoft.svn.core.internal.wc17.db.Structure locationsInfo org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err String rootWCPath org.tmatesoft.svn.core.SVNURL[] targetUrls java.util.Collection wcPaths int i org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repository java.util.Collection targets org.tmatesoft.svn.core.SVNURL baseURL org.tmatesoft.svn.core.wc2.SvnRevisionRange revRange org.tmatesoft.svn.core.internal.wc17.db.Structure pair long startRev long endRev java.util.Iterator revRangesIter String[] targetPaths org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc2.SvnTarget baseTarget org.tmatesoft.svn.core.wc.SVNRevision sessionRevision java.util.List editedRevisionRanges org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repository public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteAnnotate.class
SvnRemoteAnnotate.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteAnnotate extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner implements org.tmatesoft.svn.core.wc.ISVNAnnotateHandler { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnAnnotate, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnAnnotate operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.wc2.SvnAnnotateItem run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path java.io.File tmpFile java.util.Map keywordsMap org.tmatesoft.svn.core.io.SVNFileRevision localRevision org.tmatesoft.svn.core.SVNProperties properties String keywords java.io.InputStream source java.io.OutputStream dst java.io.File target org.tmatesoft.svn.core.wc2.SvnStatus status org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.internal.wc17.db.Structure pair long startRev long endRev String path java.io.File tmpFile org.tmatesoft.svn.core.SVNAnnotationGenerator generator public void handleLine (java.util.Date, long, java.lang.String, java.lang.String, java.util.Date, long, java.lang.String, java.lang.String, int) throws org.tmatesoft.svn.core.SVNException java.util.Date date long revision String author String line java.util.Date mergedDate long mergedRevision String mergedAuthor String mergedPath int lineNumber public boolean handleRevision (java.util.Date, long, java.lang.String, java.io.File) throws org.tmatesoft.svn.core.SVNException java.util.Date date long revision String author java.io.File contents org.tmatesoft.svn.core.wc2.SvnAnnotateItem item public void handleLine (java.util.Date, long, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.util.Date date long revision String author String line public void handleEOF () org.tmatesoft.svn.core.SVNException e public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteRemoteMkDir.class
SvnRemoteRemoteMkDir.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteRemoteMkDir extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner { public void <init> () protected org.tmatesoft.svn.core.SVNCommitInfo run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget firstTarget org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL repositoryRoot java.util.Collection targets org.tmatesoft.svn.core.SVNCommitInfo info protected org.tmatesoft.svn.core.SVNCommitInfo doRun () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL url java.util.List allURLs org.tmatesoft.svn.core.SVNErrorMessage err String path java.util.Iterator commitPaths java.util.List convertedPaths String tail String path org.tmatesoft.svn.core.wc2.SvnCommitItem item org.tmatesoft.svn.core.wc2.SvnCommitItem[] commitItems String commitMessage String path java.util.Iterator commitPaths org.tmatesoft.svn.core.SVNException inner org.tmatesoft.svn.core.SVNException e int i org.tmatesoft.svn.core.SVNURL[] urls java.util.Collection paths org.tmatesoft.svn.core.SVNURL rootURL java.util.List sortedPaths String commitMessage java.util.List decodedPaths org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler creater org.tmatesoft.svn.core.SVNCommitInfo info private void addURLParents (java.util.List, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException java.util.List targets org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL parentURL org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNNodeKind kind protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteUnlock.class
SvnRemoteUnlock.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteUnlock extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner implements org.tmatesoft.svn.core.io.ISVNLockHandler { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnUnlock, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnUnlock operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.SVNLock run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ String path java.util.Iterator p int i org.tmatesoft.svn.core.SVNURL[] urls java.util.Collection paths org.tmatesoft.svn.core.SVNURL topURL java.util.Map pathsToTokens org.tmatesoft.svn.core.io.SVNRepository repository private java.util.Map fetchLockTokens (org.tmatesoft.svn.core.io.SVNRepository, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.SVNLock lock java.util.Iterator paths org.tmatesoft.svn.core.io.SVNRepository repository java.util.Map pathsTokensMap java.util.Map tokens public void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteGetInfo.class
SvnRemoteGetInfo.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteGetInfo extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnGetInfo, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnGetInfo operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration org.tmatesoft.svn.core.wc.SVNRevision revision protected org.tmatesoft.svn.core.wc2.SvnInfo run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNLock lock int i org.tmatesoft.svn.core.SVNLock[] locks java.util.Map locksMap org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNDirEntry dirEntry java.util.Iterator i$ org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNNodeKind urlKind org.tmatesoft.svn.core.io.SVNRepository parentRepository java.util.Collection dirEntries org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL headURL org.tmatesoft.svn.core.internal.wc17.db.Structure locations org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException svne int i org.tmatesoft.svn.core.SVNLock[] locks java.util.Map locksMap org.tmatesoft.svn.core.wc2.SvnTarget infoTarget org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL url long revNum org.tmatesoft.svn.core.SVNURL repositoryRootUrl String repositoryUUID org.tmatesoft.svn.core.SVNURL parentURL String baseName org.tmatesoft.svn.core.SVNDirEntry rootEntry org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.wc2.SvnInfo info private void pushDirInfo (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNURL, java.util.Map, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnInfo info org.tmatesoft.svn.core.SVNURL childURL org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNDirEntry child java.util.Iterator i$ org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.wc.SVNRevision rev String path org.tmatesoft.svn.core.SVNURL root String uuid org.tmatesoft.svn.core.SVNURL url java.util.Map locks org.tmatesoft.svn.core.SVNDepth depth java.util.Collection children private org.tmatesoft.svn.core.wc2.SvnInfo creatSvnInfoForEntry (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNDirEntry, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNLock) org.tmatesoft.svn.core.SVNURL root String uuid org.tmatesoft.svn.core.SVNDirEntry entry org.tmatesoft.svn.core.SVNURL entryURL long revision org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.wc2.SvnInfo info public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteRemoteMkDir$1.class
SvnRemoteRemoteMkDir.java package org.tmatesoft.svn.core.internal.wc2.remote org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteRemoteMkDir$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler { final synthetic org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteRemoteMkDir this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteRemoteMkDir) public boolean handleCommitPath (java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException String commitPath org.tmatesoft.svn.core.io.ISVNEditor commitEditor }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteExport$1.class
SvnRemoteExport.java package org.tmatesoft.svn.core.internal.wc2.remote org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteExport$1 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { final synthetic long val$revNumber final synthetic org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteExport this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteExport, long) public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNReporter reporter }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteSetPropertyImpl.class
SvnRemoteSetPropertyImpl.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteSetPropertyImpl extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner implements org.tmatesoft.svn.core.wc.ISVNPropertyHandler { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnRemoteSetProperty, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnRemoteSetProperty operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.SVNCommitInfo run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNCommitInfo info org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 wcClient public void handleProperty (java.io.File, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNPropertyData property public void handleProperty (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNPropertyData property public void handleProperty (long, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException long revision org.tmatesoft.svn.core.wc.SVNPropertyData property public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteGetProperties$1.class
SvnRemoteGetProperties.java package org.tmatesoft.svn.core.internal.wc2.remote org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteGetProperties$1 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNDirEntryHandler { final synthetic java.util.Collection val$dirEntries final synthetic org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteGetProperties this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteGetProperties, java.util.Collection) public void handleDirEntry (org.tmatesoft.svn.core.SVNDirEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDirEntry dirEntry }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteList$1.class
SvnRemoteList.java package org.tmatesoft.svn.core.internal.wc2.remote org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteList$1 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNDirEntryHandler { final synthetic java.util.Map val$locksMap final synthetic org.tmatesoft.svn.core.ISVNDirEntryHandler val$handler final synthetic org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteList this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteList, java.util.Map, org.tmatesoft.svn.core.ISVNDirEntryHandler) public void handleDirEntry (org.tmatesoft.svn.core.SVNDirEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDirEntry dirEntry }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteRemoteDelete.class
SvnRemoteRemoteDelete.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteRemoteDelete extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner { public void <init> () protected org.tmatesoft.svn.core.SVNCommitInfo run () throws org.tmatesoft.svn.core.SVNException java.util.ArrayList relPaths java.util.Iterator rootUrls java.util.ArrayList relPaths org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL reposRoot String reposRelPath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.io.SVNRepository repository java.util.List paths java.util.Iterator rootUrls org.tmatesoft.svn.core.io.SVNRepository svnRepository Object entry java.util.Iterator i$ org.tmatesoft.svn.core.SVNCommitInfo info org.tmatesoft.svn.core.io.SVNRepository svnRepository Object entry java.util.Iterator i$ org.tmatesoft.svn.core.internal.util.SVNHashMap reposInfo org.tmatesoft.svn.core.internal.util.SVNHashMap relPathInfo private org.tmatesoft.svn.core.SVNCommitInfo singleRepositoryDelete (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNURL, java.util.List) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.wc2.SvnCommitItem item int i org.tmatesoft.svn.core.wc2.SvnCommitItem[] commitItems String commitMessage org.tmatesoft.svn.core.SVNException inner org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL rootURL java.util.List paths String commitMessage String[] pathsArray java.util.List condencedPaths String commonParentPath org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler deleter org.tmatesoft.svn.core.SVNCommitInfo info protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteExport.class
SvnRemoteExport.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteExport extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnExport, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnExport operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected java.lang.Long run () throws org.tmatesoft.svn.core.SVNException java.util.Map externals org.tmatesoft.svn.core.internal.wc.SVNExportEditor editor org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.SVNErrorMessage err String mimeType boolean binary String charset java.util.Map keywords byte[] eols String url org.tmatesoft.svn.core.SVNProperties properties java.io.OutputStream os java.io.File tmpFile org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc2.SvnTarget exportSource org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo long revNumber org.tmatesoft.svn.core.io.SVNRepository repository java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean force boolean expandKeywords String eolStyle boolean ignoreExternals org.tmatesoft.svn.core.wc.ISVNOptions options org.tmatesoft.svn.core.SVNNodeKind dstKind private void handleExternals (java.util.Map, org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNCancelException e org.tmatesoft.svn.core.SVNException e java.io.File externalDirectory java.io.File parentDirectory org.tmatesoft.svn.core.SVNURL externalUrl org.tmatesoft.svn.core.wc2.SvnExport export int i java.io.File dirPath String externalValue org.tmatesoft.svn.core.internal.wc.SVNExternal[] exts org.tmatesoft.svn.core.SVNURL directoryUrl String relativePath java.util.Iterator i$ java.util.Map externals org.tmatesoft.svn.core.SVNURL fromUrl java.io.File toPath org.tmatesoft.svn.core.SVNURL reposRootUrl public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteDiff.class
SvnRemoteDiff.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteDiff extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner { static final synthetic boolean $assertionsDisabled public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnDiff, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnDiff operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected java.lang.Void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient java.util.Collection targets private org.tmatesoft.svn.core.wc.ISVNDiffGenerator getDiffGenerator () org.tmatesoft.svn.core.wc.ISVNDiffGenerator generator public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException static void <clinit> () }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteDiffSummarize$2.class
SvnRemoteDiffSummarize.java package org.tmatesoft.svn.core.internal.wc2.remote final org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteDiffSummarize$2 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler { final synthetic org.tmatesoft.svn.core.wc2.ISvnObjectReceiver val$receiver void <init> (org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) public void handleDiffStatus (org.tmatesoft.svn.core.wc.SVNDiffStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNDiffStatus diffStatus }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteDiffSummarize$1.class
SvnRemoteDiffSummarize.java package org.tmatesoft.svn.core.internal.wc2.remote org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteDiffSummarize$1 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { final synthetic long val$rev1 final synthetic org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteDiffSummarize this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteDiffSummarize, long) public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNReporter reporter }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteSetRevisionProperty.class
SvnRemoteSetRevisionProperty.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteSetRevisionProperty extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnSetProperty, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnSetProperty operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.wc.SVNPropertyData run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue boolean force org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess access org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.internal.wc17.db.Structure revPair long revNumber public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteGetProperties.class
SvnRemoteGetProperties.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteGetProperties extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnGetProperties, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnGetProperties operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.SVNProperties run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repository long revnum org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNNodeKind kind private void remotePropertyGet (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, org.tmatesoft.svn.core.io.SVNRepository, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.ISVNDirEntryHandler handler org.tmatesoft.svn.core.SVNErrorMessage err String name java.util.Iterator i$ String entryPath org.tmatesoft.svn.core.SVNDepth depthBelow org.tmatesoft.svn.core.SVNDirEntry entry java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNNodeKind kind String path org.tmatesoft.svn.core.io.SVNRepository repos long revNumber org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.SVNURL fullURL org.tmatesoft.svn.core.SVNProperties props java.util.Collection dirEntries public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteGetRevisionProperties.class
SvnRemoteGetRevisionProperties.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteGetRevisionProperties extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnGetProperties, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnGetProperties operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.SVNProperties run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess access org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.internal.wc17.db.Structure revPair long revNumber org.tmatesoft.svn.core.SVNProperties revisionProperties public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteList.class
SvnRemoteList.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteList extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner implements org.tmatesoft.svn.core.ISVNDirEntryHandler { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnList, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnList operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.SVNDirEntry run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget infoTarget org.tmatesoft.svn.core.internal.wc17.db.Structure repositoryInfo org.tmatesoft.svn.core.io.SVNRepository repository long revNum public void handleDirEntry (org.tmatesoft.svn.core.SVNDirEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDirEntry dirEntry private void doList (org.tmatesoft.svn.core.io.SVNRepository, long, org.tmatesoft.svn.core.ISVNDirEntryHandler, boolean, org.tmatesoft.svn.core.SVNDepth, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNDirEntry dirEntry java.util.Iterator ents String name java.util.Collection dirEntries org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNProperties revProps String author String dateStr java.util.Date datestamp org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e String repositoryPath int i org.tmatesoft.svn.core.SVNURL root org.tmatesoft.svn.core.SVNLock[] locks org.tmatesoft.svn.core.io.SVNRepository repos long rev org.tmatesoft.svn.core.ISVNDirEntryHandler handler boolean fetchLocks org.tmatesoft.svn.core.SVNDepth depth int entryFields org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.SVNDirEntry entry org.tmatesoft.svn.core.SVNException error java.util.Map locksMap org.tmatesoft.svn.core.ISVNDirEntryHandler nestedHandler private static void list (org.tmatesoft.svn.core.io.SVNRepository, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, int, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNAuthenticationException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNDirEntry entry String childPath java.util.Iterator iterator org.tmatesoft.svn.core.io.SVNRepository repository String path long rev org.tmatesoft.svn.core.SVNDepth depth int entryFields org.tmatesoft.svn.core.ISVNDirEntryHandler handler java.util.Collection entries public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteRemoteDelete$1.class
SvnRemoteRemoteDelete.java package org.tmatesoft.svn.core.internal.wc2.remote org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteRemoteDelete$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler { final synthetic org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteRemoteDelete this$0 void <init> (org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteRemoteDelete) public boolean handleCommitPath (java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException String commitPath org.tmatesoft.svn.core.io.ISVNEditor commitEditor }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteSetLock.class
SvnRemoteSetLock.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteSetLock extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner implements org.tmatesoft.svn.core.io.ISVNLockHandler { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnSetLock, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnSetLock operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration protected org.tmatesoft.svn.core.SVNLock run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target java.util.Iterator i$ String path java.util.Iterator p int i org.tmatesoft.svn.core.SVNURL[] urls java.util.Collection paths org.tmatesoft.svn.core.SVNURL topURL java.util.Map pathsToRevisions org.tmatesoft.svn.core.io.SVNRepository repository public void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnNgReposToReposCopy.class
SvnNgReposToReposCopy.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnNgReposToReposCopy extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner { public void <init> () public boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnRemoteCopy, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnRemoteCopy operation org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration private boolean areAllSourcesRemote (org.tmatesoft.svn.core.wc2.SvnRemoteCopy) org.tmatesoft.svn.core.wc2.SvnCopySource source java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnRemoteCopy operation protected org.tmatesoft.svn.core.SVNCommitInfo run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration wcGeneration org.tmatesoft.svn.core.wc2.SvnCopySource newSource java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnTarget firstTarget org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL repositoryRoot java.util.Collection targets org.tmatesoft.svn.core.internal.wc16.SVNCopyClient16 client org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.SVNCopySource[] sources int i org.tmatesoft.svn.core.SVNCommitInfo info public volatile synthetic boolean isApplicable (org.tmatesoft.svn.core.wc2.SvnOperation, org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnOperation x0 org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration x1 protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/remote/SvnRemoteDiffSummarize.class
SvnRemoteDiffSummarize.java package org.tmatesoft.svn.core.internal.wc2.remote public org.tmatesoft.svn.core.internal.wc2.remote.SvnRemoteDiffSummarize extends org.tmatesoft.svn.core.internal.wc2.SvnRemoteOperationRunner { public void <init> () protected org.tmatesoft.svn.core.wc2.SvnDiffStatus run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget source org.tmatesoft.svn.core.wc2.SvnTarget firstSource org.tmatesoft.svn.core.wc2.SvnTarget secondSource org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry private void doDiffURL (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url java.io.File path org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler private void doDiffURLURL (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err boolean isRepos1 boolean isRepos2 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc17.db.Structure locationsInfo org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor editor org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.SVNURL url1 java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler boolean isLocalRev1 boolean isLocalRev2 boolean isRepos1 boolean isRepos2 java.io.File basePath org.tmatesoft.svn.core.io.SVNRepository repository1 org.tmatesoft.svn.core.io.SVNRepository repository2 long rev1 long rev2 org.tmatesoft.svn.core.SVNNodeKind kind1 org.tmatesoft.svn.core.SVNNodeKind kind2 String target1 private org.tmatesoft.svn.util.ISVNDebugLog getDebugLog () private long getRevisionNumber (org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.io.SVNRepository repository1 org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.internal.wc17.db.Structure revisionNumber private org.tmatesoft.svn.core.SVNURL getURL (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path1 protected org.tmatesoft.svn.core.io.SVNRepository createRepository (org.tmatesoft.svn.core.SVNURL, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url java.io.File path boolean mayReuse private static org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler createHandlerForReceiver (org.tmatesoft.svn.core.wc2.ISvnObjectReceiver) org.tmatesoft.svn.core.wc2.ISvnObjectReceiver receiver protected volatile synthetic java.lang.Object run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc2/compat/
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$1.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.admin.ISVNTreeHandler val$handler void <init> (org.tmatesoft.svn.core.wc.admin.ISVNTreeHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.admin.SVNAdminPath) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.admin.SVNAdminPath path public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat public org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec extends java.lang.Object { public void <init> () public static org.tmatesoft.svn.core.wc.SVNDiffStatus diffStatus (org.tmatesoft.svn.core.wc2.SvnDiffStatus) org.tmatesoft.svn.core.wc2.SvnDiffStatus diffStatus public static org.tmatesoft.svn.core.wc2.SvnDiffStatus diffStatus (org.tmatesoft.svn.core.wc.SVNDiffStatus) org.tmatesoft.svn.core.wc.SVNDiffStatus diffStatus org.tmatesoft.svn.core.wc2.SvnDiffStatus result public static org.tmatesoft.svn.core.wc2.ISvnObjectReceiver treeReceiver (org.tmatesoft.svn.core.wc.admin.ISVNTreeHandler) org.tmatesoft.svn.core.wc.admin.ISVNTreeHandler handler public static org.tmatesoft.svn.core.wc2.ISvnObjectReceiver changedHistoryReceiver (org.tmatesoft.svn.core.wc.admin.ISVNHistoryHandler) org.tmatesoft.svn.core.wc.admin.ISVNHistoryHandler handler public static org.tmatesoft.svn.core.wc2.ISvnObjectReceiver changedDirectoriesReceiver (org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler) org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler handler public static org.tmatesoft.svn.core.wc2.ISvnObjectReceiver changeEntryReceiver (org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler) org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler handler public static org.tmatesoft.svn.core.wc2.ISvnObjectReceiver changelistReceiver (org.tmatesoft.svn.core.wc.ISVNChangelistHandler) org.tmatesoft.svn.core.wc.ISVNChangelistHandler handler public static org.tmatesoft.svn.core.wc2.ISvnObjectReceiver propertyReceiver (org.tmatesoft.svn.core.wc.ISVNPropertyHandler) org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler public static org.tmatesoft.svn.core.wc2.ISvnObjectReceiver logReceiver (org.tmatesoft.svn.core.ISVNLogEntryHandler) org.tmatesoft.svn.core.ISVNLogEntryHandler handler public static org.tmatesoft.svn.core.wc2.ISvnObjectReceiver annotateReceiver (org.tmatesoft.svn.core.wc.ISVNAnnotateHandler) org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler public static org.tmatesoft.svn.core.wc2.ISvnObjectReceiver diffStatusReceiver (org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public static org.tmatesoft.svn.core.wc2.SvnStatus status (org.tmatesoft.svn.core.wc.SVNStatus) org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.SVNStatus status org.tmatesoft.svn.core.wc2.SvnStatus result public static long revisionNumber (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision revision public static org.tmatesoft.svn.core.wc.SVNStatus status (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.wc2.SvnStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictInfo info org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflictDescription boolean hasTreeConflict org.tmatesoft.svn.core.internal.wc17.SVNWCContext$ConflictInfo conflictedInfo org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.wc2.SvnStatus status org.tmatesoft.svn.core.wc.SVNStatus result private static void fetchStatusRevision (org.tmatesoft.svn.core.internal.wc17.SVNWCContext, org.tmatesoft.svn.core.wc2.SvnStatus, org.tmatesoft.svn.core.wc.SVNStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$WCDbBaseInfo binfo org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc17.SVNWCContext context org.tmatesoft.svn.core.wc2.SvnStatus source org.tmatesoft.svn.core.wc.SVNStatus result org.tmatesoft.svn.core.internal.wc17.db.Structure info org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb$SVNWCDbStatus st public static org.tmatesoft.svn.core.wc2.SvnInfo info (org.tmatesoft.svn.core.wc.SVNInfo) org.tmatesoft.svn.core.wc2.SvnChecksum checksum org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17 cd org.tmatesoft.svn.core.internal.wc17.SVNWCConflictDescription17 cd java.util.Collection conflicts org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.SVNInfo info org.tmatesoft.svn.core.wc2.SvnInfo result org.tmatesoft.svn.core.wc2.SvnWorkingCopyInfo wcInfo java.io.File wcRoot public static org.tmatesoft.svn.core.wc.SVNInfo info (org.tmatesoft.svn.core.wc2.SvnInfo) String rootPath String itemPath org.tmatesoft.svn.core.wc.SVNConflictDescription conflictDescription java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnInfo info org.tmatesoft.svn.core.wc2.SvnWorkingCopyInfo wcInfo String conflictOld String conflictNew String conflictWorking String propRejectFile org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict java.util.Collection conflicts String schedule org.tmatesoft.svn.core.wc.SVNInfo i public static org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook fileListHook (org.tmatesoft.svn.core.wc.ISVNStatusFileProvider) org.tmatesoft.svn.core.wc.ISVNStatusFileProvider provider public static org.tmatesoft.svn.core.wc.ISVNStatusFileProvider fileListProvider (org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook) org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook hook public static org.tmatesoft.svn.core.wc.SVNCommitItem commitItem (org.tmatesoft.svn.core.wc2.SvnCommitItem) org.tmatesoft.svn.core.wc2.SvnCommitItem item public static org.tmatesoft.svn.core.wc2.SvnCommitItem commitItem (org.tmatesoft.svn.core.wc.SVNCommitItem) org.tmatesoft.svn.core.wc.SVNCommitItem item org.tmatesoft.svn.core.wc2.SvnCommitItem i int flags public static org.tmatesoft.svn.core.wc.SVNCommitPacket commitPacket (org.tmatesoft.svn.core.wc2.SvnCommit, org.tmatesoft.svn.core.wc2.SvnCommitPacket) org.tmatesoft.svn.core.wc2.SvnCommitItem item java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL reposRoot java.util.Iterator i$ String token org.tmatesoft.svn.core.SVNURL url java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnCommit operation org.tmatesoft.svn.core.wc2.SvnCommitPacket packet java.util.Collection oldItems org.tmatesoft.svn.core.wc.SVNCommitItem[] allItems java.util.Map oldLockTokens public static org.tmatesoft.svn.core.wc2.SvnCommitPacket commitPacket (org.tmatesoft.svn.core.internal.wc2.ISvnCommitRunner, org.tmatesoft.svn.core.wc.SVNCommitPacket) org.tmatesoft.svn.core.SVNException e String url java.util.Iterator i$ org.tmatesoft.svn.core.wc.SVNCommitItem item int j org.tmatesoft.svn.core.SVNURL svnurl java.util.Iterator i$ org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.SVNCommitItem item int flags int j org.tmatesoft.svn.core.internal.wc2.ISvnCommitRunner runner org.tmatesoft.svn.core.wc.SVNCommitPacket oldPacket org.tmatesoft.svn.core.wc2.SvnCommitPacket packet java.util.Map lockTokens org.tmatesoft.svn.core.wc.SVNCommitItem[] items java.util.Map locks java.util.Collection allUrl org.tmatesoft.svn.core.SVNURL rootUrl public static org.tmatesoft.svn.core.wc.SVNRevisionRange revisionRange (org.tmatesoft.svn.core.wc2.SvnRevisionRange) org.tmatesoft.svn.core.wc2.SvnRevisionRange range public static org.tmatesoft.svn.core.wc2.SvnRevisionRange revisionRange (org.tmatesoft.svn.core.wc.SVNRevisionRange) org.tmatesoft.svn.core.wc.SVNRevisionRange range public static java.util.Collection revisionRanges (java.util.Collection) org.tmatesoft.svn.core.wc.SVNRevisionRange range java.util.Iterator i$ java.util.Collection ranges java.util.Collection result public static java.util.Collection oldRevisionRanges (java.util.Collection) org.tmatesoft.svn.core.wc2.SvnRevisionRange range java.util.Iterator i$ java.util.Collection ranges java.util.Collection result public static org.tmatesoft.svn.core.wc.SVNCopySource copySource (org.tmatesoft.svn.core.wc2.SvnCopySource) org.tmatesoft.svn.core.wc.SVNCopySource copySource org.tmatesoft.svn.core.wc2.SvnCopySource newSource org.tmatesoft.svn.core.wc.SVNCopySource copySource public static org.tmatesoft.svn.core.wc2.SvnCopySource copySource (org.tmatesoft.svn.core.wc.SVNCopySource) org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.SVNCopySource oldSource org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnCopySource copySource public static org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler commitHandler (org.tmatesoft.svn.core.wc.ISVNCommitHandler) org.tmatesoft.svn.core.wc.ISVNCommitHandler target public static org.tmatesoft.svn.core.wc.ISVNCommitHandler commitHandler (org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler) org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler target public static org.tmatesoft.svn.core.wc.ISVNExternalsHandler externalsHandler (org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler) org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler target public static org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler externalsHandler (org.tmatesoft.svn.core.wc.ISVNExternalsHandler) org.tmatesoft.svn.core.wc.ISVNExternalsHandler target public static org.tmatesoft.svn.core.wc2.ISvnCommitParameters commitParameters (org.tmatesoft.svn.core.wc.ISVNCommitParameters) org.tmatesoft.svn.core.wc.ISVNCommitParameters old public static org.tmatesoft.svn.core.wc.ISVNCommitParameters commitParameters (org.tmatesoft.svn.core.wc2.ISvnCommitParameters) org.tmatesoft.svn.core.wc2.ISvnCommitParameters old public static org.tmatesoft.svn.core.wc2.ISvnAddParameters addParameters (org.tmatesoft.svn.core.wc.ISVNAddParameters) org.tmatesoft.svn.core.wc.ISVNAddParameters old public static org.tmatesoft.svn.core.wc.ISVNAddParameters addParameters (org.tmatesoft.svn.core.wc2.ISvnAddParameters) org.tmatesoft.svn.core.wc2.ISvnAddParameters old public static org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider propertyValueProvider (org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider) org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider propertyValueProvider public static org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider propertyValueProvider (org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider) org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider propertyValueProvider }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$7.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$7 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.ISVNLogEntryHandler val$handler void <init> (org.tmatesoft.svn.core.ISVNLogEntryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNLogEntry object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$21.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$21 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider { final synthetic org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider val$propertyValueProvider void <init> (org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider) public org.tmatesoft.svn.core.SVNProperties providePropertyValues (java.io.File, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNProperties properties }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$14.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$14 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNExternalsHandler { final synthetic org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler val$target void <init> (org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler) public org.tmatesoft.svn.core.wc.SVNRevision[] handleExternal (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision) java.io.File externalPath org.tmatesoft.svn.core.SVNURL externalURL org.tmatesoft.svn.core.wc.SVNRevision externalRevision org.tmatesoft.svn.core.wc.SVNRevision externalPegRevision String externalsDefinition org.tmatesoft.svn.core.wc.SVNRevision externalsWorkingRevision }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$10.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$10 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook { final synthetic org.tmatesoft.svn.core.wc.ISVNStatusFileProvider val$provider void <init> (org.tmatesoft.svn.core.wc.ISVNStatusFileProvider) public java.util.Map listFiles (java.io.File) java.io.File parent }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$17.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$17 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNCommitParameters { final synthetic org.tmatesoft.svn.core.wc2.ISvnCommitParameters val$old void <init> (org.tmatesoft.svn.core.wc2.ISvnCommitParameters) public org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action onMissingFile (java.io.File) java.io.File file org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action a public org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action onMissingDirectory (java.io.File) java.io.File file org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action a private org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action action (org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action) org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action a public boolean onDirectoryDeletion (java.io.File) java.io.File directory public boolean onFileDeletion (java.io.File) java.io.File file }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$13.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$13 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNCommitHandler { final synthetic org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler val$target void <init> (org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler) public org.tmatesoft.svn.core.SVNProperties getRevisionProperties (java.lang.String, org.tmatesoft.svn.core.wc.SVNCommitItem[], org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException int i String message org.tmatesoft.svn.core.wc.SVNCommitItem[] commitables org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.wc2.SvnCommitItem[] targetItems public java.lang.String getCommitMessage (java.lang.String, org.tmatesoft.svn.core.wc.SVNCommitItem[]) throws org.tmatesoft.svn.core.SVNException int i String message org.tmatesoft.svn.core.wc.SVNCommitItem[] commitables org.tmatesoft.svn.core.wc2.SvnCommitItem[] targetItems }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$5.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$5 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.ISVNChangelistHandler val$handler void <init> (org.tmatesoft.svn.core.wc.ISVNChangelistHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target String object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$20.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$20 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.hooks.ISvnPropertyValueProvider { final synthetic org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider val$propertyValueProvider void <init> (org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider) public org.tmatesoft.svn.core.SVNProperties providePropertyValues (java.io.File, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNProperties properties }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$4.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$4 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler val$handler void <init> (org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.admin.SVNChangeEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.admin.SVNChangeEntry entry public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$11.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$11 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNStatusFileProvider { final synthetic org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook val$hook void <init> (org.tmatesoft.svn.core.wc2.hooks.ISvnFileListHook) public java.util.Map getChildrenFiles (java.io.File) java.io.File parent }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$18.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$18 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnAddParameters { final synthetic org.tmatesoft.svn.core.wc.ISVNAddParameters val$old void <init> (org.tmatesoft.svn.core.wc.ISVNAddParameters) public org.tmatesoft.svn.core.wc2.ISvnAddParameters$Action onInconsistentEOLs (java.io.File) java.io.File file org.tmatesoft.svn.core.wc.ISVNAddParameters$Action a }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$2.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$2 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.admin.ISVNHistoryHandler val$handler void <init> (org.tmatesoft.svn.core.wc.admin.ISVNHistoryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.admin.SVNAdminPath) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.admin.SVNAdminPath path public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$SVNCommitPacketWrapper.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat public org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$SVNCommitPacketWrapper extends org.tmatesoft.svn.core.wc.SVNCommitPacket { private org.tmatesoft.svn.core.wc2.SvnCommitPacket packet private org.tmatesoft.svn.core.wc2.SvnCommit operation public void <init> (org.tmatesoft.svn.core.wc2.SvnCommit, org.tmatesoft.svn.core.wc2.SvnCommitPacket, org.tmatesoft.svn.core.wc.SVNCommitItem[], java.util.Map) org.tmatesoft.svn.core.wc2.SvnCommit operation org.tmatesoft.svn.core.wc2.SvnCommitPacket packet org.tmatesoft.svn.core.wc.SVNCommitItem[] items java.util.Map lockTokens public void dispose () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.wc2.SvnCommit getOperation () }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$8.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$8 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.ISVNAnnotateHandler val$handler void <init> (org.tmatesoft.svn.core.wc.ISVNAnnotateHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnAnnotateItem) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnAnnotateItem item public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$15.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$15 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.hooks.ISvnExternalsHandler { final synthetic org.tmatesoft.svn.core.wc.ISVNExternalsHandler val$target void <init> (org.tmatesoft.svn.core.wc.ISVNExternalsHandler) public org.tmatesoft.svn.core.wc.SVNRevision[] handleExternal (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision) java.io.File externalPath org.tmatesoft.svn.core.SVNURL externalURL org.tmatesoft.svn.core.wc.SVNRevision externalRevision org.tmatesoft.svn.core.wc.SVNRevision externalPegRevision String externalsDefinition org.tmatesoft.svn.core.wc.SVNRevision externalsWorkingRevision }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$3.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$3 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler val$handler void <init> (org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target String path public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$16.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$16 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnCommitParameters { final synthetic org.tmatesoft.svn.core.wc.ISVNCommitParameters val$old void <init> (org.tmatesoft.svn.core.wc.ISVNCommitParameters) public org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action onMissingFile (java.io.File) java.io.File file org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action a public org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action onMissingDirectory (java.io.File) java.io.File file org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action a private org.tmatesoft.svn.core.wc2.ISvnCommitParameters$Action action (org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action) org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action a public boolean onDirectoryDeletion (java.io.File) java.io.File directory public boolean onFileDeletion (java.io.File) java.io.File file }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$19.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$19 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNAddParameters { final synthetic org.tmatesoft.svn.core.wc2.ISvnAddParameters val$old void <init> (org.tmatesoft.svn.core.wc2.ISvnAddParameters) public org.tmatesoft.svn.core.wc.ISVNAddParameters$Action onInconsistentEOLs (java.io.File) java.io.File file org.tmatesoft.svn.core.wc2.ISvnAddParameters$Action a }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$12.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$12 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.hooks.ISvnCommitHandler { final synthetic org.tmatesoft.svn.core.wc.ISVNCommitHandler val$target void <init> (org.tmatesoft.svn.core.wc.ISVNCommitHandler) public org.tmatesoft.svn.core.SVNProperties getRevisionProperties (java.lang.String, org.tmatesoft.svn.core.wc2.SvnCommitItem[], org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException int i String message org.tmatesoft.svn.core.wc2.SvnCommitItem[] commitables org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.wc.SVNCommitItem[] targetItems public java.lang.String getCommitMessage (java.lang.String, org.tmatesoft.svn.core.wc2.SvnCommitItem[]) throws org.tmatesoft.svn.core.SVNException int i String message org.tmatesoft.svn.core.wc2.SvnCommitItem[] commitables org.tmatesoft.svn.core.wc.SVNCommitItem[] targetItems }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$9.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$9 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler val$handler void <init> (org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnDiffStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnDiffStatus svnDiffStatus public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc2/compat/SvnCodec$6.class
SvnCodec.java package org.tmatesoft.svn.core.internal.wc2.compat final org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec$6 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.ISVNPropertyHandler val$handler void <init> (org.tmatesoft.svn.core.wc.ISVNPropertyHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.SVNPropertyData object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/internal/wc16/
org/tmatesoft/svn/core/internal/wc16/SVNLogClient16$2.class
SVNLogClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNLogClient16$2 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { final synthetic org.tmatesoft.svn.core.ISVNLogEntryHandler val$handler final synthetic org.tmatesoft.svn.core.internal.wc16.SVNLogClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNLogClient16, org.tmatesoft.svn.core.ISVNLogEntryHandler) public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry }
org/tmatesoft/svn/core/internal/wc16/SVNStatusClient16$2.class
SVNStatusClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16$2 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNStatusHandler { final synthetic java.io.File val$absPath final synthetic org.tmatesoft.svn.core.wc.SVNStatus[] val$result final synthetic org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16, java.io.File, org.tmatesoft.svn.core.wc.SVNStatus[]) public void handleStatus (org.tmatesoft.svn.core.wc.SVNStatus) org.tmatesoft.svn.core.wc.SVNStatus status }
org/tmatesoft/svn/core/internal/wc16/SVNUpdateClient16$1.class
SVNUpdateClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher { final synthetic org.tmatesoft.svn.core.SVNURL val$reposRoot final synthetic org.tmatesoft.svn.core.io.SVNRepository[] val$repos2 final synthetic org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.SVNRepository[]) public long fetchFile (java.lang.String, long, java.io.OutputStream, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String path long revision java.io.OutputStream os org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.SVNURL url }
org/tmatesoft/svn/core/internal/wc16/SVNStatusClient16$1.class
SVNStatusClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNStatusHandler { final synthetic boolean[] val$deletedInRepository final synthetic java.util.Collection val$changeLists final synthetic org.tmatesoft.svn.core.wc.ISVNStatusHandler val$handler final synthetic org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16, boolean[], java.util.Collection, org.tmatesoft.svn.core.wc.ISVNStatusHandler) public void handleStatus (org.tmatesoft.svn.core.wc.SVNStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatus status }
org/tmatesoft/svn/core/internal/wc16/SVNLogClient16$1.class
SVNLogClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNLogClient16$1 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { final synthetic org.tmatesoft.svn.core.ISVNLogEntryHandler val$handler final synthetic org.tmatesoft.svn.core.internal.wc16.SVNLogClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNLogClient16, org.tmatesoft.svn.core.ISVNLogEntryHandler) public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$PropFetchHandler.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$PropFetchHandler extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { private java.util.Collection myChangeLists private boolean myIsPristine private String myPropName private org.tmatesoft.svn.core.wc.ISVNPropertyHandler myPropHandler final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 public void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, java.util.Collection, java.lang.String, org.tmatesoft.svn.core.wc.ISVNPropertyHandler, boolean) java.util.Collection changeLists String propName org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler boolean pristine public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue propValue String name org.tmatesoft.svn.core.SVNPropertyValue val java.util.Iterator names org.tmatesoft.svn.core.SVNProperties allProps java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties properties public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$9.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$9 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNStatusHandler { final synthetic boolean val$committed final synthetic long[] val$minRevision final synthetic long[] val$maxRevision final synthetic boolean[] val$switched final synthetic String[] val$wcURL final synthetic java.io.File val$path final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, boolean, long[], long[], boolean[], java.lang.String[], java.io.File) public void handleStatus (org.tmatesoft.svn.core.wc.SVNStatus) org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNStatus status }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$12.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$12 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { final synthetic java.util.Collection val$changeLists final synthetic org.tmatesoft.svn.core.wc.ISVNInfoHandler val$handler final synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess val$wcAccess final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, java.util.Collection, org.tmatesoft.svn.core.wc.ISVNInfoHandler, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNInfo info org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc16/SVNUpdateClient16.class
SVNUpdateClient16.java package org.tmatesoft.svn.core.internal.wc16 public org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16 extends org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate { private org.tmatesoft.svn.core.wc.ISVNExternalsHandler myExternalsHandler private boolean myIsUpdateLocksOnDemand private boolean myIsExportExpandsKeywords public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setExternalsHandler (org.tmatesoft.svn.core.wc.ISVNExternalsHandler) org.tmatesoft.svn.core.wc.ISVNExternalsHandler externalsHandler public org.tmatesoft.svn.core.wc.ISVNExternalsHandler getExternalsHandler () public long doUpdate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive public long doUpdate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive boolean force public long[] doUpdate (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean) throws org.tmatesoft.svn.core.SVNException long rev org.tmatesoft.svn.core.wc.SVNEvent skipEvent org.tmatesoft.svn.core.SVNException svne java.io.File path int i Long value java.util.Iterator revs java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean allowUnversionedObstructions boolean depthIsSticky java.util.Collection revisions long[] result int i public long doUpdate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean allowUnversionedObstructions boolean depthIsSticky private long doSwitchImpl (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess tmpAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea anchor org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea target org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNReporter reporter org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea anchorArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNURL sourceURL long[] revs org.tmatesoft.svn.core.io.SVNRepository repository long revNumber org.tmatesoft.svn.core.SVNURL sourceRoot String[] preservedExts org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor editor org.tmatesoft.svn.core.io.ISVNEditor filterEditor String target long targetRevision org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean allowUnversionedObstructions boolean depthIsSticky boolean closeAccess private long update (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea anchorArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNURL url String[] preservedExts org.tmatesoft.svn.core.io.SVNRepository repos boolean serverSupportsDepth org.tmatesoft.svn.core.internal.wc.admin.SVNReporter reporter String target long revNumber org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.io.SVNRepository[] repos2 org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher fileFetcher org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor editor org.tmatesoft.svn.core.io.ISVNEditor filterEditor long targetRevision java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean allowUnversionedObstructions boolean depthIsSticky boolean sendCopyFrom org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo adminInfo int admOpenDepth public void setUpdateLocksOnDemand (boolean) boolean locksOnDemand public boolean isUpdateLocksOnDemand () public long doSwitch (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive public long doSwitch (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive public long doSwitch (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive boolean force public long doSwitch (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean allowUnversionedObstructions boolean depthIsSticky public long doCheckout (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive public long doCheckout (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive boolean force public long doCheckout (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String message org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry rootEntry int formatVersion org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean allowUnversionedObstructions org.tmatesoft.svn.core.io.SVNRepository repos long revNumber org.tmatesoft.svn.core.SVNNodeKind targetNodeKind String uuid org.tmatesoft.svn.core.SVNURL repositoryRoot long result org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.SVNFileType kind public long doExport (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision String eolStyle boolean force boolean recursive public long doExport (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision String eolStyle boolean overwrite org.tmatesoft.svn.core.SVNDepth depth long[] revNum org.tmatesoft.svn.core.io.SVNRepository repository long exportedRevision public long doExport (java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File srcPath java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision String eolStyle boolean force boolean recursive public long doExport (java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repository long revisionNumber java.io.File srcPath java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision String eolStyle boolean overwrite org.tmatesoft.svn.core.SVNDepth depth long exportedRevision public void doRelocate (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name String from String to java.io.File dst org.tmatesoft.svn.core.SVNURL oldURL org.tmatesoft.svn.core.SVNURL newURL boolean recursive org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void doCanonicalizeURLs (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNCancelException e org.tmatesoft.svn.core.SVNException e java.io.File externalFile int i String path String external org.tmatesoft.svn.core.internal.wc.SVNExternal[] exts java.io.File owner java.util.Iterator externals org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo adminAreaInfo org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea target org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String name java.io.File dst boolean omitDefaultPort boolean recursive org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void setExportExpandsKeywords (boolean) boolean expand public boolean isExportExpandsKeywords () private void copyVersionedDir (java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File childTo java.io.File childFrom java.io.File childTo org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childEntry java.util.Iterator ents org.tmatesoft.svn.core.internal.wc.SVNExternal info java.io.File srcPath java.io.File dstPath int i org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties properties String externalsValue boolean dirCreated java.io.File from java.io.File to org.tmatesoft.svn.core.wc.SVNRevision revision String eolStyle boolean force org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry private void copyVersionedFile (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String) throws org.tmatesoft.svn.core.SVNException long timestamp String author String rev String author java.io.File tmpBaseFile java.io.File dstPath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String fileName org.tmatesoft.svn.core.wc.SVNRevision revision String eol org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean modified org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props long timestamp boolean special boolean executable String keywords String charsetProp String mimeType String charset byte[] eols java.util.Map keywordsMap java.io.File srcFile org.tmatesoft.svn.core.internal.wc.SVNFileType fileType private long doRemoteExport (org.tmatesoft.svn.core.io.SVNRepository, long, java.io.File, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.util.Map externals org.tmatesoft.svn.core.internal.wc.SVNExportEditor editor org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.SVNErrorMessage err String mimeType boolean binary String charset java.util.Map keywords byte[] eols String url org.tmatesoft.svn.core.SVNProperties properties java.io.OutputStream os java.io.File tmpFile org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.io.SVNRepository repository long revNumber java.io.File dstPath String eolStyle boolean force org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.SVNNodeKind dstKind private void doCanonicalizeURLs (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String ownerPath String externals org.tmatesoft.svn.core.SVNPropertyValue externalsValue org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties properties java.util.Iterator ents org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo adminAreaInfo org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name boolean omitDefaultPort boolean recursive boolean save org.tmatesoft.svn.core.internal.wc.admin.SVNEntry rootEntry public static java.lang.String canonicalizeExtenrals (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e String line String[] tokens int index org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL canonicalURL java.util.StringTokenizer lines String externals boolean omitDefaultPort StringBuffer canonicalized private static boolean canonicalizeEntry (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean omitDefaultPort boolean updated org.tmatesoft.svn.core.SVNURL root org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL copyFrom public static org.tmatesoft.svn.core.SVNURL canonicalizeURL (org.tmatesoft.svn.core.SVNURL, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url boolean omitDefaultPort int defaultPort private void handleExternals (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, java.util.Map, java.util.Map, java.util.Map, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNDepth, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int i int i String path java.util.Iterator paths String path java.util.Iterator paths String diffPath org.tmatesoft.svn.core.SVNDepth ambientDepth String oldValue String newValue org.tmatesoft.svn.core.internal.wc.SVNExternal[] previous org.tmatesoft.svn.core.internal.wc.SVNExternal[] current java.util.Map oldParsedExternals java.util.Map newParsedExternals org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16$ExternalDiff externalDiff java.util.Iterator diffPaths org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File root java.util.Map oldExternals java.util.Map newExternals java.util.Map depths org.tmatesoft.svn.core.SVNURL fromURL org.tmatesoft.svn.core.SVNURL rootURL org.tmatesoft.svn.core.SVNDepth requestedDepth boolean isExport boolean updateUnchanged java.util.Set diff private org.tmatesoft.svn.core.SVNURL getOwnerURL (java.io.File) org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.io.File root private void handleExternalItemChange (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.lang.String, org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16$ExternalDiff) throws org.tmatesoft.svn.core.SVNException java.io.File target org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access String targetDir org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16$ExternalDiff externalDiff private void handleExternalChange (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.lang.String, org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16$ExternalDiff) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long[] rev boolean ignoreExternals org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.SVNException error java.io.File[] children org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String url org.tmatesoft.svn.core.internal.wc.SVNFileType fileType boolean empty org.tmatesoft.svn.core.SVNCancelException cancel org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access String targetDir org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16$ExternalDiff externalDiff java.io.File target org.tmatesoft.svn.core.SVNURL oldURL org.tmatesoft.svn.core.SVNURL newURL String externalDefinition org.tmatesoft.svn.core.wc.SVNRevision externalRevision org.tmatesoft.svn.core.wc.SVNRevision externalPegRevision org.tmatesoft.svn.core.wc.SVNRevision[] revs org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNURL reposRootURL private void switchFileExternal (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess targetAccess org.tmatesoft.svn.core.SVNURL dstWCReposRootURL org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne boolean hasPropConflicts boolean hasTreeConflicts org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNException svne2 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 wcClient org.tmatesoft.svn.core.SVNException svne2 org.tmatesoft.svn.core.SVNException svne2 org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNURL reposRootURL String target java.io.File anchor boolean closeTarget boolean revertFile boolean removeFromRevisionControl boolean unlinkFile boolean cleanUp boolean ignoreExternals org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea targetArea private void deleteExternal (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne java.io.File newLocation java.io.File external org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNException error private java.util.Map validateRelocateTargetURL (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.util.Map, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String validatedUUID org.tmatesoft.svn.core.SVNURL validatedURL java.util.Iterator targetURLs org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL actualRoot String actualUUID org.tmatesoft.svn.core.SVNURL targetURL String expectedUUID java.util.Map validatedURLs boolean isRoot org.tmatesoft.svn.core.io.SVNRepository repos private java.util.Map relocateEntry (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.lang.String, java.lang.String, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String fromPath String repos org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String from String to java.util.Map validatedURLs private java.util.Map doRelocate (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.lang.String, java.lang.String, boolean, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File childDir org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childEntry java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name String from String to boolean recursive java.util.Map validatedURLs org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess }
org/tmatesoft/svn/core/internal/wc16/SVNCommitClient16.class
SVNCommitClient16.java package org.tmatesoft.svn.core.internal.wc16 public org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16 extends org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate { private org.tmatesoft.svn.core.wc.ISVNCommitHandler myCommitHandler private org.tmatesoft.svn.core.wc.ISVNCommitParameters myCommitParameters public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setCommitHander (org.tmatesoft.svn.core.wc.ISVNCommitHandler) org.tmatesoft.svn.core.wc.ISVNCommitHandler handler public void setCommitHandler (org.tmatesoft.svn.core.wc.ISVNCommitHandler) org.tmatesoft.svn.core.wc.ISVNCommitHandler handler public org.tmatesoft.svn.core.wc.ISVNCommitHandler getCommitHandler () public void setCommitParameters (org.tmatesoft.svn.core.wc.ISVNCommitParameters) org.tmatesoft.svn.core.wc.ISVNCommitParameters parameters public org.tmatesoft.svn.core.wc.ISVNCommitParameters getCommitParameters () public org.tmatesoft.svn.core.SVNCommitInfo doDelete (org.tmatesoft.svn.core.SVNURL[], java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL[] urls String commitMessage public org.tmatesoft.svn.core.SVNCommitInfo doDelete (org.tmatesoft.svn.core.SVNURL[], java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path int i String path java.util.Iterator commitPaths org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.SVNNodeKind kind java.util.Iterator commitPath org.tmatesoft.svn.core.SVNException inner org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL[] urls String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties java.util.List paths org.tmatesoft.svn.core.SVNURL rootURL org.tmatesoft.svn.core.wc.SVNCommitItem[] commitItems java.util.List decodedPaths org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler deleter org.tmatesoft.svn.core.SVNCommitInfo info public org.tmatesoft.svn.core.SVNCommitInfo doMkDir (org.tmatesoft.svn.core.SVNURL[], java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL[] urls String commitMessage public org.tmatesoft.svn.core.SVNCommitInfo doMkDir (org.tmatesoft.svn.core.SVNURL[], java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url int i java.util.List allURLs org.tmatesoft.svn.core.SVNErrorMessage err String path java.util.Iterator commitPaths java.util.List convertedPaths String tail String path int i String path java.util.Iterator commitPaths org.tmatesoft.svn.core.SVNException inner org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL[] urls String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties boolean makeParents java.util.Collection paths org.tmatesoft.svn.core.SVNURL rootURL java.util.List sortedPaths org.tmatesoft.svn.core.wc.SVNCommitItem[] commitItems java.util.List decodedPaths org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler creater org.tmatesoft.svn.core.SVNCommitInfo info public org.tmatesoft.svn.core.SVNCommitInfo doImport (java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL dstURL String commitMessage boolean recursive public org.tmatesoft.svn.core.SVNCommitInfo doImport (java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL dstURL String commitMessage boolean useGlobalIgnores boolean recursive public org.tmatesoft.svn.core.SVNCommitInfo doImport (java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String newDir int i int i org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e int i String newDirPath org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator deltaGenerator org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e java.io.File path org.tmatesoft.svn.core.SVNURL dstURL String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties boolean useGlobalIgnores boolean ignoreUnknownNodeTypes org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.internal.wc.SVNFileType srcKind java.util.List newPaths org.tmatesoft.svn.core.SVNURL rootURL org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.wc.SVNCommitItem[] items org.tmatesoft.svn.core.io.ISVNEditor commitEditor String filePath java.util.Collection ignores boolean changed org.tmatesoft.svn.core.SVNCommitInfo info public org.tmatesoft.svn.core.SVNCommitInfo doCommit (java.io.File[], boolean, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths boolean keepLocks String commitMessage boolean force boolean recursive public org.tmatesoft.svn.core.SVNCommitInfo doCommit (java.io.File[], boolean, java.lang.String, org.tmatesoft.svn.core.SVNProperties, java.lang.String[], boolean, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths boolean keepLocks String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties String[] changelists boolean keepChangelist boolean force org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.SVNCommitPacket packet public org.tmatesoft.svn.core.SVNCommitInfo doCommit (org.tmatesoft.svn.core.wc.SVNCommitPacket, boolean, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNCommitPacket commitPacket boolean keepLocks String commitMessage public org.tmatesoft.svn.core.SVNCommitInfo doCommit (org.tmatesoft.svn.core.wc.SVNCommitPacket, boolean, boolean, java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNCommitPacket commitPacket boolean keepLocks boolean keepChangelist String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.SVNCommitInfo[] info public org.tmatesoft.svn.core.SVNCommitInfo[] doCommit (org.tmatesoft.svn.core.wc.SVNCommitPacket[], boolean, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNCommitPacket[] commitPackets boolean keepLocks String commitMessage public org.tmatesoft.svn.core.SVNCommitInfo[] doCommit (org.tmatesoft.svn.core.wc.SVNCommitPacket[], boolean, boolean, java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File file java.util.Iterator files int i String url org.tmatesoft.svn.core.wc.SVNCommitItem item java.util.Iterator urls org.tmatesoft.svn.core.SVNException e java.util.Map attributes org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryInParent org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentDir java.io.File parentPath String nameInParent String url org.tmatesoft.svn.core.wc.SVNCommitItem item org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess String path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String target org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean recurse boolean removeLock org.tmatesoft.svn.core.SVNProperties wcPropChanges java.util.Iterator urls java.util.Map commitables org.tmatesoft.svn.core.SVNURL baseURL java.util.Map lockTokens org.tmatesoft.svn.core.wc.SVNCommitItem firstItem org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.internal.wc.SVNCommitMediator mediator String repositoryRoot java.util.Collection processedItems java.util.Collection explicitCommitPaths org.tmatesoft.svn.core.SVNException e java.io.File file java.util.Iterator files org.tmatesoft.svn.core.SVNException e java.io.File file java.util.Iterator files org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e java.io.File file java.util.Iterator files org.tmatesoft.svn.core.wc.SVNCommitPacket commitPacket int p org.tmatesoft.svn.core.wc.SVNCommitPacket[] commitPackets boolean keepLocks boolean keepChangelist String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties java.util.Collection tmpFiles org.tmatesoft.svn.core.SVNCommitInfo info org.tmatesoft.svn.core.io.ISVNEditor commitEditor java.util.Collection infos boolean needsSleepForTimeStamp public org.tmatesoft.svn.core.wc.SVNCommitPacket doCollectCommitItems (java.io.File[], boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths boolean keepLocks boolean force boolean recursive org.tmatesoft.svn.core.SVNDepth depth public org.tmatesoft.svn.core.wc.SVNCommitPacket doCollectCommitItems (java.io.File[], boolean, boolean, org.tmatesoft.svn.core.SVNDepth, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException int i int j org.tmatesoft.svn.core.wc.SVNCommitItem commitItem int i java.util.Map lockTokens java.util.Collection changelistsSet org.tmatesoft.svn.core.wc.SVNCommitItem[] commitItems boolean hasModifications org.tmatesoft.svn.core.SVNErrorMessage nestedErr org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e java.io.File[] paths boolean keepLocks boolean force org.tmatesoft.svn.core.SVNDepth depth String[] changelists java.util.Collection targets org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16 statusClient org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea[] areas public org.tmatesoft.svn.core.wc.SVNCommitPacket[] doCollectCommitItems (java.io.File[], boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths boolean keepLocks boolean force boolean recursive boolean combinePackets org.tmatesoft.svn.core.SVNDepth depth public org.tmatesoft.svn.core.wc.SVNCommitPacket[] doCollectCommitItems (java.io.File[], boolean, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException int j int j org.tmatesoft.svn.core.wc.SVNCommitItem commitItem int j java.util.Map lockTokens java.util.Collection changelistsSet org.tmatesoft.svn.core.wc.SVNCommitItem[] commitItems boolean hasModifications int j org.tmatesoft.svn.core.SVNErrorMessage nestedErr org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea[] areas java.util.Collection targetPaths int i org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea rootDir org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.SVNErrorMessage err int j org.tmatesoft.svn.core.wc.SVNCommitPacket packet java.io.File wcRoot org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess rootWCAccess String uuid org.tmatesoft.svn.core.SVNURL url java.util.Collection items java.util.Map lockTokens int i String uuid java.util.Collection items java.util.Map lockTokens org.tmatesoft.svn.core.wc.SVNCommitItem[] itemsArray java.util.Iterator roots int index int j org.tmatesoft.svn.core.SVNErrorMessage nestedErr org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e java.io.File[] paths boolean keepLocks boolean force org.tmatesoft.svn.core.SVNDepth depth boolean combinePackets String[] changelists java.util.Collection packets java.util.Map targets org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16 statusClient org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess[] wcAccesses org.tmatesoft.svn.core.wc.SVNCommitPacket[] packetsArray java.util.Map repoUUIDs java.util.Map locktokensMap private void addURLParents (java.util.List, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException java.util.List targets org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL parentURL org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.SVNNodeKind kind private boolean importDir (org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator, java.io.File, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent skippedEvent org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNDepth depthBelowHere org.tmatesoft.svn.core.wc.SVNEvent skippedEvent org.tmatesoft.svn.core.SVNErrorMessage err java.io.File file String path org.tmatesoft.svn.core.internal.wc.SVNFileType fileType int i org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator deltaGenerator java.io.File dir String importPath boolean useGlobalIgnores boolean ignoreUnknownNodeTypes org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.io.ISVNEditor editor java.io.File[] children boolean changed org.tmatesoft.svn.core.wc.ISVNFileFilter filter java.util.Collection ignores private boolean importFile (org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator, java.io.File, org.tmatesoft.svn.core.internal.wc.SVNFileType, java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e String name String value java.util.Iterator names byte[] eolBytes java.util.Map keywordsMap org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator deltaGenerator java.io.File file org.tmatesoft.svn.core.internal.wc.SVNFileType fileType String filePath org.tmatesoft.svn.core.io.ISVNEditor editor java.util.Map autoProperties String mimeTypeProperty org.tmatesoft.svn.core.wc.SVNEvent addedEvent String charset String eolStyle String keywords boolean special java.io.File tmpFile java.io.File importedFile java.io.InputStream is String checksum private static boolean hasProcessedParents (java.util.Collection, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.util.Collection paths String path static java.lang.String validateCommitMessage (java.lang.String) String message }
org/tmatesoft/svn/core/internal/wc16/SVNCopyClient16.class
SVNCopyClient16.java package org.tmatesoft.svn.core.internal.wc16 public org.tmatesoft.svn.core.internal.wc16.SVNCopyClient16 extends org.tmatesoft.svn.core.internal.wc.SVNCopyDriver { protected org.tmatesoft.svn.core.wc.ISVNCommitHandler myCommitHandler protected org.tmatesoft.svn.core.wc.ISVNCommitParameters myCommitParameters protected org.tmatesoft.svn.core.wc.ISVNExternalsHandler myExternalsHandler public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setCommitHandler (org.tmatesoft.svn.core.wc.ISVNCommitHandler) org.tmatesoft.svn.core.wc.ISVNCommitHandler handler public org.tmatesoft.svn.core.wc.ISVNCommitHandler getCommitHandler () public void setCommitParameters (org.tmatesoft.svn.core.wc.ISVNCommitParameters) org.tmatesoft.svn.core.wc.ISVNCommitParameters parameters public org.tmatesoft.svn.core.wc.ISVNCommitParameters getCommitParameters () public void setExternalsHandler (org.tmatesoft.svn.core.wc.ISVNExternalsHandler) org.tmatesoft.svn.core.wc.ISVNExternalsHandler externalsHandler public org.tmatesoft.svn.core.wc.ISVNExternalsHandler getExternalsHandler () public void doCopy (org.tmatesoft.svn.core.wc.SVNCopySource[], java.io.File, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException second org.tmatesoft.svn.core.wc.SVNCopySource source String baseName org.tmatesoft.svn.core.SVNErrorCode err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.SVNCopySource[] sources java.io.File dst boolean isMove boolean makeParents boolean failWhenDstExists public org.tmatesoft.svn.core.SVNCommitInfo doCopy (org.tmatesoft.svn.core.wc.SVNCopySource[], org.tmatesoft.svn.core.SVNURL, boolean, boolean, boolean, java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException second org.tmatesoft.svn.core.wc.SVNCopySource source String baseName org.tmatesoft.svn.core.SVNErrorCode err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.SVNCopySource[] sources org.tmatesoft.svn.core.SVNURL dst boolean isMove boolean makeParents boolean failWhenDstExists String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties public void doCopy (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File nestedWC }
org/tmatesoft/svn/core/internal/wc16/SVNChangelistClient16$SVNChangeListWalker.class
SVNChangelistClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNChangelistClient16$SVNChangeListWalker extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { private String myChangelist private java.util.Collection myChangelists private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess myWCAccess final synthetic org.tmatesoft.svn.core.internal.wc16.SVNChangelistClient16 this$0 public void <init> (org.tmatesoft.svn.core.internal.wc16.SVNChangelistClient16, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.lang.String, java.util.Collection) org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess String changelistName java.util.Collection changelists public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNEvent event java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map attributes org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.wc.SVNEvent event public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc16/SVNLogClient16.class
SVNLogClient16.java package org.tmatesoft.svn.core.internal.wc16 public org.tmatesoft.svn.core.internal.wc16.SVNLogClient16 extends org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate { private org.tmatesoft.svn.core.wc.SVNDiffOptions myDiffOptions public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setDiffOptions (org.tmatesoft.svn.core.wc.SVNDiffOptions) org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions public org.tmatesoft.svn.core.wc.SVNDiffOptions getDiffOptions () public void doAnnotate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler public void doAnnotate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean ignoreMimeType org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler public void doAnnotate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean ignoreMimeType boolean includeMergedRevisions org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding org.tmatesoft.svn.core.io.SVNRepository repos long endRev long startRev java.io.File tmpFile public void doAnnotate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler public void doAnnotate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding public void doAnnotate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean ignoreMimeType org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding public void doAnnotate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean ignoreMimeType boolean includeMergedRevisions org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding org.tmatesoft.svn.core.io.SVNRepository repos long endRev long startRev java.io.File tmpFile public void doLog (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, long, org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean stopOnCopy boolean discoverChangedPaths long limit org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void doLog (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, long, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.SVNRevision pegRevision boolean stopOnCopy boolean discoverChangedPaths boolean includeMergedRevisions long limit String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler java.util.Collection revisionRanges public void doLog (java.io.File[], java.util.Collection, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, long, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end org.tmatesoft.svn.core.wc.SVNRevisionRange revRange java.util.Iterator revRangesIter org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry int i org.tmatesoft.svn.core.SVNErrorMessage err java.io.File root org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area int i long startRev long endRev int i long startRev long endRev org.tmatesoft.svn.core.wc.SVNRevisionRange revRange org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision java.util.Iterator revRangesIter java.io.File[] paths java.util.Collection revisionRanges org.tmatesoft.svn.core.wc.SVNRevision pegRevision boolean stopOnCopy boolean discoverChangedPaths boolean includeMergedRevisions long limit String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc.SVNRevision sessionRevision java.util.List editedRevisionRanges org.tmatesoft.svn.core.ISVNLogEntryHandler wrappingHandler org.tmatesoft.svn.core.SVNURL[] urls org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.util.Collection wcPaths String[] wcPathsArray String rootWCPath java.util.Collection targets org.tmatesoft.svn.core.SVNURL baseURL org.tmatesoft.svn.core.io.SVNRepository repos String[] targetPaths public void doLog (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, long, org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean stopOnCopy boolean discoverChangedPaths long limit org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void doLog (org.tmatesoft.svn.core.SVNURL, java.lang.String[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, long, org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String[] paths org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean stopOnCopy boolean discoverChangedPaths long limit org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void doLog (org.tmatesoft.svn.core.SVNURL, java.lang.String[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, long, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String[] paths org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean stopOnCopy boolean discoverChangedPaths boolean includeMergedRevisions long limit String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler java.util.Collection revisionRanges public void doLog (org.tmatesoft.svn.core.SVNURL, java.lang.String[], org.tmatesoft.svn.core.wc.SVNRevision, java.util.Collection, boolean, boolean, boolean, long, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end org.tmatesoft.svn.core.wc.SVNRevisionRange revRange java.util.Iterator revRangesIter org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNRevisionRange revRange long startRev long endRev java.util.Iterator revRangesIter org.tmatesoft.svn.core.SVNURL url String[] paths org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.util.Collection revisionRanges boolean stopOnCopy boolean discoverChangedPaths boolean includeMergedRevisions long limit String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc.SVNRevision sessionRevision java.util.List editedRevisionRanges org.tmatesoft.svn.core.ISVNLogEntryHandler wrappingHandler org.tmatesoft.svn.core.io.SVNRepository repos public void doList (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean fetchLocks boolean recursive org.tmatesoft.svn.core.ISVNDirEntryHandler handler public void doList (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.SVNDepth, int, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean fetchLocks org.tmatesoft.svn.core.SVNDepth depth int entryFields org.tmatesoft.svn.core.ISVNDirEntryHandler handler org.tmatesoft.svn.core.io.SVNRepository repos long rev public void doList (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.ISVNDirEntryHandler handler public void doList (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean fetchLocks boolean recursive org.tmatesoft.svn.core.ISVNDirEntryHandler handler public void doList (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.SVNDepth, int, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean fetchLocks org.tmatesoft.svn.core.SVNDepth depth int entryFields org.tmatesoft.svn.core.ISVNDirEntryHandler handler long[] pegRev org.tmatesoft.svn.core.io.SVNRepository repos public void doList (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.ISVNDirEntryHandler handler private boolean needsWC (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision revision private void doAnnotate (java.lang.String, long, java.io.File, org.tmatesoft.svn.core.io.SVNRepository, long, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String path long startRev java.io.File tmpFile org.tmatesoft.svn.core.io.SVNRepository repos long endRev boolean ignoreMimeType org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding boolean includeMergedRevisions org.tmatesoft.svn.core.SVNAnnotationGenerator generator boolean useSpool boolean oldSpool private void doList (org.tmatesoft.svn.core.io.SVNRepository, long, org.tmatesoft.svn.core.ISVNDirEntryHandler, boolean, org.tmatesoft.svn.core.SVNDepth, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNDirEntry dirEntry java.util.Iterator ents String name java.util.Collection dirEntries org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNProperties revProps String author String dateStr java.util.Date datestamp org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e String repositoryPath int i org.tmatesoft.svn.core.SVNURL root org.tmatesoft.svn.core.SVNLock[] locks org.tmatesoft.svn.core.io.SVNRepository repos long rev org.tmatesoft.svn.core.ISVNDirEntryHandler handler boolean fetchLocks org.tmatesoft.svn.core.SVNDepth depth int entryFields org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.SVNDirEntry entry org.tmatesoft.svn.core.SVNException error java.util.Map locksMap org.tmatesoft.svn.core.ISVNDirEntryHandler nestedHandler private static void list (org.tmatesoft.svn.core.io.SVNRepository, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, int, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNAuthenticationException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNDirEntry entry String childPath java.util.Iterator iterator org.tmatesoft.svn.core.io.SVNRepository repository String path long rev org.tmatesoft.svn.core.SVNDepth depth int entryFields org.tmatesoft.svn.core.ISVNDirEntryHandler handler java.util.Collection entries }
org/tmatesoft/svn/core/internal/wc16/SVNDiffClient16$2.class
SVNDiffClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16$2 extends java.lang.Object implements java.util.Comparator { final synthetic org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16) public int compare (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL o1 org.tmatesoft.svn.core.SVNURL o2 public volatile synthetic int compare (java.lang.Object, java.lang.Object) Object x0 Object x1 }
org/tmatesoft/svn/core/internal/wc16/SVNCommitClient16$1.class
SVNCommitClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler { final synthetic org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16) public boolean handleCommitPath (java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException String commitPath org.tmatesoft.svn.core.io.ISVNEditor commitEditor }
org/tmatesoft/svn/core/internal/wc16/SVNChangelistClient16$1.class
SVNChangelistClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNChangelistClient16$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { final synthetic java.util.Collection val$changeLists final synthetic org.tmatesoft.svn.core.wc.ISVNChangelistHandler val$handler final synthetic org.tmatesoft.svn.core.internal.wc16.SVNChangelistClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNChangelistClient16, java.util.Collection, org.tmatesoft.svn.core.wc.ISVNChangelistHandler) public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc16/SVNMoveClient16.class
SVNMoveClient16.java package org.tmatesoft.svn.core.internal.wc16 public org.tmatesoft.svn.core.internal.wc16.SVNMoveClient16 extends org.tmatesoft.svn.core.internal.wc.SVNCopyDriver { private org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 myWCClient private org.tmatesoft.svn.core.internal.wc16.SVNCopyClient16 myCopyClient public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setEventHandler (org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNEventHandler dispatcher public void setDebugLog (org.tmatesoft.svn.util.ISVNDebugLog) org.tmatesoft.svn.util.ISVNDebugLog log public void setOptions (org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNOptions options public void doMove (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNCopySource source org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.SVNCopySource source org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstTmpEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry srcTmpEntry org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e String srcURL String srcCFURL long srcRevision long srcCFRevision org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties srcProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties dstProps java.io.File srcBaseFile java.io.File dstBaseFile org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstThisEntry org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstThisEntry org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea srcArea org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dstArea org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties srcProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties dstProps org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstParentEntry String srcURL String srcCFURL String dstURL String repositoryRootURL long srcRevision long srcCFRevision org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNEntry srcEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry java.io.File srcWCRoot java.io.File dstWCRoot boolean sameWC org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File srcParent java.io.File dstParent org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea srcParentArea org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dstParentArea java.io.File src java.io.File dst boolean srcIsVersioned boolean dstParentIsVersioned public void undoMove (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess dstAccess boolean revert org.tmatesoft.svn.core.SVNException e String srcURL String srcCFURL long srcRevision long srcCFRevision org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstThisEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea srcArea String srcURL String dstURL long srcRevision String repositoryRootURL org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dstArea org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNEntry srcEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstParentEntry java.io.File srcWCRoot java.io.File dstWCRoot boolean sameWC org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File srcParent java.io.File dstParent org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea srcParentArea org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dstParentArea java.io.File src java.io.File dst boolean srcIsVersioned boolean dstParentIsVersioned public void doVirtualCopy (java.io.File, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry srcEntry org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dstArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea srcArea org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties srcProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties srcBaseProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties dstProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties dstBaseProps java.io.File baseSrc java.io.File baseDst org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.wc.SVNEvent event java.io.File src java.io.File dst boolean move org.tmatesoft.svn.core.internal.wc.SVNFileType srcType org.tmatesoft.svn.core.internal.wc.SVNFileType dstType String opName org.tmatesoft.svn.core.SVNURL srcRepoRoot org.tmatesoft.svn.core.SVNURL dstRepoRoot boolean versionedDst org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess dstAccess org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess srcAccess String cfURL boolean added long cfRevision private boolean isCopiedAsAChild (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry private void updateCopiedDirectory (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.lang.String, java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String childCopyFromURL org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childEntry String childCopyFromURL String newChildURL java.util.Iterator ents boolean deleted org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String name String newURL String reposRootURL String copyFromURL long copyFromRevision org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry private java.lang.String getCopyFromURL (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String cfURL java.io.File path String urlTail org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess private long getCopyFromRevision (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry long rev java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess private static boolean isVersionedFile (java.io.File) org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc.SVNFileType type org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException svne java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$11.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$11 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNInfoHandler { final synthetic org.tmatesoft.svn.core.wc.SVNInfo[] val$result final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, org.tmatesoft.svn.core.wc.SVNInfo[]) public void handleInfo (org.tmatesoft.svn.core.wc.SVNInfo) org.tmatesoft.svn.core.wc.SVNInfo info }
org/tmatesoft/svn/core/internal/wc16/SVNBasicDelegate$LocationsLogEntryHandler.class
SVNBasicDelegate.java package org.tmatesoft.svn.core.internal.wc16 final org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$LocationsLogEntryHandler extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { private String myCurrentPath private String myStartPath private String myEndPath private String myPegPath private long myStartRevision private long myEndRevision private long myPegRevision private org.tmatesoft.svn.core.SVNNodeKind myKind private org.tmatesoft.svn.core.wc.ISVNEventHandler myEventHandler private void <init> (java.lang.String, long, long, long, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.ISVNEventHandler) String path long startRevision long endRevision long pegRevision org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry synthetic void <init> (java.lang.String, long, long, long, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.ISVNEventHandler, org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$1) String x0 long x1 long x2 long x3 org.tmatesoft.svn.core.SVNNodeKind x4 org.tmatesoft.svn.core.wc.ISVNEventHandler x5 org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$1 x6 static synthetic java.lang.String access$100 (org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$LocationsLogEntryHandler) org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$LocationsLogEntryHandler x0 static synthetic java.lang.String access$200 (org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$LocationsLogEntryHandler) org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$LocationsLogEntryHandler x0 static synthetic java.lang.String access$300 (org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$LocationsLogEntryHandler) org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$LocationsLogEntryHandler x0 static synthetic java.lang.String access$400 (org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$LocationsLogEntryHandler) org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$LocationsLogEntryHandler x0 }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$PropSetHandlerExt.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$PropSetHandlerExt extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { private boolean myIsForce private org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider myPropValueProvider private org.tmatesoft.svn.core.wc.ISVNPropertyHandler myPropHandler private java.util.Collection myChangeLists final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 public void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider, org.tmatesoft.svn.core.wc.ISVNPropertyHandler, java.util.Collection) boolean isForce org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider propertyValueProvider org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler java.util.Collection changeLists public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc16/SVNBasicDelegate$2.class
SVNBasicDelegate.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$2 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { final synthetic long[] val$rev final synthetic org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate, long[]) public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$4.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$4 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { final synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess val$wcAccess final synthetic boolean val$resolveTree final synthetic org.tmatesoft.svn.core.wc.SVNConflictChoice val$choice final synthetic boolean val$resolveContents final synthetic boolean val$resolveProperties final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, boolean, org.tmatesoft.svn.core.wc.SVNConflictChoice, boolean, boolean) public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File parentDir org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc java.io.File conflictDir org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea conflictArea org.tmatesoft.svn.core.wc.SVNEvent event java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNNodeKind kind long revision boolean wcRoot boolean resolved public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$1.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNFileContentFetcher { private org.tmatesoft.svn.core.SVNProperties myProperties final synthetic org.tmatesoft.svn.core.io.SVNRepository val$repos final synthetic long val$baseRev final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, org.tmatesoft.svn.core.io.SVNRepository, long) public void fetchFileContent (java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException java.io.OutputStream os org.tmatesoft.svn.core.SVNProperties props public org.tmatesoft.svn.core.SVNPropertyValue getProperty (java.lang.String) throws org.tmatesoft.svn.core.SVNException String propertyName private void fetchFileProperties () throws org.tmatesoft.svn.core.SVNException public boolean fileIsBinary () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc16/SVNBasicDelegate$SVNRepositoryLocation.class
SVNBasicDelegate.java package org.tmatesoft.svn.core.internal.wc16 public org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation extends java.lang.Object { private org.tmatesoft.svn.core.SVNURL myURL private long myRevision public void <init> (org.tmatesoft.svn.core.SVNURL, long) org.tmatesoft.svn.core.SVNURL url long rev public long getRevisionNumber () public org.tmatesoft.svn.core.SVNURL getURL () }
org/tmatesoft/svn/core/internal/wc16/SVNDiffClient16$4.class
SVNDiffClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16$4 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { final synthetic long val$rev1 final synthetic org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16, long) public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNReporter reporter }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$7.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$7 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLockHandler { final synthetic org.tmatesoft.svn.core.SVNURL val$rootURL final synthetic java.util.Map val$entriesMap final synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess val$wcAccess final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, org.tmatesoft.svn.core.SVNURL, java.util.Map, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) public void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNURL fullURL org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$LockInfo lockInfo org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$2.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$2 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNPropertyHandler { final synthetic org.tmatesoft.svn.core.wc.SVNPropertyData[] val$data final synthetic java.io.File val$path final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, org.tmatesoft.svn.core.wc.SVNPropertyData[], java.io.File) public void handleProperty (java.io.File, org.tmatesoft.svn.core.wc.SVNPropertyData) java.io.File file org.tmatesoft.svn.core.wc.SVNPropertyData property public void handleProperty (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNPropertyData) org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNPropertyData property public void handleProperty (long, org.tmatesoft.svn.core.wc.SVNPropertyData) long revision org.tmatesoft.svn.core.wc.SVNPropertyData property }
org/tmatesoft/svn/core/internal/wc16/SVNChangelistClient16.class
SVNChangelistClient16.java package org.tmatesoft.svn.core.internal.wc16 public org.tmatesoft.svn.core.internal.wc16.SVNChangelistClient16 extends org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate { public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void getChangeLists (java.io.File, java.util.Collection, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNChangelistHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path java.util.Collection changeLists org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNChangelistHandler handler public void getChangeListPaths (java.util.Collection, java.util.Collection, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNChangelistHandler) throws org.tmatesoft.svn.core.SVNException java.util.Collection changeLists java.util.Collection targets org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNChangelistHandler handler public void addToChangelist (java.io.File[], org.tmatesoft.svn.core.SVNDepth, java.lang.String, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.SVNDepth depth String changelist String[] changelists public void removeFromChangelist (java.io.File[], org.tmatesoft.svn.core.SVNDepth, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.SVNDepth depth String[] changelists public void doAddToChangelist (java.io.File[], org.tmatesoft.svn.core.SVNDepth, java.lang.String, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.SVNDepth depth String changelist String[] changelists public void doRemoveFromChangelist (java.io.File[], org.tmatesoft.svn.core.SVNDepth, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.SVNDepth depth String[] changelists public void doGetChangeListPaths (java.util.Collection, java.util.Collection, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNChangelistHandler) throws org.tmatesoft.svn.core.SVNException java.io.File target java.util.Iterator targetsIter java.util.Collection changeLists java.util.Collection targets org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNChangelistHandler handler public void doGetChangeLists (java.io.File, java.util.Collection, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNChangelistHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler entryHandler java.io.File path java.util.Collection changeLists org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNChangelistHandler handler org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess private void setChangelist (java.io.File[], java.lang.String, java.lang.String[], org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int j java.io.File path java.util.Collection changelistsSet int i java.io.File[] paths String changelistName String[] changelists org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$10.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$10 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNInfoHandler { final synthetic org.tmatesoft.svn.core.wc.SVNInfo[] val$result final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, org.tmatesoft.svn.core.wc.SVNInfo[]) public void handleInfo (org.tmatesoft.svn.core.wc.SVNInfo) org.tmatesoft.svn.core.wc.SVNInfo info }
org/tmatesoft/svn/core/internal/wc16/SVNDiffClient16$1.class
SVNDiffClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16$1 extends java.lang.Object implements java.util.Comparator { final synthetic org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16) public int compare (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL o1 org.tmatesoft.svn.core.SVNURL o2 public volatile synthetic int compare (java.lang.Object, java.lang.Object) Object x0 Object x1 }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$LockInfo.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$LockInfo extends java.lang.Object { private java.io.File myFile private org.tmatesoft.svn.core.wc.SVNRevision myRevision private String myToken public void <init> (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) java.io.File file org.tmatesoft.svn.core.wc.SVNRevision rev public void <init> (java.io.File, java.lang.String) java.io.File file String token static synthetic java.io.File access$000 (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$LockInfo) org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$LockInfo x0 static synthetic org.tmatesoft.svn.core.wc.SVNRevision access$100 (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$LockInfo) org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$LockInfo x0 static synthetic java.lang.String access$200 (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$LockInfo) org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$LockInfo x0 }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$PropSetHandler.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$PropSetHandler extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { private boolean myIsForce private String myPropName private org.tmatesoft.svn.core.SVNPropertyValue myPropValue private org.tmatesoft.svn.core.wc.ISVNPropertyHandler myPropHandler private java.util.Collection myChangeLists final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 public void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, boolean, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.ISVNPropertyHandler, java.util.Collection) boolean isForce String propName org.tmatesoft.svn.core.SVNPropertyValue propValue org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler java.util.Collection changeLists public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException boolean modified org.tmatesoft.svn.core.SVNException svne java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc16/SVNCommitClient16$3.class
SVNCommitClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16$3 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { final synthetic org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16) public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$5.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$5 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLockHandler { final synthetic org.tmatesoft.svn.core.SVNURL val$rootURL final synthetic java.util.Map val$entriesMap final synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess val$wcAccess final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, org.tmatesoft.svn.core.SVNURL, java.util.Map, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) public void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNURL fullURL org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$LockInfo lockInfo org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir public void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc16/SVNStatusClient16.class
SVNStatusClient16.java package org.tmatesoft.svn.core.internal.wc16 public org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16 extends org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate { private org.tmatesoft.svn.core.wc.ISVNStatusFileProvider myFilesProvider public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public long doStatus (java.io.File, boolean, boolean, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean recursive boolean remote boolean reportAll boolean includeIgnored org.tmatesoft.svn.core.wc.ISVNStatusHandler handler public long doStatus (java.io.File, boolean, boolean, boolean, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean recursive boolean remote boolean reportAll boolean includeIgnored boolean collectParentExternals org.tmatesoft.svn.core.wc.ISVNStatusHandler handler public long doStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive boolean remote boolean reportAll boolean includeIgnored boolean collectParentExternals org.tmatesoft.svn.core.wc.ISVNStatusHandler handler public long doStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNStatusHandler, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea anchor org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage error long rev org.tmatesoft.svn.core.io.SVNRepository locksRepos boolean serverSupportsDepth org.tmatesoft.svn.core.internal.wc.SVNStatusReporter statusReporter String target long reportedFiles long totalFiles org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea anchor org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.io.SVNRepository repository long rev org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc.admin.SVNReporter reporter int format org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.SVNExternal external String externalPath java.io.File externalFile int i String ownerPath String externalValue org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals java.util.Iterator paths java.util.Map externalsMap org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean remote boolean reportAll boolean includeIgnored boolean collectParentExternals org.tmatesoft.svn.core.wc.ISVNStatusHandler handler java.util.Collection changeLists org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.SVNStatusEditor editor boolean[] deletedInRepository org.tmatesoft.svn.core.wc.ISVNStatusHandler realHandler public org.tmatesoft.svn.core.wc.SVNStatus doStatus (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean remote public org.tmatesoft.svn.core.wc.SVNStatus doStatus (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean remote boolean collectParentExternals org.tmatesoft.svn.core.wc.SVNStatus[] result java.io.File absPath org.tmatesoft.svn.core.wc.ISVNStatusHandler handler public void setFilesProvider (org.tmatesoft.svn.core.wc.ISVNStatusFileProvider) org.tmatesoft.svn.core.wc.ISVNStatusFileProvider filesProvider }
org/tmatesoft/svn/core/internal/wc16/SVNBasicDelegate$1.class
SVNBasicDelegate.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { final synthetic org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate) public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException }
org/tmatesoft/svn/core/internal/wc16/SVNCommitClient16$2.class
SVNCommitClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16$2 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler { final synthetic org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16) public boolean handleCommitPath (java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException String commitPath org.tmatesoft.svn.core.io.ISVNEditor commitEditor }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$3.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$3 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNPropertyHandler { final synthetic org.tmatesoft.svn.core.wc.SVNPropertyData[] val$data final synthetic org.tmatesoft.svn.core.SVNURL val$url final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, org.tmatesoft.svn.core.wc.SVNPropertyData[], org.tmatesoft.svn.core.SVNURL) public void handleProperty (java.io.File, org.tmatesoft.svn.core.wc.SVNPropertyData) java.io.File file org.tmatesoft.svn.core.wc.SVNPropertyData property public void handleProperty (long, org.tmatesoft.svn.core.wc.SVNPropertyData) long revision org.tmatesoft.svn.core.wc.SVNPropertyData property public void handleProperty (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL location org.tmatesoft.svn.core.wc.SVNPropertyData property }
org/tmatesoft/svn/core/internal/wc16/SVNDiffClient16.class
SVNDiffClient16.java package org.tmatesoft.svn.core.internal.wc16 public org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 extends org.tmatesoft.svn.core.internal.wc.SVNMergeDriver { private org.tmatesoft.svn.core.wc.ISVNDiffGenerator myDiffGenerator private org.tmatesoft.svn.core.wc.SVNDiffOptions myDiffOptions public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setDiffGenerator (org.tmatesoft.svn.core.wc.ISVNDiffGenerator) org.tmatesoft.svn.core.wc.ISVNDiffGenerator diffGenerator public org.tmatesoft.svn.core.wc.ISVNDiffGenerator getDiffGenerator () public void setMergeOptions (org.tmatesoft.svn.core.wc.SVNDiffOptions) org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions public org.tmatesoft.svn.core.wc.SVNDiffOptions getMergeOptions () public void doDiff (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry java.io.OutputStream result public void doDiff (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result public void doDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry java.io.OutputStream result public void doDiff (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne java.io.File path int i java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists public void doDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists boolean rNisLocal boolean rMisLocal public void doDiff (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry java.io.OutputStream result public void doDiff (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result public void doDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry java.io.OutputStream result public void doDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists public void doDiff (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry java.io.OutputStream result public void doDiff (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists public void doDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry java.io.OutputStream result public void doDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists boolean isPath1Local boolean isPath2Local public void doDiffStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler boolean isPath1Local boolean isPath2Local public void doDiffStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler boolean isPath1Local boolean isPath2Local public void doDiffStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath boolean recursive boolean useAncestry boolean force boolean dryRun public void doMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry boolean force boolean dryRun boolean recordOnly org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.SVNURL url2 public void doMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath boolean recursive boolean useAncestry boolean force boolean dryRun public void doMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry boolean force boolean dryRun boolean recordOnly org.tmatesoft.svn.core.SVNURL url1 public void doMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision revision1 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath boolean recursive boolean useAncestry boolean force boolean dryRun public void doMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision revision1 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry boolean force boolean dryRun boolean recordOnly org.tmatesoft.svn.core.SVNURL url2 public void doMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath boolean recursive boolean useAncestry boolean force boolean dryRun public void doMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry boolean force boolean dryRun boolean recordOnly public void doMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath boolean recursive boolean useAncestry boolean force boolean dryRun org.tmatesoft.svn.core.wc.SVNRevisionRange range java.util.List rangesToMerge public void doMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.util.Collection, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.util.Collection rangesToMerge java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry boolean force boolean dryRun boolean recordOnly public void doMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath boolean recursive boolean useAncestry boolean force boolean dryRun org.tmatesoft.svn.core.wc.SVNRevisionRange range java.util.List rangesToMerge public void doMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.util.Collection, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.util.Collection rangesToMerge java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry boolean force boolean dryRun boolean recordOnly public void doMergeReIntegrate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File srcPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File dstPath boolean dryRun public void doMergeReIntegrate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL srcURL org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File dstPath boolean dryRun public void doGetLogMergedMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void doGetLogMergedMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void doGetLogMergedMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void doGetLogMergedMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void doGetLogEligibleMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void doGetLogEligibleMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void doGetLogEligibleMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void doGetLogEligibleMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public java.util.Map doGetMergedMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException String mergeSrcPath org.tmatesoft.svn.core.SVNMergeRangeList rangeList org.tmatesoft.svn.core.SVNURL url java.util.Iterator paths java.util.Map fullPathMergeInfo java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL[] reposRoot java.util.Map mergeInfo org.tmatesoft.svn.core.SVNURL repositoryRoot public java.util.Map doGetMergedMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException String mergeSrcPath org.tmatesoft.svn.core.SVNMergeRangeList rangeList org.tmatesoft.svn.core.SVNURL nextURL java.util.Iterator paths java.util.Map fullPathMergeInfo org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL[] reposRoot java.util.Map mergeInfo org.tmatesoft.svn.core.SVNURL repositoryRoot public java.util.Collection doSuggestMergeSources (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException String relCopyFromPath org.tmatesoft.svn.core.SVNURL mergeSrcURL java.util.Iterator mergeSrcURLs java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.util.LinkedList suggestions org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.io.SVNLocationEntry copyFromInfo String copyFromPath org.tmatesoft.svn.core.SVNURL copyFromURL java.util.Map mergeInfo public java.util.Collection doSuggestMergeSources (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException String relCopyFromPath org.tmatesoft.svn.core.SVNURL mergeSrcURL java.util.Iterator mergeSrcURLs org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.util.LinkedList suggestions org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.io.SVNLocationEntry copyFromInfo String copyFromPath org.tmatesoft.svn.core.SVNURL copyFromURL java.util.Map mergeInfo private void doDiffURLWC (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] locations String anchorPath2 org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info java.io.File anchorPath String target org.tmatesoft.svn.core.internal.wc.admin.SVNEntry anchorEntry org.tmatesoft.svn.core.SVNURL anchorURL org.tmatesoft.svn.core.io.SVNRepository repository long revNumber org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback callback org.tmatesoft.svn.core.internal.wc.SVNDiffEditor editor boolean serverSupportsDepth org.tmatesoft.svn.core.internal.wc.admin.SVNReporter reporter long pegRevisionNumber org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 boolean reverse org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess private void doDiffURLWC (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] locations String anchorPath2 org.tmatesoft.svn.core.SVNURL url1 int admDepth org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info java.io.File anchorPath String target org.tmatesoft.svn.core.internal.wc.admin.SVNEntry anchorEntry org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.SVNURL anchorURL org.tmatesoft.svn.core.io.SVNRepository repository long revNumber org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback callback org.tmatesoft.svn.core.internal.wc.SVNDiffEditor editor org.tmatesoft.svn.core.io.ISVNEditor filterEditor boolean serverSupportsDepth org.tmatesoft.svn.core.internal.wc.admin.SVNReporter reporter long pegRevisionNumber java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 boolean reverse org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess private void doDiffWCWC (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int admDepth org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info long rev org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback callback org.tmatesoft.svn.core.internal.wc.SVNDiffEditor editor java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess private void doDiffURLURL (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] locations org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNDiffCallback callback org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.SVNURL url1 java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.io.File basePath org.tmatesoft.svn.core.io.SVNRepository repository1 org.tmatesoft.svn.core.io.SVNRepository repository2 long rev1 long rev2 String target1 org.tmatesoft.svn.core.SVNNodeKind kind1 org.tmatesoft.svn.core.SVNNodeKind kind2 org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor editor private void doDiffURLURL (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] locations org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor editor org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.SVNURL url1 java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler java.io.File basePath org.tmatesoft.svn.core.io.SVNRepository repository1 org.tmatesoft.svn.core.io.SVNRepository repository2 long rev1 long rev2 org.tmatesoft.svn.core.SVNNodeKind kind1 org.tmatesoft.svn.core.SVNNodeKind kind2 String target1 java.io.File tmpFile private int getAdminDepth (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth int admDepth private java.lang.Object[] getLocationFromPathAndRevision (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException int admLockLevel long[] rev java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea private void getLogMergedMergeInfoImpl (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException String mergeSrc org.tmatesoft.svn.core.SVNMergeRangeList list org.tmatesoft.svn.core.SVNMergeRange[] listRanges org.tmatesoft.svn.core.SVNMergeRange range java.util.Iterator mergeInfoIter java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.SVNURL[] reposRoot Object[] location org.tmatesoft.svn.core.SVNURL realMergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision realSrcPegRevision java.util.Map targetMergeInfo java.util.Map srcHistory java.util.Map mergeInfo org.tmatesoft.svn.core.SVNMergeRangeList rangeList long youngestRev String logTarget private void getLogEligibleMergeInfoImpl (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException String mergeSrc org.tmatesoft.svn.core.SVNMergeRangeList availableRangeList org.tmatesoft.svn.core.SVNMergeRange[] ranges org.tmatesoft.svn.core.SVNMergeRange range java.util.Iterator availableIter java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.SVNURL[] reposRoot Object[] location org.tmatesoft.svn.core.SVNURL realMergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision realSrcPegRevision java.util.Map mergeInfo java.util.Map history org.tmatesoft.svn.core.io.SVNRepository repos java.util.Map sourceHistory java.util.Map availableMergeInfo org.tmatesoft.svn.core.SVNMergeRangeList rangeList long youngestRev String logTarget private void applyPatches (java.io.File, java.io.File, boolean, int, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException java.io.IOException org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target java.util.Iterator i java.util.List targets org.tmatesoft.svn.core.internal.wc.patch.SVNPatch patch org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File absPatchPath java.io.File absWCPath boolean dryRun int stripCount org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea wc org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream patchFile public void doPatch (java.io.File, java.io.File, boolean, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea wc org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File absPatchPath java.io.File localAbsPath boolean dryRun int stripCount org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess }
org/tmatesoft/svn/core/internal/wc16/SVNUpdateClient16$2.class
SVNUpdateClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16$2 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { final synthetic long val$revNumber final synthetic org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16, long) public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNReporter reporter }
org/tmatesoft/svn/core/internal/wc16/SVNLogClient16$3.class
SVNLogClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNLogClient16$3 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNDirEntryHandler { final synthetic java.util.Map val$locksMap final synthetic org.tmatesoft.svn.core.ISVNDirEntryHandler val$handler final synthetic org.tmatesoft.svn.core.internal.wc16.SVNLogClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNLogClient16, java.util.Map, org.tmatesoft.svn.core.ISVNDirEntryHandler) public void handleDirEntry (org.tmatesoft.svn.core.SVNDirEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDirEntry dirEntry }
org/tmatesoft/svn/core/internal/wc16/SVNBasicDelegate$RepositoryReference.class
SVNBasicDelegate.java package org.tmatesoft.svn.core.internal.wc16 public org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$RepositoryReference extends java.lang.Object { public String URL public long Revision public void <init> (java.lang.String, long) String url long rev }
org/tmatesoft/svn/core/internal/wc16/SVNUpdateClient16$ExternalDiff.class
SVNUpdateClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16$ExternalDiff extends java.lang.Object { public org.tmatesoft.svn.core.internal.wc.SVNExternal oldExternal public org.tmatesoft.svn.core.internal.wc.SVNExternal newExternal public java.io.File owner public org.tmatesoft.svn.core.SVNURL ownerURL public org.tmatesoft.svn.core.SVNURL rootURL public boolean isExport public boolean isUpdateUnchanged private void <init> () public boolean compareExternals (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL oldURL org.tmatesoft.svn.core.SVNURL newURL synthetic void <init> (org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16$1) org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16$1 x0 }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$6.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$6 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLockHandler { final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16) public void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc16/SVNBasicDelegate.class
SVNBasicDelegate.java package org.tmatesoft.svn.core.internal.wc16 public org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { private org.tmatesoft.svn.core.wc.ISVNRepositoryPool myRepositoryPool private org.tmatesoft.svn.core.wc.ISVNOptions myOptions private org.tmatesoft.svn.core.wc.ISVNEventHandler myEventDispatcher private java.util.List myPathPrefixesStack private boolean myIsIgnoreExternals private boolean myIsLeaveConflictsUnresolved private org.tmatesoft.svn.util.ISVNDebugLog myDebugLog private org.tmatesoft.svn.core.wc.ISVNPathListHandler myPathListHandler public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options protected void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public org.tmatesoft.svn.core.wc.ISVNOptions getOptions () public void setOptions (org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNOptions options public void setIgnoreExternals (boolean) boolean ignore public boolean isIgnoreExternals () public void setLeaveConflictsUnresolved (boolean) boolean leave public boolean isLeaveConflictsUnresolved () public void setEventHandler (org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNEventHandler dispatcher public void setPathListHandler (org.tmatesoft.svn.core.wc.ISVNPathListHandler) org.tmatesoft.svn.core.wc.ISVNPathListHandler handler public void setDebugLog (org.tmatesoft.svn.util.ISVNDebugLog) org.tmatesoft.svn.util.ISVNDebugLog log public org.tmatesoft.svn.util.ISVNDebugLog getDebugLog () public org.tmatesoft.svn.core.SVNURL getReposRoot (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean needCleanUp org.tmatesoft.svn.core.io.SVNRepository repos java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access org.tmatesoft.svn.core.SVNURL reposRoot protected void sleepForTimeStamp () protected org.tmatesoft.svn.core.io.SVNRepository createRepository (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNURL url java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access boolean mayReuse String uuid protected org.tmatesoft.svn.core.io.SVNRepository createRepository (org.tmatesoft.svn.core.SVNURL, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String reposUUID org.tmatesoft.svn.core.SVNURL url String uuid boolean mayReuse org.tmatesoft.svn.core.io.SVNRepository repository protected org.tmatesoft.svn.core.wc.ISVNRepositoryPool getRepositoryPool () protected void dispatchEvent (org.tmatesoft.svn.core.wc.SVNEvent) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event protected void dispatchEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err Throwable th org.tmatesoft.svn.core.wc.SVNEvent event double progress public void setEventPathPrefix (java.lang.String) String prefix protected org.tmatesoft.svn.core.wc.ISVNEventHandler getEventDispatcher () protected org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess createWCAccess () protected org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess createWCAccess (java.lang.String) String pathPrefix org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress public void handlePathListItem (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException protected long getRevisionNumber (org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.io.SVNRepository, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.io.SVNRepository repository java.io.File path protected long getRevisionNumber (org.tmatesoft.svn.core.wc.SVNRevision, long[], org.tmatesoft.svn.core.io.SVNRepository, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long latestRevision org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNRevision revision long[] latestRevisionNumber org.tmatesoft.svn.core.io.SVNRepository repository java.io.File path protected org.tmatesoft.svn.core.io.SVNRepository createRepository (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, long[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL pathURL org.tmatesoft.svn.core.SVNURL url java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision long[] pegRev org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision[] resolvedRevisions org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] locations long actualRevision org.tmatesoft.svn.core.io.SVNRepository repository protected org.tmatesoft.svn.core.wc.SVNRevision[] resolveRevisions (org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean) org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean isURL boolean noticeLocalModifications protected void elideMergeInfo (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.io.File) throws org.tmatesoft.svn.core.SVNException java.util.Map mergeInfo java.util.Map targetMergeInfo boolean[] inherited org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File wcElisionLimitPath protected java.util.Map getReposMergeInfo (org.tmatesoft.svn.core.io.SVNRepository, java.lang.String, long, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNMergeInfo mergeInfo org.tmatesoft.svn.core.io.SVNRepository repository String path long revision org.tmatesoft.svn.core.SVNMergeInfoInheritance inheritance boolean squelchIncapable java.util.Map reposMergeInfo String rootRelativePath java.util.Map targetMergeInfo protected java.util.Map getWCOrRepositoryMergeInfo (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean[], boolean, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL oldLocation boolean closeRepository java.util.Map reposMergeInfo String repositoryPath java.util.Map fileToProp org.tmatesoft.svn.core.SVNPropertyValue mergeInfoProp java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit boolean[] indirect boolean reposOnly org.tmatesoft.svn.core.io.SVNRepository repository java.util.Map mergeInfo long[] targetRev org.tmatesoft.svn.core.SVNURL url long revision protected java.util.Map getWCMergeInfo (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.io.File, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean, boolean[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File limitPath org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit boolean base boolean[] inherited String walkPath java.util.Map wcMergeInfo org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.util.Map mergeInfo protected long getPathLastChangeRevision (java.lang.String, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException String relPath long revision org.tmatesoft.svn.core.io.SVNRepository repository long[] rev protected java.lang.String getPathRelativeToRoot (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean cleanUp org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL reposRootURL org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.io.SVNRepository repos String reposRootPath String absPath protected java.lang.String getPathRelativeToSession (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.SVNRepository) org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL sessionURL org.tmatesoft.svn.core.io.SVNRepository repos String reposPath String absPath protected org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] getLocations (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess long startRevisionNumber long endRevisionNumber org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] result org.tmatesoft.svn.core.SVNException e Object source org.tmatesoft.svn.core.SVNErrorMessage err Object source org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL endURL org.tmatesoft.svn.core.SVNURL url java.io.File path org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNRevision start org.tmatesoft.svn.core.wc.SVNRevision end long pegRevisionNumber long startRevisionNumber long endRevisionNumber long[] youngestRevNumber String repoPath java.util.Map locations org.tmatesoft.svn.core.SVNURL rootURL long[] revisionsRange org.tmatesoft.svn.core.io.SVNLocationEntry startPath org.tmatesoft.svn.core.io.SVNLocationEntry endPath org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] result org.tmatesoft.svn.core.SVNURL startURL private java.util.Map getLocations10 (org.tmatesoft.svn.core.io.SVNRepository, long, long, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.io.SVNRepository repos long pegRevision long startRevision long endRevision String path org.tmatesoft.svn.core.SVNNodeKind kind long logStart long logEnd org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$LocationsLogEntryHandler handler String pegPath String startPath String endPath java.util.Map result private static java.lang.String getPreviousLogPath (java.lang.String, org.tmatesoft.svn.core.SVNLogEntry, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntryPath lPath String p java.util.Iterator paths java.util.Map sortedMap java.util.List pathsList org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.SVNLogEntry logEntry org.tmatesoft.svn.core.SVNNodeKind kind String prevPath org.tmatesoft.svn.core.SVNLogEntryPath logPath protected org.tmatesoft.svn.core.SVNURL getURL (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path protected org.tmatesoft.svn.core.SVNURL deriveLocation (java.io.File, org.tmatesoft.svn.core.SVNURL, long[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean closeRepository java.io.File path org.tmatesoft.svn.core.SVNURL url long[] pegRevisionNumber org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access protected org.tmatesoft.svn.core.SVNURL getEntryLocation (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, long[], org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry long[] revNum org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL url protected org.tmatesoft.svn.core.SVNURL ensureSessionURL (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL oldURL protected int getLevelsToLockFromDepth (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth protected void setCommitItemAccess (org.tmatesoft.svn.core.wc.SVNCommitItem, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) org.tmatesoft.svn.core.wc.SVNCommitItem item org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access protected void setCommitItemProperty (org.tmatesoft.svn.core.wc.SVNCommitItem, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) org.tmatesoft.svn.core.wc.SVNCommitItem item String name org.tmatesoft.svn.core.SVNPropertyValue value protected void setCommitItemFlags (org.tmatesoft.svn.core.wc.SVNCommitItem, boolean, boolean) org.tmatesoft.svn.core.wc.SVNCommitItem item boolean contentModified boolean propertiesModified static synthetic java.lang.String access$500 (java.lang.String, org.tmatesoft.svn.core.SVNLogEntry, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException String x0 org.tmatesoft.svn.core.SVNLogEntry x1 org.tmatesoft.svn.core.SVNNodeKind x2 }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16$8.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$8 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLockHandler { final synthetic org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16) public void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc16/SVNCommitClient16$4.class
SVNCommitClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16$4 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { final synthetic org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNCommitClient16) public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException }
org/tmatesoft/svn/core/internal/wc16/SVNDiffClient16$3.class
SVNDiffClient16.java package org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16$3 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { final synthetic long val$rev1 final synthetic org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 this$0 void <init> (org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16, long) public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNReporter reporter }
org/tmatesoft/svn/core/internal/wc16/SVNWCClient16.class
SVNWCClient16.java package org.tmatesoft.svn.core.internal.wc16 public org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 extends org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate { private org.tmatesoft.svn.core.wc.ISVNAddParameters myAddParameters private org.tmatesoft.svn.core.wc.ISVNCommitHandler myCommitHandler private boolean myIsRevertMissingDirectories public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setAddParameters (org.tmatesoft.svn.core.wc.ISVNAddParameters) org.tmatesoft.svn.core.wc.ISVNAddParameters addParameters public org.tmatesoft.svn.core.wc.ISVNCommitHandler getCommitHandler () public void setCommitHandler (org.tmatesoft.svn.core.wc.ISVNCommitHandler) org.tmatesoft.svn.core.wc.ISVNCommitHandler handler protected org.tmatesoft.svn.core.wc.ISVNAddParameters getAddParameters () public void setRevertMissingDirectories (boolean) boolean revertMissing public boolean isRevertMissingDirectories () public void doGetFileContents (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ioew java.io.IOException e String cmtRev String cmtDate String author java.util.Map keywordsMap java.io.OutputStream translatingStream org.tmatesoft.svn.core.SVNProperties properties String keywords String eol String mimeType String charset java.io.IOException e org.tmatesoft.svn.core.io.SVNRepository repos long revNumber org.tmatesoft.svn.core.SVNNodeKind kind java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean expandKeywords java.io.OutputStream dst public void doGetFileContents (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ioew java.io.IOException e String cmtRev String cmtDate String author java.util.Map keywordsMap java.io.OutputStream translatingStream org.tmatesoft.svn.core.SVNProperties properties String mimeType String charset String keywords String eol java.io.IOException e org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean expandKeywords java.io.OutputStream dst org.tmatesoft.svn.core.io.SVNRepository repos long revNumber org.tmatesoft.svn.core.SVNNodeKind nodeKind public void doCleanup (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path public void doCleanup (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNException e java.io.File path boolean deleteWCProperties org.tmatesoft.svn.core.internal.wc.SVNFileType fType org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void doSetProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNPropertyHandler, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$PropSetHandler entryHandler boolean modified org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File path String propName org.tmatesoft.svn.core.SVNPropertyValue propValue boolean skipChecks org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler java.util.Collection changeLists int admLockLevel org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void doSetProperty (java.io.File, org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNPropertyHandler, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$PropSetHandlerExt entryHandler org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File path org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider propertyValueProvider boolean skipChecks org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler java.util.Collection changeLists int admLockLevel org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public org.tmatesoft.svn.core.SVNCommitInfo doSetProperty (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long baseRev org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNURL url String propName org.tmatesoft.svn.core.SVNPropertyValue propValue org.tmatesoft.svn.core.wc.SVNRevision baseRevision String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties boolean skipChecks org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.io.SVNRepository repos long revNumber org.tmatesoft.svn.core.SVNNodeKind kind java.util.Collection commitItems org.tmatesoft.svn.core.wc.SVNCommitItem commitItem org.tmatesoft.svn.core.wc.SVNCommitItem[] commitItemsArray org.tmatesoft.svn.core.SVNCommitInfo commitInfo org.tmatesoft.svn.core.io.ISVNEditor commitEditor public void doSetRevisionProperty (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision String propName org.tmatesoft.svn.core.SVNPropertyValue propValue boolean force org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.SVNURL url public void doSetRevisionProperty (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision revision String propName org.tmatesoft.svn.core.SVNPropertyValue propValue boolean force org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.io.SVNRepository repos long revNumber public org.tmatesoft.svn.core.wc.SVNPropertyData doGetProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException java.io.File path String propName org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNPropertyData[] data public org.tmatesoft.svn.core.wc.SVNPropertyData doGetProperty (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String propName org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNPropertyData[] data public void doGetProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path String propName org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler public void doGetProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNPropertyHandler, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long[] revNum org.tmatesoft.svn.core.io.SVNRepository repository int admDepth org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean base org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File path String propName org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler java.util.Collection changeLists public void doGetProperty (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String propName org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler public void doGetProperty (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url String propName org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler long[] pegRev org.tmatesoft.svn.core.io.SVNRepository repos public void doGetRevisionProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path String propName org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.io.SVNRepository repository long revisionNumber public long doGetRevisionProperty (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url String propName org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.io.SVNRepository repos long revNumber public void doDelete (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean force boolean dryRun public void doDelete (java.io.File, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea root java.io.File path boolean force boolean deleteFiles boolean dryRun org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void doAdd (java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean force boolean mkdir boolean climbUnversionedParents boolean recursive org.tmatesoft.svn.core.SVNDepth depth public void doAdd (java.io.File, boolean, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean force boolean mkdir boolean climbUnversionedParents boolean recursive boolean includeIgnored org.tmatesoft.svn.core.SVNDepth depth public void doAdd (java.io.File, boolean, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean force boolean mkdir boolean climbUnversionedParents org.tmatesoft.svn.core.SVNDepth depth boolean includeIgnored boolean makeParents public void doAdd (java.io.File[], boolean, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException int i java.io.File[] paths boolean force boolean mkdir boolean climbUnversionedParents org.tmatesoft.svn.core.SVNDepth depth boolean depthIsSticky boolean includeIgnored boolean makeParents public void doAdd (java.io.File, boolean, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e java.io.File parent java.io.File firstCreated boolean created java.io.File wcRoot org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.SVNException e java.io.File path boolean force boolean mkdir boolean climbUnversionedParents org.tmatesoft.svn.core.SVNDepth depth boolean depthIsSticky boolean includeIgnored boolean makeParents org.tmatesoft.svn.core.internal.wc.SVNFileType kind org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void doMarkReplaced (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo areaInfo org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea anchor java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void doRevert (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean recursive public void doRevert (java.io.File[], boolean) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths boolean recursive public void doRevert (java.io.File[], org.tmatesoft.svn.core.SVNDepth, java.util.Collection) throws org.tmatesoft.svn.core.SVNException int admLockLevel org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean useCommitTimes org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException e java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess int i java.io.File[] paths org.tmatesoft.svn.core.SVNDepth depth java.util.Collection changeLists boolean reverted public void doResolve (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean recursive public void doResolve (java.io.File, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.SVNConflictChoice) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice public void doResolve (java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, org.tmatesoft.svn.core.wc.SVNConflictChoice) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNDepth depth boolean resolveContents boolean resolveProperties org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice public void doResolve (java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, org.tmatesoft.svn.core.wc.SVNConflictChoice) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler resolveEntryHandler java.io.File path org.tmatesoft.svn.core.SVNDepth depth boolean resolveContents boolean resolveProperties boolean resolveTree org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice org.tmatesoft.svn.core.wc.SVNConflictChoice choice org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess int admLockLevel public void doLock (java.io.File[], boolean, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL topURL org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL rootURL java.io.File[] paths boolean stealLock String lockMessage java.util.Map entriesMap java.util.Map pathsRevisionsMap org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void doLock (org.tmatesoft.svn.core.SVNURL[], boolean, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path java.util.Iterator p org.tmatesoft.svn.core.SVNURL[] urls boolean stealLock String lockMessage java.util.Collection paths org.tmatesoft.svn.core.SVNURL topURL java.util.Map pathsToRevisions org.tmatesoft.svn.core.io.SVNRepository repository public void doUnlock (java.io.File[], boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL topURL org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL rootURL java.io.File[] paths boolean breakLock java.util.Map entriesMap java.util.Map pathsTokensMap org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void doUnlock (org.tmatesoft.svn.core.SVNURL[], boolean) throws org.tmatesoft.svn.core.SVNException String path java.util.Iterator p org.tmatesoft.svn.core.SVNURL[] urls boolean breakLock java.util.Collection paths org.tmatesoft.svn.core.SVNURL topURL java.util.Map pathsToTokens org.tmatesoft.svn.core.io.SVNRepository repository public void doInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.wc.ISVNInfoHandler handler public void doInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.wc.ISVNInfoHandler handler public void doInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, java.util.Collection, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.wc.SVNRevision wcRevision org.tmatesoft.svn.core.SVNURL url String changeList java.util.Iterator changeListsIter java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth java.util.Collection changeLists org.tmatesoft.svn.core.wc.ISVNInfoHandler handler boolean local java.util.Collection changelistsSet public void doInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.wc.ISVNInfoHandler handler public void doInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNLock lock int i org.tmatesoft.svn.core.SVNLock[] locks java.util.Map locksMap org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNDirEntry dirEntry java.util.Iterator ents org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNNodeKind urlKind org.tmatesoft.svn.core.io.SVNRepository parentRepos java.util.Collection dirEntries org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL headURL org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] locations org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException svne int i org.tmatesoft.svn.core.SVNLock[] locks java.util.Map locksMap org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNInfoHandler handler long[] revNum org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.SVNDirEntry rootEntry org.tmatesoft.svn.core.SVNURL reposRoot String reposUUID String baseName org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.wc.SVNInfo info public java.lang.String doGetWorkingCopyID (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File path String trailURL public java.lang.String doGetWorkingCopyID (java.io.File, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNFileType pathType org.tmatesoft.svn.core.SVNException e java.io.File path String trailURL boolean committed org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16 statusClient long[] maxRevision long[] minRevision boolean[] switched String[] wcURL StringBuffer id public org.tmatesoft.svn.core.wc.SVNInfo doInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNInfo[] result public org.tmatesoft.svn.core.wc.SVNInfo doInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNInfo[] result public void doCleanupWCProperties (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir java.io.File directory org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void doSetWCFormat (java.io.File, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException e String externalPath java.io.File externalDir int i String path String value org.tmatesoft.svn.core.internal.wc.SVNExternal[] externalDefs java.util.Iterator paths org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException e String externalPath java.io.File externalDir int i String path String value org.tmatesoft.svn.core.internal.wc.SVNExternal[] externalDefs java.util.Iterator paths java.util.Collection processedDirs java.util.Map externals java.io.File directory int format org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void doSetProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path String propName org.tmatesoft.svn.core.SVNPropertyValue propValue boolean force boolean recursive org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea addParentDirectories (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File parentPath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentDir org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File path private void doGetRevisionProperty (org.tmatesoft.svn.core.io.SVNRepository, java.lang.String, long, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue value String name org.tmatesoft.svn.core.SVNPropertyValue value java.util.Iterator names org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.io.SVNRepository repos String propName long revNumber org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler private void addDirectory (java.io.File, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e String rootRelativePath org.tmatesoft.svn.core.SVNDepth depthBelowHere org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.SVNFileType childType int i java.io.File wcRoot java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentDir boolean force boolean noIgnore org.tmatesoft.svn.core.SVNDepth depth boolean setDepth org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir java.util.Collection ignores String relativePath java.io.File[] children private void addFile (java.io.File, org.tmatesoft.svn.core.internal.wc.SVNFileType, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.wc.ISVNAddParameters$Action action org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.SVNException e String propName String propValue java.util.Iterator names java.util.Map props java.io.File path org.tmatesoft.svn.core.internal.wc.SVNFileType type org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.wc.ISVNEventHandler handler String mimeType org.tmatesoft.svn.core.wc.SVNEvent event private org.tmatesoft.svn.core.SVNURL collectLockInfo (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File[], java.util.Map, java.util.Map, boolean, boolean) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNErrorMessage err int segments int i org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNErrorMessage err java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry int i org.tmatesoft.svn.core.SVNErrorMessage err String encodedPath org.tmatesoft.svn.core.SVNURL fullURL org.tmatesoft.svn.core.internal.wc16.SVNWCClient16$LockInfo info java.util.Iterator encodedPaths org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File[] files java.util.Map lockInfo java.util.Map lockPaths boolean lock boolean stealLock String[] paths java.util.Collection condencedPaths String commonParentPath int depth org.tmatesoft.svn.core.SVNURL[] urls java.util.Collection urlPaths org.tmatesoft.svn.core.SVNURL topURL private void crawlEntries (java.io.File, org.tmatesoft.svn.core.SVNDepth, java.util.Collection, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNDepth depth java.util.Collection changeLists org.tmatesoft.svn.core.wc.ISVNInfoHandler handler org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess int admLockLevel private void reportEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.wc.ISVNInfoHandler handler private boolean doRevert (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNDepth, boolean, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNEvent event boolean reverted org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryInParent java.util.Map attributes boolean wasDeleted org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryInParent org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childEntry java.io.File childPath java.util.Iterator entries java.io.File conflictedPath java.util.Iterator conflictsIter org.tmatesoft.svn.core.SVNDepth depthBelowHere java.util.Map conflicts java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parent org.tmatesoft.svn.core.SVNDepth depth boolean useCommitTimes java.util.Collection changeLists org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.internal.wc.SVNFileType fileType boolean reverted private boolean revert (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, boolean) throws org.tmatesoft.svn.core.SVNException String propRevertPath org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties propDiff java.util.Collection propNames String propName java.util.Iterator names org.tmatesoft.svn.core.SVNProperties newProperties org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties originalBaseProperties org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties workProperties org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.SVNErrorMessage err String basePath String revertBasePath String basePath java.io.File baseFile String digest org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean useCommitTime org.tmatesoft.svn.core.internal.wc.admin.SVNLog log boolean reverted org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProperties org.tmatesoft.svn.core.SVNProperties command boolean revertBase boolean reinstallWorkingFile org.tmatesoft.svn.core.SVNProperties newEntryProperties private void setWCFormat (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, int) throws org.tmatesoft.svn.core.SVNException String areaPath org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProps org.tmatesoft.svn.core.SVNPropertyValue property org.tmatesoft.svn.core.SVNPropertyValue baseProperty org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File childDir org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area int format org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea newArea private void pushDirInfo (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNURL, java.util.Map, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDirEntry child org.tmatesoft.svn.core.SVNURL childURL String childPath String displayPath org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.wc.SVNInfo info java.util.Iterator ents org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.wc.SVNRevision rev String path org.tmatesoft.svn.core.SVNURL root String uuid org.tmatesoft.svn.core.SVNURL url java.util.Map locks org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNInfoHandler handler java.util.Collection children private void doGetRemoteProperty (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.io.SVNRepository, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue value String name org.tmatesoft.svn.core.SVNPropertyValue value java.util.Iterator names org.tmatesoft.svn.core.SVNDirEntry child org.tmatesoft.svn.core.SVNURL childURL String childPath org.tmatesoft.svn.core.SVNDepth depthBelowHere java.util.Iterator entries java.util.Collection children org.tmatesoft.svn.core.SVNPropertyValue value String name org.tmatesoft.svn.core.SVNPropertyValue value java.util.Iterator names org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url String path org.tmatesoft.svn.core.io.SVNRepository repos String propName org.tmatesoft.svn.core.wc.SVNRevision rev org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler long revNumber org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNProperties props private void doGetLocalProperty (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler, org.tmatesoft.svn.core.SVNDepth, java.util.Collection) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue val java.util.Iterator names org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties properties org.tmatesoft.svn.core.SVNProperties allProps org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area String propName boolean base org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.SVNDepth depth java.util.Collection changeLists java.io.File target org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler propGetHandler private void setLocalProperties (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err boolean modified org.tmatesoft.svn.core.SVNException svne String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator iterator java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea boolean force org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider propertyValueProvider org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties entryProperties org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.SVNProperties unmodifiableProperties org.tmatesoft.svn.core.SVNProperties changedProperties org.tmatesoft.svn.core.SVNProperties propDiff private java.util.Map fetchLockTokens (org.tmatesoft.svn.core.io.SVNRepository, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.SVNLock lock java.util.Iterator paths org.tmatesoft.svn.core.io.SVNRepository repository java.util.Map pathsTokensMap java.util.Map tokens private void doGetLocalFileContents (java.io.File, java.io.OutputStream, org.tmatesoft.svn.core.wc.SVNRevision, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String url String author String rev org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ioew java.io.IOException e org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String name String charsetProp String mimeType String eolStyle String keywords boolean special byte[] eols java.util.Map keywordsMap String time String charset java.io.OutputStream translatingStream java.io.File path java.io.OutputStream dst org.tmatesoft.svn.core.wc.SVNRevision revision boolean expandKeywords org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.InputStream input boolean hasMods org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties properties static synthetic void access$300 (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 x0 java.io.File x1 org.tmatesoft.svn.core.internal.wc.admin.SVNEntry x2 org.tmatesoft.svn.core.wc.ISVNInfoHandler x3 static synthetic void access$400 (org.tmatesoft.svn.core.internal.wc16.SVNWCClient16, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 x0 java.io.File x1 org.tmatesoft.svn.core.internal.wc.admin.SVNEntry x2 org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea x3 boolean x4 org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider x5 org.tmatesoft.svn.core.wc.ISVNPropertyHandler x6 }
org/tmatesoft/svn/core/internal/db/
org/tmatesoft/svn/core/internal/db/SVNSqlJetTableStatement.class
SVNSqlJetTableStatement.java package org.tmatesoft.svn.core.internal.db public abstract org.tmatesoft.svn.core.internal.db.SVNSqlJetTableStatement extends org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement { protected org.tmatesoft.sqljet.core.table.ISqlJetTable table protected String tableName private java.util.Collection triggers public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb Enum tableName public java.lang.String getTableName () public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb String tableName public void addTrigger (org.tmatesoft.svn.core.internal.db.ISVNSqlJetTrigger) org.tmatesoft.svn.core.internal.db.ISVNSqlJetTrigger trigger protected java.util.Collection getTriggers () public org.tmatesoft.sqljet.core.table.ISqlJetTable getTable () protected void statementStarted () org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.ISVNSqlJetTrigger trigger java.util.Iterator i$ protected void statementCompleted (org.tmatesoft.sqljet.core.SqlJetException) org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.ISVNSqlJetTrigger trigger java.util.Iterator i$ org.tmatesoft.sqljet.core.SqlJetException error public void reset () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/db/SVNSqlJetUnionStatement.class
SVNSqlJetUnionStatement.java package org.tmatesoft.svn.core.internal.db public org.tmatesoft.svn.core.internal.db.SVNSqlJetUnionStatement extends org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement { private org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement[] statements private int current public transient void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement[]) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement[] statements public boolean next () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt boolean next protected org.tmatesoft.sqljet.core.table.ISqlJetCursor getCursor () public void reset () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement[] arr$ int len$ int i$ private void updateBinds () java.util.List stmtBinds org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement[] arr$ int len$ int i$ public transient void bindf (java.lang.String, java.lang.Object[]) throws org.tmatesoft.svn.core.SVNException String format Object[] data public void bindLong (int, long) int i long v public void bindString (int, java.lang.String) int i String string public void bindNull (int) int i public void bindBlob (int, byte[]) int i byte[] serialized public void bindChecksum (int, org.tmatesoft.svn.core.wc2.SvnChecksum) int i org.tmatesoft.svn.core.wc2.SvnChecksum checksum public void bindProperties (int, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNProperties props }
org/tmatesoft/svn/core/internal/db/SVNSqlJetUpdateStatement.class
SVNSqlJetUpdateStatement.java package org.tmatesoft.svn.core.internal.db public abstract org.tmatesoft.svn.core.internal.db.SVNSqlJetUpdateStatement extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb Enum fromTable public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SvnNodesPristineTrigger trigger org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb Enum fromTable Enum indexName public void update (java.util.Map) throws org.tmatesoft.sqljet.core.SqlJetException java.util.Map values private void beforeUpdate (org.tmatesoft.sqljet.core.table.ISqlJetCursor, java.util.Map) org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.ISVNSqlJetTrigger trigger java.util.Iterator i$ org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor java.util.Map values public long exec () throws org.tmatesoft.svn.core.SVNException java.util.Map values org.tmatesoft.sqljet.core.SqlJetException e long n public abstract java.util.Map getUpdateValues () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/db/SVNSqlJetDeleteStatement.class
SVNSqlJetDeleteStatement.java package org.tmatesoft.svn.core.internal.db public org.tmatesoft.svn.core.internal.db.SVNSqlJetDeleteStatement extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SvnNodesPristineTrigger trigger org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb Enum fromTable protected void beforeDelete (org.tmatesoft.sqljet.core.table.ISqlJetCursor) org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.ISVNSqlJetTrigger trigger java.util.Iterator i$ org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e long n }
org/tmatesoft/svn/core/internal/db/SVNSqlJetInsertStatement.class
SVNSqlJetInsertStatement.java package org.tmatesoft.svn.core.internal.db public abstract org.tmatesoft.svn.core.internal.db.SVNSqlJetInsertStatement extends org.tmatesoft.svn.core.internal.db.SVNSqlJetTableStatement { protected org.tmatesoft.sqljet.core.schema.SqlJetConflictAction conflictAction public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SvnNodesPristineTrigger trigger org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb Enum tableName public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum, org.tmatesoft.sqljet.core.schema.SqlJetConflictAction) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb Enum tableName org.tmatesoft.sqljet.core.schema.SqlJetConflictAction conflictAction public long exec () throws org.tmatesoft.svn.core.SVNException long n org.tmatesoft.sqljet.core.SqlJetException e java.util.Map insertValues private void beforeInsert (org.tmatesoft.sqljet.core.schema.SqlJetConflictAction, org.tmatesoft.sqljet.core.table.ISqlJetTable, java.util.Map) org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.ISVNSqlJetTrigger trigger java.util.Iterator i$ org.tmatesoft.sqljet.core.schema.SqlJetConflictAction conflictAction org.tmatesoft.sqljet.core.table.ISqlJetTable table java.util.Map insertValues protected abstract java.util.Map getInsertValues () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/db/SVNSqlJetDb$Mode.class
SVNSqlJetDb.java package org.tmatesoft.svn.core.internal.db public final enum org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode extends java.lang.Enum { public static final enum org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode ReadOnly public static final enum org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode ReadWrite public static final enum org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode RWCreate private static final synthetic org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode[] $VALUES public static org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode[] values () public static org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode valueOf (java.lang.String) String name private void <init> (java.lang.String, int) static void <clinit> () }
org/tmatesoft/svn/core/internal/db/SVNSqlJetDb.class
SVNSqlJetDb.java package org.tmatesoft.svn.core.internal.db public org.tmatesoft.svn.core.internal.db.SVNSqlJetDb extends java.lang.Object { private static final org.tmatesoft.sqljet.core.table.ISqlJetBusyHandler DEFAULT_BUSY_HANDLER private static boolean logTransactions private org.tmatesoft.sqljet.core.table.SqlJetDb db private java.util.EnumMap statements private int openCount private org.tmatesoft.svn.core.internal.db.SVNSqlJetDb temporaryDb static final synthetic boolean $assertionsDisabled private void <init> (org.tmatesoft.sqljet.core.table.SqlJetDb) org.tmatesoft.sqljet.core.table.SqlJetDb db public org.tmatesoft.sqljet.core.table.SqlJetDb getDb () public int getOpenCount () public void close () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e public static org.tmatesoft.svn.core.internal.db.SVNSqlJetDb open (java.io.File, org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.table.SqlJetDb db org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e java.io.File sdbAbsPath org.tmatesoft.svn.core.internal.db.SVNSqlJetDb$Mode mode public org.tmatesoft.svn.core.internal.db.SVNSqlJetDb getTemporaryDb () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e public org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement getStatement (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.SvnNodesPristineTrigger trigger String targetTableName org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements statementIndex org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt private org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement prepareStatement (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements) throws org.tmatesoft.svn.core.SVNException java.lang.reflect.Constructor constructor org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.SVNErrorCode errorCode String message org.tmatesoft.svn.core.SVNErrorMessage err Exception e org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements statementIndex Class statementClass public void execStatement (org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbStatements statementIndex org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement statement public static void createSqlJetError (org.tmatesoft.sqljet.core.SqlJetException) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err public void beginTransaction (org.tmatesoft.sqljet.core.SqlJetTransactionMode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetTransactionMode mode private boolean isNeedStartTransaction (org.tmatesoft.sqljet.core.SqlJetTransactionMode) org.tmatesoft.sqljet.core.SqlJetTransactionMode mode org.tmatesoft.sqljet.core.SqlJetTransactionMode dbMode public void commit () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e public void verifyNoWork () public void runTransaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction transaction public void runTransaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction, org.tmatesoft.sqljet.core.SqlJetTransactionMode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.sqljet.core.SqlJetException e1 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction transaction org.tmatesoft.sqljet.core.SqlJetTransactionMode mode public void rollback () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.sqljet.core.SqlJetException e1 public boolean hasTable (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.sqljet.core.SqlJetException e String tableName private void logCall (java.lang.String, int) int i StackTraceElement[] trace StringBuffer sb String message int count private static boolean isLogTransactions () static void <clinit> () }
org/tmatesoft/svn/core/internal/db/SVNSqlJetStatement.class
SVNSqlJetStatement.java package org.tmatesoft.svn.core.internal.db public abstract org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement extends java.lang.Object { protected org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb private org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor protected java.util.List binds protected org.tmatesoft.sqljet.core.SqlJetTransactionMode transactionMode protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException public transient long insert (java.lang.Object[]) throws org.tmatesoft.svn.core.SVNException Object[] data public long exec () throws org.tmatesoft.svn.core.SVNException public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public java.util.List getBinds () public boolean isNeedsReset () public void reset () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e public boolean next () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e public boolean eof () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e public transient void bindf (java.lang.String, java.lang.Object[]) throws org.tmatesoft.svn.core.SVNException char fmt int i String format Object[] data int n int length private void adjustBinds (int) int n int i int size public void bindNull (int) int i public void bindLong (int, long) int i long v public void bindString (int, java.lang.String) int i String string public void bindProperties (int, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNProperties props public void bindChecksum (int, org.tmatesoft.svn.core.wc2.SvnChecksum) int i org.tmatesoft.svn.core.wc2.SvnChecksum checksum public void bindBlob (int, byte[]) int i byte[] serialized public void bindRevision (int, long) int i long revision protected java.lang.Object getBind (int) int i public long count () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e public java.lang.Object getColumn (java.lang.Enum) throws org.tmatesoft.svn.core.SVNException Enum f protected java.lang.Object getColumn (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e String f public long getColumnLong (java.lang.Enum) throws org.tmatesoft.svn.core.SVNException Enum f protected long getColumnLong (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e String f public java.lang.String getColumnString (java.lang.Enum) throws org.tmatesoft.svn.core.SVNException Enum f protected java.lang.String getColumnString (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e String f public boolean isColumnNull (java.lang.Enum) throws org.tmatesoft.svn.core.SVNException Enum f protected boolean isColumnNull (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e String f public byte[] getColumnBlob (java.lang.Enum) throws org.tmatesoft.svn.core.SVNException Enum f protected byte[] getColumnBlob (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e String f public boolean getColumnBoolean (java.lang.Enum) throws org.tmatesoft.svn.core.SVNException Enum f public org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement getJoinedStatement (java.lang.String) throws org.tmatesoft.svn.core.SVNException String joinedTable public org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement getJoinedStatement (java.lang.Enum) throws org.tmatesoft.svn.core.SVNException Enum joinedTable public org.tmatesoft.svn.core.SVNProperties getColumnProperties (java.lang.Enum) throws org.tmatesoft.svn.core.SVNException Enum f public boolean hasColumnProperties (java.lang.Enum) throws org.tmatesoft.svn.core.SVNException Enum f protected org.tmatesoft.svn.core.SVNProperties getColumnProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String f byte[] val protected boolean hasColumnProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String f byte[] val public static org.tmatesoft.svn.core.SVNProperties parseProperties (byte[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err byte[] val org.tmatesoft.svn.core.internal.util.SVNSkel skel public long done () throws org.tmatesoft.svn.core.SVNException public void nextRow () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err public long getColumnRevnum (java.lang.Enum) throws org.tmatesoft.svn.core.SVNException Enum f protected org.tmatesoft.sqljet.core.table.ISqlJetCursor getCursor () protected void setCursor (org.tmatesoft.sqljet.core.table.ISqlJetCursor) org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor public java.util.Map getRowValues () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/db/SVNSqlJetSelectStatement.class
SVNSqlJetSelectStatement.java package org.tmatesoft.svn.core.internal.db public org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement extends org.tmatesoft.svn.core.internal.db.SVNSqlJetTableStatement { private String indexName private java.util.Map rowValues public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb Enum fromTable public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb Enum fromTable Enum indexName public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb String fromTable public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb String fromTable String indexName protected org.tmatesoft.sqljet.core.table.ISqlJetCursor openCursor () throws org.tmatesoft.svn.core.SVNException Object[] where org.tmatesoft.sqljet.core.SqlJetException e private boolean isPathScoped () throws org.tmatesoft.svn.core.SVNException Object[] where protected java.lang.String getPathScope () protected boolean isStrictiDescendant () protected java.lang.String getIndexName () public void setIndexName (java.lang.String) String indexName protected java.lang.Object[] getWhere () throws org.tmatesoft.svn.core.SVNException public boolean next () throws org.tmatesoft.svn.core.SVNException boolean next private boolean pathScopeMatches () throws org.tmatesoft.svn.core.SVNException String rowPath private boolean pathIsDecendant () throws org.tmatesoft.svn.core.SVNException String rowPath private java.lang.String getRowPath () protected boolean isFilterPassed () throws org.tmatesoft.svn.core.SVNException public boolean eof () throws org.tmatesoft.svn.core.SVNException boolean eof private void loadRowValues (boolean) throws org.tmatesoft.svn.core.SVNException boolean has public java.util.Map getRowValues2 (java.util.Map) throws org.tmatesoft.svn.core.SVNException String colName int i Object[] values java.util.List columns org.tmatesoft.sqljet.core.SqlJetException e java.util.Map v public java.util.Map getRowValues () throws org.tmatesoft.svn.core.SVNException String colName org.tmatesoft.sqljet.core.SqlJetValueType fieldType org.tmatesoft.sqljet.core.schema.ISqlJetColumnDef column java.util.Iterator i$ java.util.List columns org.tmatesoft.sqljet.core.SqlJetException e java.util.HashMap v protected java.lang.Object getColumn (java.lang.String) throws org.tmatesoft.svn.core.SVNException String f protected long getColumnLong (java.lang.String) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe String f Object v protected java.lang.String getColumnString (java.lang.String) throws org.tmatesoft.svn.core.SVNException String f Object v protected boolean isColumnNull (java.lang.String) throws org.tmatesoft.svn.core.SVNException String f protected byte[] getColumnBlob (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.internal.ISqlJetMemoryPointer buffer java.io.UnsupportedEncodingException e String f Object v public void reset () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/db/SVNSqlJetTransaction.class
SVNSqlJetTransaction.java package org.tmatesoft.svn.core.internal.db public abstract org.tmatesoft.svn.core.internal.db.SVNSqlJetTransaction extends java.lang.Object { public abstract void transaction (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/db/SVNSqlJetSelectFieldsStatement.class
SVNSqlJetSelectFieldsStatement.java package org.tmatesoft.svn.core.internal.db public abstract org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectFieldsStatement extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { protected final java.util.List fields public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb Enum fromTable public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb String fromTable public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb, java.lang.Enum, java.lang.Enum) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb Enum fromTable Enum indexName protected abstract void defineFields () public long getColumnLong (int) throws org.tmatesoft.svn.core.SVNException int f public java.lang.String getColumnString (int) throws org.tmatesoft.svn.core.SVNException int f public boolean isColumnNull (int) throws org.tmatesoft.svn.core.SVNException int f public byte[] getColumnBlob (int) throws org.tmatesoft.svn.core.SVNException int f protected void checkField (int) throws org.tmatesoft.svn.core.SVNException int f protected java.lang.String getFieldName (int) throws org.tmatesoft.svn.core.SVNException int f }
org/tmatesoft/svn/core/internal/db/ISVNSqlJetTrigger.class
ISVNSqlJetTrigger.java package org.tmatesoft.svn.core.internal.db public abstract org.tmatesoft.svn.core.internal.db.ISVNSqlJetTrigger extends java.lang.Object { public abstract void beforeUpdate (org.tmatesoft.sqljet.core.table.ISqlJetCursor, java.util.Map) throws org.tmatesoft.sqljet.core.SqlJetException public abstract void beforeDelete (org.tmatesoft.sqljet.core.table.ISqlJetCursor) throws org.tmatesoft.sqljet.core.SqlJetException public abstract void beforeInsert (org.tmatesoft.sqljet.core.schema.SqlJetConflictAction, org.tmatesoft.sqljet.core.table.ISqlJetTable, java.util.Map) throws org.tmatesoft.sqljet.core.SqlJetException public abstract void statementStarted (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException public abstract void statementCompleted (org.tmatesoft.sqljet.core.table.SqlJetDb, org.tmatesoft.sqljet.core.SqlJetException) throws org.tmatesoft.sqljet.core.SqlJetException }
org/tmatesoft/svn/core/internal/util/
org/tmatesoft/svn/core/internal/util/SVNXMLUtil.class
SVNXMLUtil.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNXMLUtil extends java.lang.Object { public static final java.util.Map PREFIX_MAP public static final String DAV_NAMESPACE_PREFIX public static final String SVN_NAMESPACE_PREFIX public static final String SVN_DAV_PROPERTY_PREFIX public static final String SVN_CUSTOM_PROPERTY_PREFIX public static final String SVN_SVN_PROPERTY_PREFIX public static final String SVN_APACHE_PROPERTY_PREFIX private static final String FULL_XML_HEADER public static final String DEFAULT_XML_HEADER public static final int XML_STYLE_NORMAL public static final int XML_STYLE_PROTECT_CDATA public static final int XML_STYLE_SELF_CLOSING public static final int XML_STYLE_ATTRIBUTE_BREAKS_LINE public void <init> () public static java.lang.StringBuffer addXMLHeader (java.lang.StringBuffer, boolean) StringBuffer target boolean addUTFAttribute public static java.lang.StringBuffer addXMLHeader (java.lang.StringBuffer) StringBuffer target public static java.lang.StringBuffer openNamespaceDeclarationTag (java.lang.String, java.lang.String, java.util.Collection, java.util.Map, java.util.Map, java.lang.StringBuffer, boolean) org.tmatesoft.svn.core.internal.io.dav.DAVElement currentElement Object item String currentNamespace java.util.Iterator iterator java.util.Collection usedNamespaces java.util.Map$Entry entry String name String value java.util.Iterator iterator String prefix String header java.util.Collection namespaces java.util.Map prefixMap java.util.Map attrs StringBuffer target boolean addEOL public static java.lang.StringBuffer openNamespaceDeclarationTag (java.lang.String, java.lang.String, java.util.Collection, java.util.Map, java.lang.StringBuffer) String prefix String header java.util.Collection namespaces java.util.Map prefixMap StringBuffer target public static java.lang.StringBuffer addXMLFooter (java.lang.String, java.lang.String, java.lang.StringBuffer) String prefix String header StringBuffer target public static java.lang.StringBuffer openCDataTag (java.lang.String, java.lang.String, java.lang.String, java.lang.StringBuffer) String prefix String tagName String cdata StringBuffer target public static java.lang.StringBuffer openCDataTag (java.lang.String, java.lang.String, java.lang.StringBuffer) String tagName String cdata StringBuffer target public static java.lang.StringBuffer openCDataTag (java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.StringBuffer) String prefix String tagName String cdata String attr String value StringBuffer target java.util.Map attributes public static java.lang.StringBuffer openCDataTag (java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean, boolean, java.lang.StringBuffer) String prefix String tagName String cdata String attr String value boolean escapeQuotes boolean encodeCDATA StringBuffer target java.util.Map attributes public static java.lang.StringBuffer openCDataTag (java.lang.String, java.lang.String, java.lang.String, java.util.Map, java.lang.StringBuffer) String prefix String tagName String cdata java.util.Map attributes StringBuffer target public static java.lang.StringBuffer openCDataTag (java.lang.String, java.lang.String, java.lang.String, java.util.Map, boolean, boolean, java.lang.StringBuffer) String prefix String tagName String cdata java.util.Map attributes boolean escapeQuotes boolean encodeCDATA StringBuffer target public static java.lang.StringBuffer openXMLTag (java.lang.String, java.lang.String, int, java.lang.String, java.lang.String, java.lang.StringBuffer) String prefix String tagName int style String attr String value StringBuffer target java.util.Map attributes public static java.lang.StringBuffer openXMLTag (java.lang.String, java.lang.String, int, java.util.Map, java.lang.StringBuffer) java.util.Map$Entry entry String name String value java.util.Iterator iterator String prefix String tagName int style java.util.Map attributes StringBuffer target public static java.lang.StringBuffer closeXMLTag (java.lang.String, java.lang.String, java.lang.StringBuffer) String prefix String tagName StringBuffer target public static java.lang.StringBuffer closeXMLTag (java.lang.String, java.lang.String, java.lang.StringBuffer, boolean) String prefix String tagName StringBuffer target boolean addEOL static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNMergeInfoUtil$ElideMergeInfoEditor$ElideMergeInfoCatalogDirBaton.class
SVNMergeInfoUtil.java package org.tmatesoft.svn.core.internal.util org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor$ElideMergeInfoCatalogDirBaton extends java.lang.Object { private String myInheritedMergeInfoPath final synthetic org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor this$0 private void <init> (org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor) synthetic void <init> (org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor, org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$1) org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor x0 org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$1 x1 static synthetic java.lang.String access$102 (org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor$ElideMergeInfoCatalogDirBaton, java.lang.String) org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor$ElideMergeInfoCatalogDirBaton x0 String x1 static synthetic java.lang.String access$100 (org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor$ElideMergeInfoCatalogDirBaton) org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor$ElideMergeInfoCatalogDirBaton x0 }
org/tmatesoft/svn/core/internal/util/SVNDate.class
SVNDate.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNDate extends java.util.Date { private static final long serialVersionUID public static final org.tmatesoft.svn.core.internal.util.SVNDate NULL private static final java.util.Calendar CALENDAR static final java.text.DateFormat SVN_FORMAT private static final java.text.DateFormat ISO8601_FORMAT private static final java.text.DateFormat RFC1123_FORMAT private static final java.text.DateFormat CUSTOM_FORMAT private static final java.text.DateFormat HUMAN_FORMAT private static final java.text.DateFormat SHORT_FORMAT private static final java.text.DateFormat CONSOLE_DIFF_DATE_FORMAT private static final java.text.DateFormat CONSOLE_LONG_DATE_FORMAT private static final java.text.DateFormat CONSOLE_SHORT_DATE_FORMAT public static final char[] DATE_SEPARATORS private int myMicroSeconds public void <init> (long, int) long time int micro public java.lang.String format () StringBuffer formatted int m1 int m2 int m3 public static java.lang.String formatDate (java.util.Date) java.util.Date date public static java.lang.String formatDate (java.util.Date, boolean) org.tmatesoft.svn.core.internal.util.SVNDate extendedDate java.util.Date date boolean formatZeroDate public static java.lang.String formatRFC1123Date (java.util.Date) java.util.Date date public static java.lang.String formatHumanDate (java.util.Date, org.tmatesoft.svn.core.wc.ISVNOptions) java.util.Date date org.tmatesoft.svn.core.wc.ISVNOptions options java.text.DateFormat df public static java.lang.String formatShortDate (java.util.Date) java.util.Date date public static java.lang.String formatCustomDate (java.util.Date) java.util.Date date public static java.lang.String formatConsoleDiffDate (java.util.Date) java.util.Date date public static java.lang.String formatConsoleLongDate (java.util.Date) java.util.Date date public static java.lang.String formatConsoleShortDate (java.util.Date) java.util.Date date public static org.tmatesoft.svn.core.internal.util.SVNDate parseDate (java.lang.String) Throwable th String str public static java.util.Date parseDateString (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err Throwable th String str private static org.tmatesoft.svn.core.internal.util.SVNDate parseDatestamp (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String segment String segment java.util.TimeZone oldTimeZone org.tmatesoft.svn.core.internal.util.SVNDate resultDate String str int index int charIndex int startIndex int[] result int microseconds int timeZoneInd int year int month int date int hour int min int sec int ms String timeZoneId public static long parseDateAsMilliseconds (java.lang.String) NumberFormatException nfe NumberFormatException nfe String segment String str int index int charIndex int startIndex int[] result int year int month int date int hour int min int sec int ms public static org.tmatesoft.svn.core.internal.util.SVNDate fromDate (java.util.Date) java.util.Date d public int hashCode () public boolean equals (java.lang.Object) org.tmatesoft.svn.core.internal.util.SVNDate date Object obj public boolean before (java.util.Date) java.util.Date when public boolean after (java.util.Date) java.util.Date when public int compareTo (java.util.Date) org.tmatesoft.svn.core.internal.util.SVNDate date java.util.Date anotherDate int result public long getTimeInMicros () public volatile synthetic int compareTo (java.lang.Object) Object x0 static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNStreamGobbler.class
SVNStreamGobbler.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNStreamGobbler extends java.lang.Thread { private java.io.InputStreamReader is private final StringBuffer result private java.io.IOException error private boolean myIsEOF private boolean myIsClosed public void <init> (java.io.InputStream) java.io.UnsupportedEncodingException e java.io.InputStream is public void run () int r java.io.IOException e char[] buffer public void waitFor () InterruptedException e public void close () public java.lang.String getResult () public java.io.IOException getError () }
org/tmatesoft/svn/core/internal/util/SVNHashMap$TableIterator.class
SVNHashMap.java package org.tmatesoft.svn.core.internal.util org.tmatesoft.svn.core.internal.util.SVNHashMap$TableIterator extends java.lang.Object implements java.util.Iterator { private int index private org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry entry private org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry previous private int modCount final synthetic org.tmatesoft.svn.core.internal.util.SVNHashMap this$0 public void <init> (org.tmatesoft.svn.core.internal.util.SVNHashMap) public boolean hasNext () public java.lang.Object next () public void remove () }
org/tmatesoft/svn/core/internal/util/CountingInputStream.class
CountingInputStream.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.CountingInputStream extends java.io.FilterInputStream { private long myBytesRead public void <init> (java.io.InputStream) java.io.InputStream in public long getBytesRead () public int read () throws java.io.IOException int r public int read (byte[]) throws java.io.IOException byte[] b int count public int read (byte[], int, int) throws java.io.IOException byte[] b int off int len int count }
org/tmatesoft/svn/core/internal/util/SVNHashMap$TableEntry.class
SVNHashMap.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry extends java.lang.Object implements java.util.Map$Entry { private org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry next private Object key private Object value private int hash protected void <init> () public void <init> (java.lang.Object, java.lang.Object, int) Object key Object value int hash protected void init (java.lang.Object, java.lang.Object, int) Object key Object value int hash public java.lang.Object setValue (java.lang.Object) Object value Object oldValue public java.lang.Object getValue () public java.lang.Object getKey () public int hashCode () public boolean equals (java.lang.Object) Object v1 Object v2 Object o java.util.Map$Entry e Object k1 Object k2 static synthetic int access$000 (org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry) org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry x0 static synthetic java.lang.Object access$100 (org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry) org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry x0 static synthetic org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry access$200 (org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry) org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry x0 static synthetic org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry access$202 (org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry, org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry) org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry x0 org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry x1 }
org/tmatesoft/svn/core/internal/util/SVNURLUtil.class
SVNURLUtil.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNURLUtil extends java.lang.Object { public void <init> () public static java.lang.String getRelativeURL (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, boolean) org.tmatesoft.svn.core.SVNURL parent org.tmatesoft.svn.core.SVNURL child boolean encoded String parentURLAsString String childURLAsString String relativePath public static boolean isAncestor (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL ancestor org.tmatesoft.svn.core.SVNURL descendant String aStr String dStr public static org.tmatesoft.svn.core.SVNURL getCommonURLAncestor (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.SVNURL url2 String path1 String path2 String commonPath public static org.tmatesoft.svn.core.SVNURL condenceURLs (org.tmatesoft.svn.core.SVNURL[], java.util.Collection, boolean) int i org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.SVNURL common int j org.tmatesoft.svn.core.SVNURL url1 int i org.tmatesoft.svn.core.SVNURL url int j org.tmatesoft.svn.core.SVNURL url String path int i org.tmatesoft.svn.core.SVNURL[] urls java.util.Collection condencedPaths boolean removeRedundantURLs org.tmatesoft.svn.core.SVNURL rootURL }
org/tmatesoft/svn/core/internal/util/SVNUUIDGenerator.class
SVNUUIDGenerator.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNUUIDGenerator extends java.lang.Object { private static final int NODE_LENGTH private static byte[] ourUUIDStateNode private static long ourUUIDStateSeqNum private static long ourLastGeneratedTime private static long ourFudgeFactor public void <init> () private static long getCurrentTime () long currentTime public static java.lang.String generateUUIDString () throws org.tmatesoft.svn.core.SVNException public static synchronized byte[] generateUUID () throws org.tmatesoft.svn.core.SVNException long timestamp byte[] uuidData public static java.lang.String formatUUID (byte[]) byte[] tmpBuf byte[] uuid StringBuffer sb private static void initState () throws org.tmatesoft.svn.core.SVNException long currentTime java.util.Random randomGen private static void getRandomInfo (byte[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.security.NoSuchAlgorithmException e byte[] node java.rmi.server.UID uid java.security.MessageDigest digest byte[] seed int numToCopy static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNMergeInfoUtil$ElideMergeInfoCatalogHandler.class
SVNMergeInfoUtil.java package org.tmatesoft.svn.core.internal.util org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoCatalogHandler extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler { private java.util.Map myMergeInfoCatalog private java.util.List myElidablePaths public void <init> (java.util.Map) java.util.Map mergeInfoCatalog public boolean handleCommitPath (java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.io.ISVNEditor editor org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor elideEditor String inheritedMergeInfoPath String pathSuffix boolean elides public java.util.List getElidablePaths () }
org/tmatesoft/svn/core/internal/util/SVNSSLUtil$CertificateNotTrustedException.class
SVNSSLUtil.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNSSLUtil$CertificateNotTrustedException extends java.security.cert.CertificateException { private static final long serialVersionUID public void <init> () public void <init> (java.lang.String) String msg }
org/tmatesoft/svn/core/internal/util/SVNCharsetOutputStream.class
SVNCharsetOutputStream.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNCharsetOutputStream extends java.io.FilterOutputStream { private static final byte[] EMPTY_ARRAY private org.tmatesoft.svn.core.internal.util.SVNCharsetConvertor myCharsetConvertor private java.nio.ByteBuffer myOutputBuffer private boolean myFlushed public void <init> (java.io.OutputStream, java.nio.charset.Charset, java.nio.charset.Charset, java.nio.charset.CodingErrorAction, java.nio.charset.CodingErrorAction) java.io.OutputStream out java.nio.charset.Charset inputCharset java.nio.charset.Charset outputCharset java.nio.charset.CodingErrorAction malformedInputAction java.nio.charset.CodingErrorAction unmappableCharAction java.nio.charset.CharsetDecoder decoder java.nio.charset.CharsetEncoder encoder public void write (int) throws java.io.IOException int b public void write (byte[]) throws java.io.IOException byte[] b public void write (byte[], int, int) throws java.io.IOException org.tmatesoft.svn.core.SVNException e byte[] b int off int len public void flush () throws java.io.IOException org.tmatesoft.svn.core.SVNException e public void close () throws java.io.IOException public java.lang.String toString () StringBuffer buffer static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNFormatUtil.class
SVNFormatUtil.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNFormatUtil extends java.lang.Object { private static char[] HEX public void <init> () public static java.lang.String formatString (java.lang.String, int, boolean) String str int chars boolean left public static java.lang.String formatString (java.lang.String, int, boolean, boolean) int i String str int chars boolean left boolean cut StringBuffer formatted public static java.lang.String getHexNumberFromByte (byte) byte b int lo int hi public static void appendHexNumber (java.lang.StringBuffer, byte) StringBuffer target byte b int lo int hi static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNPathUtil.class
SVNPathUtil.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNPathUtil extends java.lang.Object { public static final java.util.Comparator PATH_COMPARATOR public void <init> () public static boolean isCanonical (java.lang.String) String path public static void checkPathIsValid (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err char ch int i String path public static java.lang.String getAbsolutePath (java.lang.String) String path public static java.lang.String validateFilePath (java.lang.String) java.io.File root String segment java.util.StringTokenizer tokens String token java.util.Iterator tokens String path StringBuffer result java.util.List segments public static java.lang.String canonicalizePath (java.lang.String) int nextIndex int slashLength int segmentLength String path boolean isUrl StringBuffer result int i String scheme int index int segmentCount public static java.lang.String canonicalizeAbsolutePath (java.lang.String) char ch int i String path StringBuffer canonicalizedPath boolean skipSlashes public static java.lang.String append (java.lang.String, java.lang.String) char ch int i char ch int i String f String s int l1 int l2 char[] r int index public static boolean isSinglePathComponent (java.lang.String) String name public static java.lang.String head (java.lang.String) int i String path public static java.lang.String removeHead (java.lang.String) int ind int i String path public static java.lang.String tail (java.lang.String) int i String path int index public static java.lang.String removeTail (java.lang.String) String path int index public static java.lang.String getCommonPathAncestor (java.lang.String, java.lang.String) String path1 String path2 int index int separatorIndex public static java.lang.String condencePaths (java.lang.String[], java.util.Collection, boolean) String url int i String path2 String common int j String path1 int i String path int j String path int i String[] paths java.util.Collection condencedPaths boolean removeRedundantPaths String rootPath public static int getSegmentsCount (java.lang.String) int i String path int count public static boolean isAncestor (java.lang.String, java.lang.String) String encodedSlash String parentPath String childPath public static java.lang.String getPathAsChild (java.lang.String, java.lang.String) String path String pathChild public static java.lang.String getRelativePath (java.lang.String, java.lang.String) String parent String child String relativePath public static boolean isURL (java.lang.String) String pathOrUrl public static boolean isWithinBasePath (java.lang.String, java.lang.String) String basePath String path public static boolean isAbsolute (java.lang.String) char ch0 char ch1 String path static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNEntryHashMap$StringAsArray.class
SVNEntryHashMap.java package org.tmatesoft.svn.core.internal.util org.tmatesoft.svn.core.internal.util.SVNEntryHashMap$StringAsArray extends java.lang.Object { private Object[] segments private int hashCode public void <init> (java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNObjectsPool) int i String str org.tmatesoft.svn.core.internal.wc.SVNObjectsPool pool public boolean equals (java.lang.Object) Object other public int hashCode () public java.lang.String toString () int i StringBuffer str }
org/tmatesoft/svn/core/internal/util/SVNThreadPool.class
SVNThreadPool.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNThreadPool extends java.lang.Object implements org.tmatesoft.svn.core.internal.util.ISVNThreadPool { private java.util.concurrent.ThreadPoolExecutor myThreadPool private org.tmatesoft.svn.core.internal.util.SVNThreadPool$CustomThreadFactory myThreadFactory private org.tmatesoft.svn.core.internal.util.ISVNThreadPool myFailSafePool public void <init> () public org.tmatesoft.svn.core.internal.util.ISVNTask run (java.lang.Runnable, boolean) java.util.concurrent.Future future java.util.concurrent.RejectedExecutionException e Runnable task boolean daemon java.util.concurrent.ThreadPoolExecutor threadPool org.tmatesoft.svn.core.internal.util.ISVNThreadPool failSafePool private synchronized org.tmatesoft.svn.core.internal.util.ISVNThreadPool getFailSafePool () private synchronized java.util.concurrent.ThreadPoolExecutor getThreadPool (boolean) boolean daemon org.tmatesoft.svn.core.internal.util.SVNThreadPool$CustomThreadFactory threadFactory private synchronized org.tmatesoft.svn.core.internal.util.SVNThreadPool$CustomThreadFactory getThreadFactory (boolean) boolean daemon }
org/tmatesoft/svn/core/internal/util/ISVNThreadPool.class
ISVNThreadPool.java package org.tmatesoft.svn.core.internal.util public abstract org.tmatesoft.svn.core.internal.util.ISVNThreadPool extends java.lang.Object { public abstract org.tmatesoft.svn.core.internal.util.ISVNTask run (java.lang.Runnable, boolean) }
org/tmatesoft/svn/core/internal/util/SVNMergeInfoUtil$ElideMergeInfoEditor.class
SVNMergeInfoUtil.java package org.tmatesoft.svn.core.internal.util org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private java.util.Map myMergeInfoCatalog private org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor$ElideMergeInfoCatalogDirBaton myCurrentDirBaton public void <init> (java.util.Map) java.util.Map mergeInfoCatalog public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public void closeDir () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String textChecksum public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor$ElideMergeInfoCatalogDirBaton dirBaton public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public java.lang.String getInheritedMergeInfoPath () }
org/tmatesoft/svn/core/internal/util/SVNHashMap$EntrySet.class
SVNHashMap.java package org.tmatesoft.svn.core.internal.util org.tmatesoft.svn.core.internal.util.SVNHashMap$EntrySet extends java.util.AbstractSet { final synthetic org.tmatesoft.svn.core.internal.util.SVNHashMap this$0 private void <init> (org.tmatesoft.svn.core.internal.util.SVNHashMap) public java.util.Iterator iterator () public int size () public boolean contains (java.lang.Object) Object value java.util.Map$Entry entry Object o public boolean remove (java.lang.Object) java.util.Map$Entry entry Object o public void clear () synthetic void <init> (org.tmatesoft.svn.core.internal.util.SVNHashMap, org.tmatesoft.svn.core.internal.util.SVNHashMap$1) org.tmatesoft.svn.core.internal.util.SVNHashMap x0 org.tmatesoft.svn.core.internal.util.SVNHashMap$1 x1 }
org/tmatesoft/svn/core/internal/util/SVNEntryHashMap$PooledTableEntry.class
SVNEntryHashMap.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNEntryHashMap$PooledTableEntry extends org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry { private org.tmatesoft.svn.core.internal.wc.SVNObjectsPool myObjectsPool public void <init> (org.tmatesoft.svn.core.internal.wc.SVNObjectsPool, java.lang.Object, java.lang.Object, int) org.tmatesoft.svn.core.internal.wc.SVNObjectsPool pool Object key Object value int hash public java.lang.Object setValue (java.lang.Object) Object value Object valueForPool public java.lang.Object getValue () private java.lang.Object getRealValue (java.lang.Object) Object value private java.lang.Object getPoolValue (java.lang.Object, java.lang.Object) int i String[] array Object key Object value }
org/tmatesoft/svn/core/internal/util/SVNLogInputStream.class
SVNLogInputStream.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNLogInputStream extends java.io.InputStream { private java.io.OutputStream myLog private java.io.InputStream myIn public void <init> (java.io.InputStream, java.io.OutputStream) java.io.InputStream in java.io.OutputStream log public long skip (long) throws java.io.IOException long n public void close () throws java.io.IOException java.io.IOException e java.io.IOException e java.io.IOException e public int read (byte[], int, int) throws java.io.IOException java.io.IOException e java.io.IOException e byte[] b int off int len int read public int read () throws java.io.IOException java.io.IOException e java.io.IOException e int read public void flushBuffer () java.io.IOException e }
org/tmatesoft/svn/core/internal/util/SVNSocketConnection.class
SVNSocketConnection.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNSocketConnection extends java.lang.Object implements java.lang.Runnable { private java.net.Socket mySocket private java.net.InetSocketAddress myAddress private int myTimeout private java.io.IOException myError private volatile boolean myIsSocketConnected public void <init> (java.net.Socket, java.net.InetSocketAddress, int) java.net.Socket socket java.net.InetSocketAddress address int timeout public java.io.IOException getError () public boolean isSocketConnected () InterruptedException e public void run () java.io.IOException e }
org/tmatesoft/svn/core/internal/util/SVNCharsetConvertor.class
SVNCharsetConvertor.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNCharsetConvertor extends java.lang.Object { private static final int DEFAULT_BUFFER_CAPACITY private java.nio.charset.CharsetDecoder myDecoder private java.nio.charset.CharsetEncoder myEncoder private java.nio.CharBuffer myCharBuffer private java.nio.ByteBuffer myInputByteBuffer public void <init> (java.nio.charset.CharsetDecoder, java.nio.charset.CharsetEncoder) java.nio.charset.CharsetDecoder decoder java.nio.charset.CharsetEncoder encoder public org.tmatesoft.svn.core.internal.util.SVNCharsetConvertor reset () public java.nio.ByteBuffer convertChunk (byte[], int, int, java.nio.ByteBuffer, boolean) throws org.tmatesoft.svn.core.SVNException byte[] b int offset int length java.nio.ByteBuffer dst boolean endOfInput java.nio.charset.CoderResult result public java.nio.ByteBuffer flush (java.nio.ByteBuffer) throws org.tmatesoft.svn.core.SVNException java.nio.charset.CoderResult result java.nio.ByteBuffer dst private static java.nio.ByteBuffer allocate (java.nio.ByteBuffer, int) java.nio.ByteBuffer expandedBuffer java.nio.ByteBuffer buffer int length private static java.nio.CharBuffer allocate (java.nio.CharBuffer, int) java.nio.CharBuffer expandedBuffer java.nio.CharBuffer buffer int length private static void throwException (java.nio.charset.CoderResult) throws org.tmatesoft.svn.core.SVNException java.nio.charset.CharacterCodingException e java.nio.charset.CoderResult result public java.lang.String toString () StringBuffer buffer }
org/tmatesoft/svn/core/internal/util/ISVNTask.class
ISVNTask.java package org.tmatesoft.svn.core.internal.util public abstract org.tmatesoft.svn.core.internal.util.ISVNTask extends java.lang.Object { public abstract void cancel (boolean) }
org/tmatesoft/svn/core/internal/util/SVNHashMap$ValueCollection.class
SVNHashMap.java package org.tmatesoft.svn.core.internal.util org.tmatesoft.svn.core.internal.util.SVNHashMap$ValueCollection extends java.util.AbstractCollection { final synthetic org.tmatesoft.svn.core.internal.util.SVNHashMap this$0 private void <init> (org.tmatesoft.svn.core.internal.util.SVNHashMap) public java.util.Iterator iterator () public int size () public boolean contains (java.lang.Object) Object o public void clear () synthetic void <init> (org.tmatesoft.svn.core.internal.util.SVNHashMap, org.tmatesoft.svn.core.internal.util.SVNHashMap$1) org.tmatesoft.svn.core.internal.util.SVNHashMap x0 org.tmatesoft.svn.core.internal.util.SVNHashMap$1 x1 }
org/tmatesoft/svn/core/internal/util/SVNThreadPool$CustomThreadFactory.class
SVNThreadPool.java package org.tmatesoft.svn.core.internal.util org.tmatesoft.svn.core.internal.util.SVNThreadPool$CustomThreadFactory extends java.lang.Object implements java.util.concurrent.ThreadFactory { private static final java.util.concurrent.atomic.AtomicInteger ourPoolNumber private final ThreadGroup myGroup private final java.util.concurrent.atomic.AtomicInteger myThreadNumber private final String myNamePrefix private boolean myIsDaemon void <init> (boolean) boolean daemon SecurityManager s public void setIsDaemon (boolean) boolean isDaemon public java.lang.Thread newThread (java.lang.Runnable) Runnable task Thread thread static void <clinit> () }
org/tmatesoft/svn/core/internal/util/FixedSizeInputStream.class
FixedSizeInputStream.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.FixedSizeInputStream extends java.io.InputStream { private long myLength private java.io.InputStream mySource public void <init> (java.io.InputStream, long) java.io.InputStream source long length public int read () throws java.io.IOException int read public int read (byte[], int, int) throws java.io.IOException byte[] b int off int len long toRead public void close () java.io.IOException e static void consumeRemaining (java.io.InputStream) throws java.io.IOException java.io.InputStream is byte[] buffer }
org/tmatesoft/svn/core/internal/util/SVNHashMap$KeyIterator.class
SVNHashMap.java package org.tmatesoft.svn.core.internal.util org.tmatesoft.svn.core.internal.util.SVNHashMap$KeyIterator extends org.tmatesoft.svn.core.internal.util.SVNHashMap$TableIterator { final synthetic org.tmatesoft.svn.core.internal.util.SVNHashMap this$0 private void <init> (org.tmatesoft.svn.core.internal.util.SVNHashMap) public java.lang.Object next () org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry next synthetic void <init> (org.tmatesoft.svn.core.internal.util.SVNHashMap, org.tmatesoft.svn.core.internal.util.SVNHashMap$1) org.tmatesoft.svn.core.internal.util.SVNHashMap x0 org.tmatesoft.svn.core.internal.util.SVNHashMap$1 x1 }
org/tmatesoft/svn/core/internal/util/SVNEmptyThreadPool.class
SVNEmptyThreadPool.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNEmptyThreadPool extends java.lang.Object implements org.tmatesoft.svn.core.internal.util.ISVNThreadPool { public void <init> () public org.tmatesoft.svn.core.internal.util.ISVNTask run (java.lang.Runnable, boolean) Runnable task boolean daemon Thread thread }
org/tmatesoft/svn/core/internal/util/SVNHashMap.class
SVNHashMap.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNHashMap extends java.lang.Object implements java.util.Map java.lang.Cloneable java.io.Serializable { private static final long serialVersionUID private static final Object NULL_KEY private static final int INITIAL_CAPACITY private static boolean ourIsCompatibilityMode private transient org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry[] myTable private transient int myEntryCount private transient int myModCount private volatile transient java.util.Set myKeySet private volatile transient java.util.Set myEntrySet private volatile transient java.util.Collection myValueCollection public void <init> () public void <init> (java.util.Map) java.util.Map map protected void init () public void clear () public boolean isEmpty () public boolean containsKey (java.lang.Object) Object key int hash int index org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry entry public boolean containsValue (java.lang.Object) org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry entry int i Object value private boolean containsNullValue () org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry entry int i public java.lang.Object get (java.lang.Object) Object key int hash int index org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry entry public int size () public java.lang.Object put (java.lang.Object, java.lang.Object) Object key Object value int hash int index org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry entry org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry previousEntry org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry newEntry protected org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry createTableEntry (java.lang.Object, java.lang.Object, int) Object key Object value int hash public java.lang.Object remove (java.lang.Object) Object key int hash int index org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry entry org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry previousEntry public void putAll (java.util.Map) java.util.Map$Entry entry java.util.Iterator entries java.util.Map t public java.util.Set keySet () public java.util.Set entrySet () public java.util.Collection values () public boolean equals (java.lang.Object) java.util.Map$Entry e Object key Object value java.util.Iterator i ClassCastException unused NullPointerException unused Object o java.util.Map t public int hashCode () int h java.util.Iterator i public java.lang.Object clone () throws java.lang.CloneNotSupportedException CloneNotSupportedException e org.tmatesoft.svn.core.internal.util.SVNHashMap result private void writeObject (java.io.ObjectOutputStream) throws java.io.IOException java.util.Map$Entry e java.io.ObjectOutputStream s java.util.Iterator i private void readObject (java.io.ObjectInputStream) throws java.io.IOException java.lang.ClassNotFoundException Object key Object value int i java.io.ObjectInputStream s int numBuckets int size public java.lang.String toString () java.util.Map$Entry e Object key Object value StringBuffer buf java.util.Iterator i boolean hasNext private int indexForHash (int) int hash private static int hashCode (java.lang.Object) int i int hash String str Object key private void resize (int) int index org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry newEntry org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry nextEntry org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry oldEntry int i int newSize org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry[] oldTable private static boolean eq (java.lang.Object, java.lang.Object) Object a Object b static synthetic int access$700 (org.tmatesoft.svn.core.internal.util.SVNHashMap) org.tmatesoft.svn.core.internal.util.SVNHashMap x0 static synthetic int access$900 (org.tmatesoft.svn.core.internal.util.SVNHashMap) org.tmatesoft.svn.core.internal.util.SVNHashMap x0 static synthetic org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry[] access$1000 (org.tmatesoft.svn.core.internal.util.SVNHashMap) org.tmatesoft.svn.core.internal.util.SVNHashMap x0 static synthetic java.lang.Object access$1100 () static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNMergeInfoUtil.class
SVNMergeInfoUtil.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil extends java.lang.Object { public void <init> () public static void mergeCatalog (java.util.Map, java.util.Map) throws org.tmatesoft.svn.core.SVNException java.util.Map catalogMergeinfo java.util.Map changesMergeinfo java.util.Map mergedMergeinfo java.util.Map changesMergeinfo Comparable catalogKey Comparable changeKey int compare Object changeKey java.util.Map changesMergeinfo java.util.Map catalog java.util.Map changes int i int j Object[] catalogKeys Object[] changesKeys public static java.util.Map filterCatalogByRanges (java.util.Map, long, long) String path java.util.Map mergeInfo java.util.Map filteredMergeInfo java.util.Iterator catalogIter java.util.Map catalog long youngestRev long oldestRev java.util.Map filteredCatalog public static java.util.Map filterMergeInfoByRanges (java.util.Map, long, long) org.tmatesoft.svn.core.SVNMergeRangeList newRangeList String path org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator mergeInfoIter org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.SVNMergeRangeList filterRangeList java.util.Map mergeInfo long youngestRev long oldestRev java.util.Map filteredMergeInfo public static long[] getRangeEndPoints (java.util.Map) org.tmatesoft.svn.core.SVNMergeRange[] ranges org.tmatesoft.svn.core.SVNMergeRange range Object path org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator mergeInfoIter java.util.Map mergeInfo long[] rangePoints public static java.util.Map elideMergeInfoCatalog (java.util.Map) throws org.tmatesoft.svn.core.SVNException String path String adjustedPath java.util.Iterator pathsIter String elidablePath java.util.Iterator elidablePathsIter String path String adjustedPath java.util.Iterator pathsIter java.util.Map mergeInfoCatalog java.util.Map adjustedMergeInfoCatalog org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoCatalogHandler handler org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$ElideMergeInfoEditor editor java.util.List elidablePaths public static java.util.Map adjustMergeInfoSourcePaths (java.util.Map, java.lang.String, java.util.Map) String srcMergePath org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator paths java.util.Map mergeInfo String walkPath java.util.Map wcMergeInfo public static boolean removeEmptyRangeLists (java.util.Map) java.util.Map$Entry mergeInfoEntry org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator mergeInfoIter java.util.Map mergeInfo boolean removedSomeRanges public static java.util.Map mergeMergeInfos (java.util.Map, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRangeList rangeList1 org.tmatesoft.svn.core.SVNMergeRangeList rangeList2 String path1 String path2 int res String path java.util.Map originalSrcsToRangeLists java.util.Map changedSrcsToRangeLists String[] paths1 String[] paths2 int i int j public static java.lang.String combineMergeInfoProperties (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String propValue1 String propValue2 java.util.Map srcsToRanges1 java.util.Map srcsToRanges2 public static java.lang.String combineForkedMergeInfoProperties (java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String fromPropValue String workingPropValue String toPropValue java.util.Map leftDeleted java.util.Map leftAdded java.util.Map fromMergeInfo java.util.Map rightDeleted java.util.Map rightAdded java.util.Map result public static void diffMergeInfoProperties (java.util.Map, java.util.Map, java.lang.String, java.util.Map, java.lang.String, java.util.Map) throws org.tmatesoft.svn.core.SVNException java.util.Map deleted java.util.Map added String fromPropValue java.util.Map fromMergeInfo String toPropValue java.util.Map toMergeInfo public static void diffMergeInfo (java.util.Map, java.util.Map, java.util.Map, java.util.Map, boolean) java.util.Map deleted java.util.Map added java.util.Map from java.util.Map to boolean considerInheritance public static java.util.Map dupCatalog (java.util.Map) String path java.util.Map mergeInfo java.util.Map mergeInfoCopy java.util.Iterator catalogIter java.util.Map catalog java.util.Map newMergeInfoCatalog public static java.util.Map dupMergeInfo (java.util.Map, java.util.Map) String path org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator paths java.util.Map srcsToRangeLists java.util.Map target public static boolean isNonInheritable (java.util.Map) int i org.tmatesoft.svn.core.SVNMergeRangeList rangeList org.tmatesoft.svn.core.SVNMergeRange[] ranges String path java.util.Iterator i$ java.util.Map mergeInfo public static java.util.Map parseMergeInfo (java.lang.StringBuffer, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String relativePath org.tmatesoft.svn.core.SVNErrorMessage err String r1 String r2 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNMergeRange range int i org.tmatesoft.svn.core.SVNMergeRange lastRange java.util.Collection newRanges int eolInd int ind String path org.tmatesoft.svn.core.SVNMergeRange[] ranges org.tmatesoft.svn.core.SVNMergeRangeList existingRange org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne StringBuffer mergeInfo java.util.Map srcPathsToRangeLists public static java.lang.String formatMergeInfoCatalogToString (java.util.Map, java.lang.String, java.lang.String) String path1 java.util.Map mergeInfo java.util.Iterator catalogIter java.util.Map catalog String keyPrefix String valuePrefix StringBuffer buffer public static java.lang.String formatMergeInfoCatalogToString2 (java.util.Map, java.lang.String, java.lang.String) java.io.File path1 String path1Str java.util.Map mergeInfo java.util.Iterator catalogIter java.util.Map catalog String keyPrefix String valuePrefix StringBuffer buffer public static java.lang.String[] formatMergeInfoToArray (java.util.Map, java.lang.String) String path org.tmatesoft.svn.core.SVNMergeRangeList rangeList String output java.util.Iterator paths java.util.Map srcsToRangeLists String prefix String[] pathRanges int k public static java.lang.String formatMergeInfoToString (java.util.Map, java.lang.String) int i java.util.Map srcsToRangeLists String prefix String[] infosArray String result public static boolean shouldElideMergeInfo (java.util.Map, java.util.Map, java.lang.String) String mergeSrcPath java.util.Iterator paths java.util.Map pathTweakedMergeInfo java.util.Map parentMergeInfo java.util.Map childMergeInfo String pathSuffix boolean elides public static void elideMergeInfo (java.util.Map, java.util.Map, java.io.File, java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException java.util.Map parentMergeInfo java.util.Map childMergeInfo java.io.File path String pathSuffix org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access boolean elides public static boolean mergeInfoEquals (java.util.Map, java.util.Map, boolean) java.util.Map deleted java.util.Map added java.util.Map mergeInfo1 java.util.Map mergeInfo2 boolean considerInheritance public static java.lang.String[] findMergeSources (long, java.util.Map) String path org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator paths long revision java.util.Map mergeInfo java.util.LinkedList mergeSources public static java.util.Map getInheritableMergeInfo (java.util.Map, java.lang.String, long, long) java.util.Map mergeInfo String path long startRev long endRev public static java.util.Map getInheritableMergeInfo (java.util.Map, java.lang.String, long, long, boolean) String mergeSrcPath org.tmatesoft.svn.core.SVNMergeRangeList rangeList org.tmatesoft.svn.core.SVNMergeRangeList inheritableRangeList java.util.Iterator paths java.util.Map mergeInfo String path long startRev long endRev boolean inheritable java.util.Map inheritableMergeInfo public static java.util.Map removeMergeInfo (java.util.Map, java.util.Map) java.util.Map eraser java.util.Map whiteBoard public static java.util.Map removeMergeInfo (java.util.Map, java.util.Map, boolean) java.util.Map eraser java.util.Map whiteBoard boolean considerInheritance java.util.Map mergeInfo public static java.util.Map intersectMergeInfo (java.util.Map, java.util.Map) java.util.Map mergeInfo1 java.util.Map mergeInfo2 public static java.util.Map intersectMergeInfo (java.util.Map, java.util.Map, boolean) String path org.tmatesoft.svn.core.SVNMergeRangeList rangeList1 org.tmatesoft.svn.core.SVNMergeRangeList rangeList2 java.util.Iterator pathsIter java.util.Map mergeInfo1 java.util.Map mergeInfo2 boolean considerInheritance java.util.Map mergeInfo public static org.tmatesoft.svn.core.SVNMergeRange[] parseRevisionList (java.lang.StringBuffer, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long endRev org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long startRev org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.SVNErrorMessage err StringBuffer mergeInfo String path java.util.Collection ranges public static java.util.Map appendSuffix (java.util.Map, java.lang.String) String pathWithSuffix String path java.util.Iterator i$ java.util.Map mergeinfo String suffix java.util.Map result public static org.tmatesoft.svn.core.SVNMergeRangeList[] diffMergeRangeLists (org.tmatesoft.svn.core.SVNMergeRangeList, org.tmatesoft.svn.core.SVNMergeRangeList, boolean) org.tmatesoft.svn.core.SVNMergeRangeList fromRangeList org.tmatesoft.svn.core.SVNMergeRangeList toRangeList boolean considerInheritance org.tmatesoft.svn.core.SVNMergeRangeList deletedRangeList org.tmatesoft.svn.core.SVNMergeRangeList addedRangeList private static long parseRevision (java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException e org.tmatesoft.svn.core.SVNErrorMessage err StringBuffer mergeInfo int ind String numberStr long rev private static void walkMergeInfoHashForDiff (java.util.Map, java.util.Map, java.util.Map, java.util.Map, boolean) org.tmatesoft.svn.core.SVNMergeRangeList[] rangeListDiff org.tmatesoft.svn.core.SVNMergeRangeList deletedRangeList org.tmatesoft.svn.core.SVNMergeRangeList addedRangeList String path org.tmatesoft.svn.core.SVNMergeRangeList fromRangeList org.tmatesoft.svn.core.SVNMergeRangeList toRangeList java.util.Iterator paths String path org.tmatesoft.svn.core.SVNMergeRangeList toRangeList java.util.Iterator paths java.util.Map deleted java.util.Map added java.util.Map from java.util.Map to boolean considerInheritance }
org/tmatesoft/svn/core/internal/util/DefaultSVNDebugFormatter.class
DefaultSVNDebugFormatter.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.DefaultSVNDebugFormatter extends java.util.logging.Formatter { private static final java.text.DateFormat DATE_FORMAT public void <init> () public java.lang.String format (java.util.logging.LogRecord) java.io.StringWriter sw java.io.PrintWriter pw Exception e java.util.logging.LogRecord record StringBuffer sb String message java.util.Date date static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNCharsetInputStream.class
SVNCharsetInputStream.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNCharsetInputStream extends java.io.FilterInputStream { private static final int DEFAULT_BUFFER_CAPACITY private org.tmatesoft.svn.core.internal.util.SVNCharsetConvertor myCharsetConvertor private byte[] mySourceBuffer private java.nio.ByteBuffer myConvertedBuffer private boolean myEndOfStream public void <init> (java.io.InputStream, java.nio.charset.Charset, java.nio.charset.Charset) java.io.InputStream in java.nio.charset.Charset inputCharset java.nio.charset.Charset outputCharset public int read () throws java.io.IOException byte[] b int r public int read (byte[]) throws java.io.IOException byte[] b public int read (byte[], int, int) throws java.io.IOException org.tmatesoft.svn.core.SVNException e int readed byte[] b int off int len int available private int fillBuffer () throws java.io.IOException int r int readed public java.lang.String toString () StringBuffer buffer }
org/tmatesoft/svn/core/internal/util/SVNLogOutputStream.class
SVNLogOutputStream.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNLogOutputStream extends java.io.OutputStream { private java.io.OutputStream myOut private java.io.OutputStream myLog public void <init> (java.io.OutputStream, java.io.OutputStream) java.io.OutputStream out java.io.OutputStream log public void close () throws java.io.IOException java.io.IOException e java.io.IOException e java.io.IOException e public void flush () throws java.io.IOException java.io.IOException e java.io.IOException e java.io.IOException e public void write (byte[], int, int) throws java.io.IOException java.io.IOException e java.io.IOException e java.io.IOException e byte[] b int off int len public void write (int) throws java.io.IOException java.io.IOException e java.io.IOException e java.io.IOException e int b public void flushBuffer () java.io.IOException e }
org/tmatesoft/svn/core/internal/util/SVNBase64.class
SVNBase64.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNBase64 extends java.lang.Object { private static final char[] intToBase64 private static final char[] intToAltBase64 private static final byte[] base64ToInt private static final byte[] altBase64ToInt public void <init> () public static java.lang.String byteArrayToBase64 (byte[]) byte[] a public static java.lang.String byteArrayToAltBase64 (byte[]) byte[] a private static java.lang.String byteArrayToBase64 (byte[], boolean) int byte0 int byte1 int byte2 int i int byte1 int byte0 byte[] a boolean alternate int aLen int numFullGroups int numBytesInPartialGroup int resultLen StringBuffer result char[] intToAlpha int inCursor public static int base64ToByteArray (java.lang.StringBuffer, byte[]) ArrayIndexOutOfBoundsException e StringBuffer s byte[] buffer public static java.lang.StringBuffer normalizeBase64 (java.lang.StringBuffer) int i StringBuffer in StringBuffer result private static int base64ToByteArray (java.lang.StringBuffer, byte[], boolean) int i int ch0 int ch1 int ch2 int ch3 int i int ch2 int ch0 int ch1 StringBuffer s byte[] result boolean alternate byte[] alphaToInt int sLen int numGroups int missingBytesInLastGroup int numFullGroups int resultLength int inCursor int outCursor static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNEmptyTask.class
SVNEmptyTask.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNEmptyTask extends java.lang.Object implements org.tmatesoft.svn.core.internal.util.ISVNTask { public void <init> () public void cancel (boolean) boolean interrupt }
org/tmatesoft/svn/core/internal/util/SVNSSLUtil.class
SVNSSLUtil.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNSSLUtil extends java.lang.Object { public void <init> () public static java.lang.StringBuffer getServerCertificatePrompt (java.security.cert.X509Certificate, java.lang.String, java.lang.String) java.security.cert.X509Certificate cert String realm String hostName int failures StringBuffer prompt private static java.lang.String getFingerprint (java.security.cert.X509Certificate) Exception e java.security.cert.X509Certificate cert public static java.lang.String getFingerprint (byte[], java.lang.String) int b String hex int i java.security.MessageDigest md byte[] digest Exception e byte[] key String digestAlgorithm StringBuffer s private static void getServerCertificateInfo (java.security.cert.X509Certificate, java.lang.StringBuffer) java.security.cert.X509Certificate cert StringBuffer info public static int getServerCertificateFailures (java.security.cert.X509Certificate, java.lang.String) Object[] name Object type Object host Object nameList java.util.Iterator names java.util.Collection altNames java.security.cert.CertificateParsingException e java.security.cert.X509Certificate cert String realHostName int mask java.util.Date time String certHostName int index }
org/tmatesoft/svn/core/internal/util/SVNHashSet.class
SVNHashSet.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNHashSet extends java.util.AbstractSet implements java.util.Set java.io.Serializable { private static final long serialVersionUID private static final Object OBJECT private transient org.tmatesoft.svn.core.internal.util.SVNHashMap myMap public void <init> () public void <init> (java.util.Collection) java.util.Collection values public boolean add (java.lang.Object) Object o public void clear () public boolean contains (java.lang.Object) Object o public java.util.Iterator iterator () public boolean remove (java.lang.Object) Object o public int size () private void writeObject (java.io.ObjectOutputStream) throws java.io.IOException java.util.Iterator i java.io.ObjectOutputStream s private void readObject (java.io.ObjectInputStream) throws java.io.IOException java.lang.ClassNotFoundException Object o int i java.io.ObjectInputStream s int size static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNHashMap$ValueIterator.class
SVNHashMap.java package org.tmatesoft.svn.core.internal.util org.tmatesoft.svn.core.internal.util.SVNHashMap$ValueIterator extends org.tmatesoft.svn.core.internal.util.SVNHashMap$TableIterator { final synthetic org.tmatesoft.svn.core.internal.util.SVNHashMap this$0 private void <init> (org.tmatesoft.svn.core.internal.util.SVNHashMap) public java.lang.Object next () org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry next synthetic void <init> (org.tmatesoft.svn.core.internal.util.SVNHashMap, org.tmatesoft.svn.core.internal.util.SVNHashMap$1) org.tmatesoft.svn.core.internal.util.SVNHashMap x0 org.tmatesoft.svn.core.internal.util.SVNHashMap$1 x1 }
org/tmatesoft/svn/core/internal/util/SVNSocketFactory.class
SVNSocketFactory.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNSocketFactory extends java.lang.Object { private static boolean ourIsSocketStaleCheck private static int ourSocketReceiveBufferSize private static org.tmatesoft.svn.core.internal.util.ISVNThreadPool ourThreadPool private static String ourSSLProtocols public void <init> () public static java.net.Socket createPlainSocket (java.lang.String, int, int, int, org.tmatesoft.svn.core.ISVNCanceller) throws java.io.IOException org.tmatesoft.svn.core.SVNException String host int port int connectTimeout int readTimeout org.tmatesoft.svn.core.ISVNCanceller cancel java.net.InetAddress address java.net.Socket socket int bufferSize java.net.InetSocketAddress socketAddress public static java.net.Socket createSSLSocket (javax.net.ssl.KeyManager[], javax.net.ssl.TrustManager, java.lang.String, int, int, int, org.tmatesoft.svn.core.ISVNCanceller) throws java.io.IOException org.tmatesoft.svn.core.SVNException javax.net.ssl.KeyManager[] keyManagers javax.net.ssl.TrustManager trustManager String host int port int connectTimeout int readTimeout org.tmatesoft.svn.core.ISVNCanceller cancel java.net.InetAddress address java.net.Socket sslSocket int bufferSize java.net.InetSocketAddress socketAddress public static java.net.Socket createSSLSocket (javax.net.ssl.KeyManager[], javax.net.ssl.TrustManager, java.lang.String, int, java.net.Socket, int) throws java.io.IOException javax.net.ssl.KeyManager[] keyManagers javax.net.ssl.TrustManager trustManager String host int port java.net.Socket socket int readTimeout java.net.Socket sslSocket public static org.tmatesoft.svn.core.internal.util.ISVNThreadPool getThreadPool () public static void connect (java.net.Socket, java.net.InetSocketAddress, int, org.tmatesoft.svn.core.ISVNCanceller) throws java.io.IOException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNCancelException e java.net.Socket socket java.net.InetSocketAddress address int timeout org.tmatesoft.svn.core.ISVNCanceller cancel org.tmatesoft.svn.core.internal.util.SVNSocketConnection socketConnection org.tmatesoft.svn.core.internal.util.ISVNTask task private static java.net.InetAddress createAddres (java.lang.String) throws java.net.UnknownHostException byte b NumberFormatException e String token java.util.StringTokenizer tokens String hostName byte[] bytes int index public static synchronized void setSocketReceiveBufferSize (int) int size public static synchronized int getSocketReceiveBufferSize () public static void setSocketStaleCheckEnabled (boolean) boolean enabled public static boolean isSocketStaleCheckEnabled () public static boolean isSocketStale (java.net.Socket) throws java.io.IOException int byteRead int timeout java.io.InterruptedIOException e java.io.IOException e java.net.Socket socket boolean isStale public static javax.net.ssl.SSLContext createSSLContext (javax.net.ssl.KeyManager[], javax.net.ssl.TrustManager) throws java.io.IOException javax.net.ssl.SSLContext context java.security.NoSuchAlgorithmException e java.security.KeyManagementException e javax.net.ssl.KeyManager[] keyManagers javax.net.ssl.TrustManager trustManager javax.net.ssl.TrustManager[] trustManagers public static java.net.Socket configureSSLSocket (java.net.Socket) String userProtocol java.util.StringTokenizer tokens java.util.Collection userProtocols java.net.Socket socket javax.net.ssl.SSLSocket sslSocket String[] protocols String[] suites static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNHashMap$1.class
SVNHashMap.java package org.tmatesoft.svn.core.internal.util synthetic org.tmatesoft.svn.core.internal.util.SVNHashMap$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/util/SVNTask.class
SVNTask.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNTask extends java.lang.Object implements org.tmatesoft.svn.core.internal.util.ISVNTask { private java.util.concurrent.Future myFutureObject public void <init> (java.util.concurrent.Future) java.util.concurrent.Future future public void cancel (boolean) boolean interrupt }
org/tmatesoft/svn/core/internal/util/SVNEntryHashMap.class
SVNEntryHashMap.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNEntryHashMap extends org.tmatesoft.svn.core.internal.util.SVNHashMap { private static final long serialVersionUID private static final java.util.Set ourNonPoolableKeys private static final java.util.Set ourURLKeys private org.tmatesoft.svn.core.internal.wc.SVNObjectsPool myObjectsPool public void <init> (org.tmatesoft.svn.core.internal.wc.SVNObjectsPool) org.tmatesoft.svn.core.internal.wc.SVNObjectsPool pool public void <init> (java.util.Map, org.tmatesoft.svn.core.internal.wc.SVNObjectsPool) java.util.Map map org.tmatesoft.svn.core.internal.wc.SVNObjectsPool pool public java.lang.Object put (java.lang.Object, java.lang.Object) Object key Object value protected org.tmatesoft.svn.core.internal.util.SVNHashMap$TableEntry createTableEntry (java.lang.Object, java.lang.Object, int) Object key Object value int hash private java.lang.Object getObjectFromPool (java.lang.Object) Object value private static boolean isNonPoolableKey (java.lang.Object) Object key private static boolean isURLKey (java.lang.Object) Object key private static java.lang.Object[] split (java.lang.String) char ch int i String url java.util.ArrayList segments int startIndex int count static synthetic boolean access$000 (java.lang.Object) Object x0 static synthetic boolean access$100 (java.lang.Object) Object x0 static synthetic java.lang.Object[] access$200 (java.lang.String) String x0 static void <clinit> () }
org/tmatesoft/svn/core/internal/util/DefaultSVNDebugLogger.class
DefaultSVNDebugLogger.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.DefaultSVNDebugLogger extends org.tmatesoft.svn.util.SVNDebugLogAdapter { private java.util.Map myLoggers private java.util.logging.Handler myTestHandler public void <init> () public void log (org.tmatesoft.svn.util.SVNLogType, java.lang.Throwable, java.util.logging.Level) org.tmatesoft.svn.util.SVNLogType logType Throwable th java.util.logging.Level logLevel java.util.logging.Logger logger public void log (org.tmatesoft.svn.util.SVNLogType, java.lang.String, java.util.logging.Level) org.tmatesoft.svn.util.SVNLogType logType String message java.util.logging.Level logLevel java.util.logging.Logger logger public void log (org.tmatesoft.svn.util.SVNLogType, java.lang.String, byte[]) java.io.UnsupportedEncodingException e org.tmatesoft.svn.util.SVNLogType logType String message byte[] data java.util.logging.Logger logger public java.io.InputStream createLogStream (org.tmatesoft.svn.util.SVNLogType, java.io.InputStream) org.tmatesoft.svn.util.SVNLogType logType java.io.InputStream is public java.io.OutputStream createLogStream (org.tmatesoft.svn.util.SVNLogType, java.io.OutputStream) org.tmatesoft.svn.util.SVNLogType logType java.io.OutputStream os private java.util.logging.Logger getLogger (org.tmatesoft.svn.util.SVNLogType) java.io.IOException e int i java.util.logging.Handler[] existingHandlers String testName org.tmatesoft.svn.util.SVNLogType logType java.util.logging.Logger logger private java.lang.String getMessage (org.tmatesoft.svn.util.SVNLogType, java.lang.String) org.tmatesoft.svn.util.SVNLogType logType String originalMessage private static java.util.logging.Handler createTestLogger (java.lang.String) throws java.io.IOException String testName java.net.URL mySource java.io.File programDir java.io.File logFile java.util.logging.FileHandler fileHandler }
org/tmatesoft/svn/core/internal/util/SVNSkel.class
SVNSkel.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNSkel extends java.lang.Object { private static final int DEFAULT_BUFFER_SIZE public static final char TYPE_NOTHING public static final char TYPE_SPACE public static final char TYPE_DIGIT public static final char TYPE_PAREN public static final char TYPE_NAME private static final char[] TYPES_TABLE private final byte[] myRawData private final java.util.List myList public static char getType (byte) byte b public static org.tmatesoft.svn.core.internal.util.SVNSkel parse (byte[]) throws org.tmatesoft.svn.core.SVNException byte[] data public static org.tmatesoft.svn.core.internal.util.SVNSkel parse (byte[], int, int) throws org.tmatesoft.svn.core.SVNException byte[] data int offset int length java.nio.ByteBuffer buffer public static org.tmatesoft.svn.core.internal.util.SVNSkel parse (java.nio.ByteBuffer) throws org.tmatesoft.svn.core.SVNException java.nio.ByteBuffer buffer byte cur public static org.tmatesoft.svn.core.internal.util.SVNSkel parseList (java.nio.ByteBuffer) throws org.tmatesoft.svn.core.SVNException byte cur org.tmatesoft.svn.core.internal.util.SVNSkel element java.nio.ByteBuffer buffer org.tmatesoft.svn.core.internal.util.SVNSkel list public static org.tmatesoft.svn.core.internal.util.SVNSkel parseImplicitAtom (java.nio.ByteBuffer) byte cur java.nio.ByteBuffer buffer int start public static org.tmatesoft.svn.core.internal.util.SVNSkel parseExplicitAtom (java.nio.ByteBuffer) java.nio.ByteBuffer buffer int size int start private static org.tmatesoft.svn.core.internal.util.SVNSkel createAtom (org.tmatesoft.svn.core.SVNPropertyValue) org.tmatesoft.svn.core.SVNPropertyValue propertyValue public static org.tmatesoft.svn.core.internal.util.SVNSkel createAtom (java.lang.String) java.io.UnsupportedEncodingException e String str byte[] data public static org.tmatesoft.svn.core.internal.util.SVNSkel createAtom (byte[]) byte[] data public static org.tmatesoft.svn.core.internal.util.SVNSkel createAtom (byte[], int, int) byte[] data int offset int length byte[] raw public static org.tmatesoft.svn.core.internal.util.SVNSkel createEmptyList () public static org.tmatesoft.svn.core.internal.util.SVNSkel createPropList (java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.util.SVNSkel name org.tmatesoft.svn.core.SVNPropertyValue pv org.tmatesoft.svn.core.internal.util.SVNSkel value String propertyName java.util.Iterator i$ java.util.Map props org.tmatesoft.svn.core.internal.util.SVNSkel list protected void <init> (byte[]) byte[] data protected void <init> () public boolean isAtom () public byte[] getData () public java.util.List getList () public org.tmatesoft.svn.core.internal.util.SVNSkel getChild (int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error int i public void appendChild (org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.util.SVNSkel child public void addChild (org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.util.SVNSkel child public void prependString (java.lang.String) throws org.tmatesoft.svn.core.SVNException String str org.tmatesoft.svn.core.internal.util.SVNSkel skel public void prependPropertyValue (org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue propertyValue org.tmatesoft.svn.core.internal.util.SVNSkel skel public void prependPath (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path String str public int getListSize () public java.lang.String getValue () java.io.UnsupportedEncodingException e String str public java.lang.String toString () org.tmatesoft.svn.core.internal.util.SVNSkel element java.util.Iterator iterator StringBuffer buffer public boolean contentEquals (java.lang.String) String str String value public boolean containsAtomsOnly () org.tmatesoft.svn.core.internal.util.SVNSkel element java.util.Iterator iterator public boolean isValidPropList () int length public java.util.Map parsePropList () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.util.SVNSkel nameElement org.tmatesoft.svn.core.internal.util.SVNSkel valueElement String name byte[] value java.util.Iterator iterator java.util.Map props public byte[] unparse () throws org.tmatesoft.svn.core.SVNException int approxSize java.nio.ByteBuffer buffer byte[] raw public java.nio.ByteBuffer writeTo (java.nio.ByteBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error java.io.UnsupportedEncodingException e byte[] sizeBytes byte[] data java.io.UnsupportedEncodingException e java.io.UnsupportedEncodingException e org.tmatesoft.svn.core.internal.util.SVNSkel element java.util.Iterator iterator java.io.UnsupportedEncodingException e java.nio.ByteBuffer buffer private int estimateUnparsedSize () byte[] data org.tmatesoft.svn.core.internal.util.SVNSkel element java.util.Iterator iterator int total private boolean useImplicit () byte cur int i byte[] data private static java.nio.ByteBuffer allocate (java.nio.ByteBuffer, int) java.nio.ByteBuffer expandedBuffer java.nio.ByteBuffer buffer int capacity private static java.nio.ByteBuffer unread (java.nio.ByteBuffer, int) java.nio.ByteBuffer buffer int length private static int parseSize (java.nio.ByteBuffer, int) int digit byte cur java.nio.ByteBuffer buffer int limit int maxPrefix int maxDigit int value int start private static int writeSizeBytes (int, byte[]) byte tmp int left int right int value byte[] data int i private static byte[] getSizeBytes (int) byte[] result int value int tmp int length byte[] data int count private static void error (java.lang.String) throws org.tmatesoft.svn.core.SVNException String type org.tmatesoft.svn.core.SVNErrorMessage error static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNEncodingUtil.class
SVNEncodingUtil.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNEncodingUtil extends java.lang.Object { private static final java.util.Map XML_UNESCAPE_MAP private static final byte[] uri_char_validity public void <init> () public static java.lang.String uriEncode (java.lang.String) java.io.UnsupportedEncodingException e java.io.UnsupportedEncodingException e int index int i String src StringBuffer sb byte[] bytes public static java.lang.String autoURIEncode (java.lang.String) java.io.UnsupportedEncodingException e java.io.UnsupportedEncodingException e int index int i String src StringBuffer sb byte[] bytes public static void assertURISafe (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.UnsupportedEncodingException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err int i String path byte[] bytes public static java.lang.String uriDecode (java.lang.String) byte ch int i java.io.UnsupportedEncodingException e String src boolean query boolean decoded int length java.io.ByteArrayOutputStream bos public static java.lang.String xmlEncodeCDATA (java.lang.String) String src public static java.lang.String xmlEncodeCDATA (java.lang.String, boolean) char ch int i String src boolean escapeQuotes StringBuffer sb public static java.lang.String xmlEncodeAttr (java.lang.String) char ch int i String src StringBuffer sb public static boolean isXMLSafe (java.lang.String) char ch int i String value public static java.lang.String xmlDecode (java.lang.String) String escape int j String replacement char ch int i String value StringBuffer result int l public static java.lang.String fuzzyEscape (java.lang.String) int code int i String str byte[] bytes StringBuffer result public static boolean isHexDigit (char) char ch public static boolean isASCIIControlChar (char) char ch private static int hexValue (char) char ch private static java.lang.StringBuffer createStringBuffer (java.lang.String, int) String src int length StringBuffer sb static void <clinit> () }
org/tmatesoft/svn/core/internal/util/SVNLogStream.class
SVNLogStream.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.SVNLogStream extends java.io.OutputStream { private org.tmatesoft.svn.util.ISVNDebugLog myLog private java.io.ByteArrayOutputStream myBuffer private String myPrefix public void <init> (org.tmatesoft.svn.util.ISVNDebugLog, boolean) org.tmatesoft.svn.util.ISVNDebugLog log boolean write public void write (int) throws java.io.IOException int b public void close () throws java.io.IOException public void flush () throws java.io.IOException public void write (byte[], int, int) throws java.io.IOException byte[] b int off int len public void flushBuffer (boolean) boolean force }
org/tmatesoft/svn/core/internal/util/ChunkedInputStream.class
ChunkedInputStream.java package org.tmatesoft.svn.core.internal.util public org.tmatesoft.svn.core.internal.util.ChunkedInputStream extends java.io.InputStream { private String myCharset private java.io.InputStream myInputStream private int myChunkSize private int myPosition private boolean myIsBOF private boolean myIsEOF private boolean myIsClosed public void <init> (java.io.InputStream, java.lang.String) java.io.InputStream in String charset public int read () throws java.io.IOException public int read (byte[], int, int) throws java.io.IOException byte[] b int off int len int count public int read (byte[]) throws java.io.IOException byte[] b private void readCRLF () throws java.io.IOException int cr int lf private void nextChunk () throws java.io.IOException private static int getChunkSizeFromInputStream (java.io.InputStream, java.lang.String) throws java.io.IOException org.tmatesoft.svn.core.SVNException svne int b NumberFormatException e java.io.InputStream in String charset java.io.ByteArrayOutputStream baos int state String dataString int separator int result public void close () throws java.io.IOException }
org/tmatesoft/svn/core/internal/util/SVNPathUtil$1.class
SVNPathUtil.java package org.tmatesoft.svn.core.internal.util final org.tmatesoft.svn.core.internal.util.SVNPathUtil$1 extends java.lang.Object implements java.util.Comparator { void <init> () public int compare (java.lang.Object, java.lang.Object) Object o1 Object o2 String p1 String p2 }
org/tmatesoft/svn/core/internal/util/SVNHashMap$KeySet.class
SVNHashMap.java package org.tmatesoft.svn.core.internal.util org.tmatesoft.svn.core.internal.util.SVNHashMap$KeySet extends java.util.AbstractSet { final synthetic org.tmatesoft.svn.core.internal.util.SVNHashMap this$0 private void <init> (org.tmatesoft.svn.core.internal.util.SVNHashMap) public java.util.Iterator iterator () public int size () public boolean contains (java.lang.Object) Object o public boolean remove (java.lang.Object) Object o public void clear () synthetic void <init> (org.tmatesoft.svn.core.internal.util.SVNHashMap, org.tmatesoft.svn.core.internal.util.SVNHashMap$1) org.tmatesoft.svn.core.internal.util.SVNHashMap x0 org.tmatesoft.svn.core.internal.util.SVNHashMap$1 x1 }
org/tmatesoft/svn/core/internal/util/SVNSocketFactory$1.class
SVNSocketFactory.java package org.tmatesoft.svn.core.internal.util final org.tmatesoft.svn.core.internal.util.SVNSocketFactory$1 extends java.lang.Object implements javax.net.ssl.X509TrustManager { void <init> () public java.security.cert.X509Certificate[] getAcceptedIssuers () public void checkClientTrusted (java.security.cert.X509Certificate[], java.lang.String) throws java.security.cert.CertificateException java.security.cert.X509Certificate[] arg0 String arg1 public void checkServerTrusted (java.security.cert.X509Certificate[], java.lang.String) throws java.security.cert.CertificateException java.security.cert.X509Certificate[] arg0 String arg1 }
org/tmatesoft/svn/core/internal/util/SVNMergeInfoUtil$1.class
SVNMergeInfoUtil.java package org.tmatesoft.svn.core.internal.util synthetic org.tmatesoft.svn.core.internal.util.SVNMergeInfoUtil$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/util/jna/
org/tmatesoft/svn/core/internal/util/jna/ISVNMacOsSecurityLibrary.class
ISVNMacOsSecurityLibrary.java package org.tmatesoft.svn.core.internal.util.jna abstract org.tmatesoft.svn.core.internal.util.jna.ISVNMacOsSecurityLibrary extends java.lang.Object implements com.sun.jna.Library { public abstract int SecKeychainSetUserInteractionAllowed (boolean) public abstract int SecKeychainFindGenericPassword (com.sun.jna.Pointer, int, byte[], int, byte[], com.sun.jna.ptr.IntByReference, com.sun.jna.ptr.PointerByReference, com.sun.jna.ptr.PointerByReference) public abstract int SecKeychainAddGenericPassword (com.sun.jna.Pointer, int, byte[], int, byte[], int, byte[], com.sun.jna.Pointer) public abstract int SecKeychainItemModifyAttributesAndData (com.sun.jna.Pointer, com.sun.jna.ptr.PointerByReference, int, byte[]) public abstract int SecKeychainItemFreeContent (com.sun.jna.Pointer, com.sun.jna.Pointer) }
org/tmatesoft/svn/core/internal/util/jna/SVNWin32Util.class
SVNWin32Util.java package org.tmatesoft.svn.core.internal.util.jna org.tmatesoft.svn.core.internal.util.jna.SVNWin32Util extends java.lang.Object { void <init> () public static boolean setWritable (java.io.File) int rc Throwable th java.io.File file org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library library public static boolean setHidden (java.io.File) int rc Throwable th java.io.File file org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library library public static boolean moveFile (java.io.File, java.io.File) int rc Throwable th java.io.File src java.io.File dst org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library library public static java.lang.String getApplicationDataPath (boolean) int i boolean common org.tmatesoft.svn.core.internal.util.jna.ISVNWin32Library library char[] commonAppDataPath int type org.tmatesoft.svn.core.internal.util.jna.ISVNWin32Library$HRESULT result int length String path }
org/tmatesoft/svn/core/internal/util/jna/ISVNGnomeKeyringLibrary$GnomeKeyringNetworkPasswordData.class
ISVNGnomeKeyringLibrary.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringNetworkPasswordData extends com.sun.jna.Structure { public com.sun.jna.Pointer keyring public int itemId public com.sun.jna.Pointer protocol public com.sun.jna.Pointer server public com.sun.jna.Pointer object public com.sun.jna.Pointer authType public int port public com.sun.jna.Pointer user public com.sun.jna.Pointer domain public com.sun.jna.Pointer password public void <init> (com.sun.jna.Pointer) com.sun.jna.Pointer p }
org/tmatesoft/svn/core/internal/util/jna/SVNLinuxUtil.class
SVNLinuxUtil.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.SVNLinuxUtil extends java.lang.Object { private static com.sun.jna.Memory ourSharedMemory private static final boolean ourIsDashStat public void <init> () public static org.tmatesoft.svn.core.internal.wc.SVNFileType getFileType (java.io.File) int rc int rc int mode int type org.tmatesoft.svn.core.internal.util.jna.ISVNCLibrary cLibrary Throwable th java.io.File file String path public static java.lang.Boolean isExecutable (java.io.File) int rc int rc int mode int fuid int fgid int access int mask org.tmatesoft.svn.core.internal.util.jna.ISVNCLibrary cLibrary Throwable th java.io.File file String path public static java.lang.String getLinkTarget (java.io.File) int rc byte[] buffer org.tmatesoft.svn.core.internal.util.jna.ISVNCLibrary cLibrary Throwable th java.io.File file String path public static java.lang.Long getSymlinkLastModified (java.io.File) int rc int rc org.tmatesoft.svn.core.internal.util.jna.ISVNCLibrary cLibrary Throwable th java.io.File file String path public static boolean setExecutable (java.io.File, boolean) int rc int rc int mode int access int perms org.tmatesoft.svn.core.internal.util.jna.ISVNCLibrary cLibrary Throwable th java.io.File file boolean set String path public static boolean setWritable (java.io.File) int rc int rc int mode int access int mask org.tmatesoft.svn.core.internal.util.jna.ISVNCLibrary cLibrary Throwable th java.io.File file String path public static boolean setSGID (java.io.File) int rc int rc int mode int access int mask org.tmatesoft.svn.core.internal.util.jna.ISVNCLibrary cLibrary Throwable th java.io.File file String path public static boolean createSymlink (java.io.File, java.lang.String) org.tmatesoft.svn.core.internal.util.jna.ISVNCLibrary cLibrary int rc Throwable th java.io.File file String linkName String path private static int getFileModeOffset () private static int getFileUserIDOffset () int modeOffset private static int getFileGroupIDOffset () private static int getFileLastModifiedOffset () static void <clinit> () Throwable th }
org/tmatesoft/svn/core/internal/util/jna/ISVNWin32Library$DWORD.class
ISVNWin32Library.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.ISVNWin32Library$DWORD extends com.sun.jna.IntegerType { private static final long serialVersionUID public void <init> () public void <init> (long) long value }
org/tmatesoft/svn/core/internal/util/jna/SVNGnomeKeyring$GnomeKeyringContext.class
SVNGnomeKeyring.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring$GnomeKeyringContext extends com.sun.jna.Structure { public String keyringName public com.sun.jna.Pointer keyringInfo public com.sun.jna.Pointer loop public void <init> () public void <init> (com.sun.jna.Pointer) com.sun.jna.Pointer p }
org/tmatesoft/svn/core/internal/util/jna/SVNJNAUtil.class
SVNJNAUtil.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.SVNJNAUtil extends java.lang.Object { private static boolean ourIsJNAEnabled private static boolean ourIsJNAPresent private static final String JNA_CLASS_NAME public void <init> () public static void setJNAEnabled (boolean) boolean enabled public static boolean isJNAPresent () public static org.tmatesoft.svn.core.internal.wc.SVNFileType getFileType (java.io.File) java.io.File file public static java.lang.Boolean isExecutable (java.io.File) java.io.File file public static java.lang.String getLinkTarget (java.io.File) java.io.File file public static boolean setExecutable (java.io.File, boolean) java.io.File file boolean set public static boolean setSGID (java.io.File) java.io.File file public static boolean createSymlink (java.io.File, java.lang.String) java.io.File file String linkName public static java.lang.Long getSymlinkLastModified (java.io.File) java.io.File file public static boolean setWritable (java.io.File) java.io.File file public static boolean setHidden (java.io.File) java.io.File file public static boolean moveFile (java.io.File, java.io.File) java.io.File src java.io.File dst public static java.lang.String decrypt (java.lang.String) String encryptedData public static java.lang.String encrypt (java.lang.String) String rawData public static boolean addPasswordToMacOsKeychain (java.lang.String, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String realm String userName String password boolean nonInteractive public static java.lang.String getPasswordFromMacOsKeychain (java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String realm String userName boolean nonInteractive public static boolean addPasswordToGnomeKeyring (java.lang.String, java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider) throws org.tmatesoft.svn.core.SVNException String realm String userName String password boolean nonInteractive org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider keyringPasswordProvider public static java.lang.String getPasswordFromGnomeKeyring (java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider) throws org.tmatesoft.svn.core.SVNException String realm String userName boolean nonInteractive org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider keyringPasswordProvider public static synchronized boolean isWinCryptEnabled () public static synchronized boolean isMacOsKeychainEnabled () public static synchronized boolean isGnomeKeyringEnabled () public static java.lang.String getApplicationDataPath (boolean) boolean common static void <clinit> () ClassLoader loader ClassNotFoundException e String jnaEnabledProperty }
org/tmatesoft/svn/core/internal/util/jna/ISVNGnomeKeyringLibrary$GnomeKeyringOperationDoneCallback.class
ISVNGnomeKeyringLibrary.java package org.tmatesoft.svn.core.internal.util.jna public abstract org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringOperationDoneCallback extends java.lang.Object implements com.sun.jna.Callback { public abstract void callback (int, com.sun.jna.Pointer) }
org/tmatesoft/svn/core/internal/util/jna/SVNOS2Util.class
SVNOS2Util.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.SVNOS2Util extends java.lang.Object { private static boolean ourIsJNAEnabled private static boolean ourIsOS2IO4JPresent private static Class os2io4jClazz private static java.lang.reflect.Method setReadOnlyMethod private static java.lang.reflect.Method setHiddenMethod private static java.lang.reflect.Method moveFileMethod public void <init> () public static void setJNAEnabled (boolean) boolean enabled public static boolean isOS2IO4JPresent () public static boolean setWritable (java.io.File) Object[] arguments Throwable th java.io.File file public static boolean setHidden (java.io.File, boolean) Object[] arguments Throwable th java.io.File file boolean hidden public static boolean moveFile (java.io.File, java.io.File) Object[] arguments Throwable th java.io.File src java.io.File dst static void <clinit> () Throwable e String jnaEnabledProperty }
org/tmatesoft/svn/core/internal/util/jna/ISVNGnomeKeyringLibrary.class
ISVNGnomeKeyringLibrary.java package org.tmatesoft.svn.core.internal.util.jna public abstract org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary extends java.lang.Object implements com.sun.jna.Library { public static final int GNOME_KEYRING_RESULT_OK public static final int GNOME_KEYRING_RESULT_DENIED public static final int GNOME_KEYRING_RESULT_NO_KEYRING_DAEMON public static final int GNOME_KEYRING_RESULT_ALREADY_UNLOCKED public static final int GNOME_KEYRING_RESULT_NO_SUCH_KEYRING public static final int GNOME_KEYRING_RESULT_BAD_ARGUMENTS public static final int GNOME_KEYRING_RESULT_IO_ERROR public static final int GNOME_KEYRING_RESULT_CANCELLED public static final int GNOME_KEYRING_RESULT_KEYRING_ALREADY_EXISTS public static final int GNOME_KEYRING_RESULT_NO_MATCH public abstract boolean gnome_keyring_is_available () public abstract void gnome_keyring_get_default_keyring (org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringOperationGetStringCallback, com.sun.jna.Pointer, com.sun.jna.Pointer) public abstract void gnome_keyring_get_info (java.lang.String, org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringOperationGetKeyringInfoCallback, com.sun.jna.Pointer, com.sun.jna.Pointer) public abstract com.sun.jna.Pointer gnome_keyring_info_copy (com.sun.jna.Pointer) public abstract boolean gnome_keyring_info_get_is_locked (com.sun.jna.Pointer) public abstract void gnome_keyring_unlock (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringOperationDoneCallback, com.sun.jna.Pointer, com.sun.jna.Pointer) public abstract int gnome_keyring_set_network_password_sync (java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, int, java.lang.String, com.sun.jna.ptr.IntByReference) public abstract int gnome_keyring_find_network_password_sync (java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, int, com.sun.jna.ptr.PointerByReference) public abstract void gnome_keyring_network_password_list_free (org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary$GList) public abstract void gnome_keyring_info_free (com.sun.jna.Pointer) }
org/tmatesoft/svn/core/internal/util/jna/ISVNCLibrary.class
ISVNCLibrary.java package org.tmatesoft.svn.core.internal.util.jna abstract org.tmatesoft.svn.core.internal.util.jna.ISVNCLibrary extends java.lang.Object implements com.sun.jna.Library { public abstract int chmod (java.lang.String, int) public abstract int readlink (java.lang.String, com.sun.jna.Pointer, int) public abstract int __lxstat64 (int, java.lang.String, com.sun.jna.Pointer) public abstract int lstat (java.lang.String, com.sun.jna.Pointer) public abstract int _lstat (java.lang.String, com.sun.jna.Pointer) public abstract int __xstat64 (int, java.lang.String, com.sun.jna.Pointer) public abstract int _stat (java.lang.String, com.sun.jna.Pointer) public abstract int stat (java.lang.String, com.sun.jna.Pointer) public abstract int symlink (java.lang.String, java.lang.String) public abstract int getuid () public abstract int getgid () }
org/tmatesoft/svn/core/internal/util/jna/ISVNKernel32Library$OSVERSIONINFO.class
ISVNKernel32Library.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library$OSVERSIONINFO extends com.sun.jna.Structure { public com.sun.jna.NativeLong dwOSVersionInfoSize public com.sun.jna.NativeLong dwMajorVersion public com.sun.jna.NativeLong dwMinorVersion public com.sun.jna.NativeLong dwBuildNumber public com.sun.jna.NativeLong dwPlatformId public char[] szCSDVersion public void <init> () int i }
org/tmatesoft/svn/core/internal/util/jna/SVNGnomeKeyring.class
SVNGnomeKeyring.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring extends java.lang.Object { private static final org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringOperationDoneCallback DONE_CALLBACK private static final org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringOperationGetKeyringInfoCallback GET_KEYRING_INFO_CALLBACK private static final org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringOperationGetStringCallback DEFAULT_KEYRING_CALLBACK public void <init> () public static boolean isEnabled () boolean gnomeSupported String gnomeKeyringOption boolean gnomeKeyringEnabled boolean librariesLoaded boolean enabled public static void initialize () org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary gLibrary String applicationName private static java.lang.String getDefaultKeyringName () org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary gnomeKeyringLibrary org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary gLibrary org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring$GnomeKeyringContext context String defaultKeyringName private static boolean checkKeyringIsLocked (java.lang.String) String keyringName org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary gnomeKeyringLibrary org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary gLibrary org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring$GnomeKeyringContext context private static void unlockKeyring (java.lang.String, java.lang.String) String keyringName String keyringPassword org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary gnomeKeyringLibrary org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary gLibrary org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring$GnomeKeyringContext context public static java.lang.String getPassword (java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider) throws org.tmatesoft.svn.core.SVNException String keyringPassword org.tmatesoft.svn.core.SVNErrorMessage error String realm String userName boolean nonInteractive org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider keyringPasswordProvider String defaultKeyring private static java.lang.String getPassword (java.lang.String, java.lang.String) org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringNetworkPasswordData item org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary$GList items String realm String userName org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary gnomeKeyringLibrary com.sun.jna.ptr.PointerByReference itemsReference int result String password public static boolean setPassword (java.lang.String, java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider) throws org.tmatesoft.svn.core.SVNException String keyringPassword org.tmatesoft.svn.core.SVNErrorMessage error String realm String userName String password boolean nonInteractive org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider keyringPasswordProvider String defaultKeyring private static boolean setPassword (java.lang.String, java.lang.String, java.lang.String) String realm String userName String password org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary gnomeKeyringLibrary com.sun.jna.ptr.IntByReference itemId int result private static void destroyKeyringContext (org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring$GnomeKeyringContext) org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring$GnomeKeyringContext context org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary gnomeKeyringLibrary static void <clinit> () }
org/tmatesoft/svn/core/internal/util/jna/ISVNSecurityLibrary$SecBufferDesc.class
ISVNSecurityLibrary.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecBufferDesc extends com.sun.jna.Structure { public com.sun.jna.NativeLong ulVersion public com.sun.jna.NativeLong cBuffers public com.sun.jna.Pointer pBuffers public void <init> () }
org/tmatesoft/svn/core/internal/util/jna/ISVNGLibrary.class
ISVNGLibrary.java package org.tmatesoft.svn.core.internal.util.jna public abstract org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary extends java.lang.Object implements com.sun.jna.Library { public abstract java.lang.String g_get_application_name () public abstract void g_set_application_name (java.lang.String) public abstract com.sun.jna.Pointer g_main_loop_new (com.sun.jna.Pointer, boolean) public abstract void g_main_loop_run (com.sun.jna.Pointer) public abstract void g_main_loop_quit (com.sun.jna.Pointer) }
org/tmatesoft/svn/core/internal/util/jna/ISVNKernel32Library.class
ISVNKernel32Library.java package org.tmatesoft.svn.core.internal.util.jna abstract org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library extends java.lang.Object implements com.sun.jna.win32.StdCallLibrary { public static final long FILE_ATTRIBUTE_READONLY public static final long FILE_ATTRIBUTE_HIDDEN public static final long FILE_ATTRIBUTE_NORMAL public static final int VER_PLATFORM_WIN32_WINDOWS public static final int VER_PLATFORM_WIN32_NT public abstract com.sun.jna.Pointer LocalFree (com.sun.jna.Pointer) public abstract int SetFileAttributesW (com.sun.jna.WString, com.sun.jna.NativeLong) public abstract int MoveFileW (com.sun.jna.WString, com.sun.jna.WString) public abstract int MoveFileExW (com.sun.jna.WString, com.sun.jna.WString, com.sun.jna.NativeLong) public abstract int GetVersionExW (com.sun.jna.Pointer) }
org/tmatesoft/svn/core/internal/util/jna/SVNGnomeKeyring$1.class
SVNGnomeKeyring.java package org.tmatesoft.svn.core.internal.util.jna final org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringOperationDoneCallback { void <init> () public void callback (int, com.sun.jna.Pointer) int result com.sun.jna.Pointer data org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary gLibrary org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring$GnomeKeyringContext context }
org/tmatesoft/svn/core/internal/util/jna/ISVNMacOsCFLibrary.class
ISVNMacOsCFLibrary.java package org.tmatesoft.svn.core.internal.util.jna public abstract org.tmatesoft.svn.core.internal.util.jna.ISVNMacOsCFLibrary extends java.lang.Object implements com.sun.jna.Library { public abstract void CFRelease (com.sun.jna.Pointer) }
org/tmatesoft/svn/core/internal/util/jna/ISVNWinCryptLibrary.class
ISVNWinCryptLibrary.java package org.tmatesoft.svn.core.internal.util.jna abstract org.tmatesoft.svn.core.internal.util.jna.ISVNWinCryptLibrary extends java.lang.Object implements com.sun.jna.win32.StdCallLibrary { public abstract boolean CryptProtectData (com.sun.jna.Pointer, com.sun.jna.WString, com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.NativeLong, com.sun.jna.Pointer) public abstract boolean CryptUnprotectData (com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.NativeLong, com.sun.jna.Pointer) }
org/tmatesoft/svn/core/internal/util/jna/SVNWinSecurity.class
SVNWinSecurity.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.SVNWinSecurity extends java.lang.Object { public void <init> () public static boolean isNativeLibraryAvailable () public static org.tmatesoft.svn.core.internal.util.jna.SVNWinSecurity$SVNNTSecurityParameters getSecurityParams (java.lang.String, java.lang.String, java.lang.String) String userName String password String ntDomain org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecHandle crdHandle org.tmatesoft.svn.core.internal.util.jna.SVNWinSecurity$SVNNTSecurityParameters secParams public static java.lang.String getAuthHeader (java.lang.String, org.tmatesoft.svn.core.internal.util.jna.SVNWinSecurity$SVNNTSecurityParameters) throws org.tmatesoft.svn.core.SVNException StringBuffer tokenBuffer byte[] tmp StringBuffer sb int resultLength org.tmatesoft.svn.core.SVNErrorMessage err String token org.tmatesoft.svn.core.internal.util.jna.SVNWinSecurity$SVNNTSecurityParameters params byte[] input byte[] nextTokenBytes private static byte[] getNextToken (org.tmatesoft.svn.core.internal.util.jna.SVNWinSecurity$SVNNTSecurityParameters, byte[]) org.tmatesoft.svn.core.internal.util.jna.SVNWinSecurity$SVNNTSecurityParameters params byte[] lastToken org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary library org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecHandle newContext org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecHandle pContext org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecBuffer outSecBuffer org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecBufferDesc outBufferDescription org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecBufferDesc inBufferDescription org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecBuffer inSecBuffer com.sun.jna.Pointer contextAttributes org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$TimeStamp ltime int securityStatus byte[] result boolean sequenceIsEnded private static org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecHandle getCredentialsHandle (java.lang.String, java.lang.String, java.lang.String) String user String password String domain org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary library org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SEC_WINNT_AUTH_IDENTITY authIdentity org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecHandle pCred org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$TimeStamp ltime int securityStatus private static void endSequence (org.tmatesoft.svn.core.internal.util.jna.SVNWinSecurity$SVNNTSecurityParameters) org.tmatesoft.svn.core.internal.util.jna.SVNWinSecurity$SVNNTSecurityParameters params org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary library }
org/tmatesoft/svn/core/internal/util/jna/ISVNGnomeKeyringLibrary$GnomeKeyringOperationGetStringCallback.class
ISVNGnomeKeyringLibrary.java package org.tmatesoft.svn.core.internal.util.jna public abstract org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringOperationGetStringCallback extends java.lang.Object implements com.sun.jna.Callback { public abstract void callback (int, com.sun.jna.Pointer, com.sun.jna.Pointer) }
org/tmatesoft/svn/core/internal/util/jna/ISVNSecurityLibrary$SecHandle.class
ISVNSecurityLibrary.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecHandle extends com.sun.jna.Structure { public com.sun.jna.NativeLong dwLower public com.sun.jna.NativeLong dwUpper public void <init> () }
org/tmatesoft/svn/core/internal/util/jna/ISVNSecurityLibrary$SEC_WINNT_AUTH_IDENTITY.class
ISVNSecurityLibrary.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SEC_WINNT_AUTH_IDENTITY extends com.sun.jna.Structure { public com.sun.jna.WString User public com.sun.jna.NativeLong UserLength public com.sun.jna.WString Domain public com.sun.jna.NativeLong DomainLength public com.sun.jna.WString Password public com.sun.jna.NativeLong PasswordLength public com.sun.jna.NativeLong Flags public void <init> () }
org/tmatesoft/svn/core/internal/util/jna/SVNGnomeKeyring$2.class
SVNGnomeKeyring.java package org.tmatesoft.svn.core.internal.util.jna final org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring$2 extends java.lang.Object implements org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringOperationGetKeyringInfoCallback { void <init> () public void callback (int, com.sun.jna.Pointer, com.sun.jna.Pointer) int result com.sun.jna.Pointer info com.sun.jna.Pointer data org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary gnomeKeyringLibrary org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary gLibrary org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring$GnomeKeyringContext context }
org/tmatesoft/svn/core/internal/util/jna/SVNGnomeKeyring$3.class
SVNGnomeKeyring.java package org.tmatesoft.svn.core.internal.util.jna final org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring$3 extends java.lang.Object implements org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringOperationGetStringCallback { void <init> () public void callback (int, com.sun.jna.Pointer, com.sun.jna.Pointer) String stringValue int result com.sun.jna.Pointer value com.sun.jna.Pointer data org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary gLibrary org.tmatesoft.svn.core.internal.util.jna.SVNGnomeKeyring$GnomeKeyringContext context }
org/tmatesoft/svn/core/internal/util/jna/SVNMacOsKeychain.class
SVNMacOsKeychain.java package org.tmatesoft.svn.core.internal.util.jna org.tmatesoft.svn.core.internal.util.jna.SVNMacOsKeychain extends java.lang.Object { private static final int ERR_SEC_ITEM_NOT_FOUND void <init> () static boolean isEnabled () public static synchronized boolean setPassword (java.lang.String, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException com.sun.jna.Pointer item byte[] rawRealm byte[] rawUserName int rawUserNameLength byte[] rawPassword com.sun.jna.ptr.PointerByReference itemHolder int status org.tmatesoft.svn.core.SVNErrorMessage error java.io.UnsupportedEncodingException e String realm String userName String password boolean nonInteractive org.tmatesoft.svn.core.internal.util.jna.ISVNMacOsSecurityLibrary library public static synchronized java.lang.String getPassword (java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error java.io.UnsupportedEncodingException e byte[] rawRealm byte[] rawUserName int rawUserNameLength com.sun.jna.ptr.IntByReference passwordLengthHolder com.sun.jna.ptr.PointerByReference passwordHolder int status com.sun.jna.Pointer passwordPointer int passwordLength byte[] rawPassword String password org.tmatesoft.svn.core.SVNErrorMessage error java.io.UnsupportedEncodingException e String realm String userName boolean nonInteractive org.tmatesoft.svn.core.internal.util.jna.ISVNMacOsSecurityLibrary library private static void release (com.sun.jna.Pointer) org.tmatesoft.svn.core.internal.util.jna.ISVNMacOsCFLibrary library com.sun.jna.Pointer pointer }
org/tmatesoft/svn/core/internal/util/jna/ISVNGLibrary$GList.class
ISVNGLibrary.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary$GList extends com.sun.jna.Structure { public com.sun.jna.Pointer data public com.sun.jna.Pointer next public com.sun.jna.Pointer previous public void <init> (com.sun.jna.Pointer) com.sun.jna.Pointer p }
org/tmatesoft/svn/core/internal/util/jna/SVNWinCrypt.class
SVNWinCrypt.java package org.tmatesoft.svn.core.internal.util.jna org.tmatesoft.svn.core.internal.util.jna.SVNWinCrypt extends java.lang.Object { void <init> () public static java.lang.String decrypt (java.lang.String) Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library kernel boolean ok Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library kernel Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library kernel byte[] decryptedData Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library kernel Throwable th Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library kernel String encryptedData org.tmatesoft.svn.core.internal.util.jna.ISVNWinCryptLibrary library byte[] buffer StringBuffer sb int decodedBytes byte[] decodedBuffer org.tmatesoft.svn.core.internal.util.jna.ISVNWinCryptLibrary$DATA_BLOB dataIn org.tmatesoft.svn.core.internal.util.jna.ISVNWinCryptLibrary$DATA_BLOB dataOut public static java.lang.String encrypt (java.lang.String) Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library kernel java.io.UnsupportedEncodingException e Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library kernel boolean ok Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library kernel Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library kernel byte[] encryptedData Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library kernel Throwable th Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library kernel String rawData org.tmatesoft.svn.core.internal.util.jna.ISVNWinCryptLibrary library org.tmatesoft.svn.core.internal.util.jna.ISVNWinCryptLibrary$DATA_BLOB dataIn org.tmatesoft.svn.core.internal.util.jna.ISVNWinCryptLibrary$DATA_BLOB dataOut public static synchronized boolean isEnabled () }
org/tmatesoft/svn/core/internal/util/jna/ISVNGnomeKeyringLibrary$GnomeKeyringOperationGetKeyringInfoCallback.class
ISVNGnomeKeyringLibrary.java package org.tmatesoft.svn.core.internal.util.jna public abstract org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary$GnomeKeyringOperationGetKeyringInfoCallback extends java.lang.Object implements com.sun.jna.Callback { public abstract void callback (int, com.sun.jna.Pointer, com.sun.jna.Pointer) }
org/tmatesoft/svn/core/internal/util/jna/ISVNSecurityLibrary$SecBuffer.class
ISVNSecurityLibrary.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecBuffer extends com.sun.jna.Structure { public com.sun.jna.NativeLong cbBuffer public com.sun.jna.NativeLong BufferType public com.sun.jna.Pointer pvBuffer public void <init> () }
org/tmatesoft/svn/core/internal/util/jna/SVNWinSecurity$SVNNTSecurityParameters.class
SVNWinSecurity.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.SVNWinSecurity$SVNNTSecurityParameters extends java.lang.Object { public String myUsername public String myPassword public String myNTDomain public int myState public org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecHandle myCrdHandle public org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$SecHandle myCtxHandle public void <init> () }
org/tmatesoft/svn/core/internal/util/jna/ISVNSecurityLibrary.class
ISVNSecurityLibrary.java package org.tmatesoft.svn.core.internal.util.jna public abstract org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary extends java.lang.Object implements com.sun.jna.win32.StdCallLibrary { public static final int SEC_WINNT_AUTH_IDENTITY_ANSI public static final int SEC_WINNT_AUTH_IDENTITY_UNICODE public static final int SECPKG_CRED_OUTBOUND public static final int SECURITY_NATIVE_DREP public static final int SECBUFFER_TOKEN public static final int SEC_I_CONTINUE_NEEDED public static final int SEC_I_COMPLETE_NEEDED public static final int SEC_I_COMPLETE_AND_CONTINUE public abstract int FreeCredentialsHandle (com.sun.jna.Pointer) public abstract int AcquireCredentialsHandleW (com.sun.jna.WString, com.sun.jna.WString, com.sun.jna.NativeLong, com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.Pointer) public abstract int FreeContextBuffer (com.sun.jna.Pointer) public abstract int InitializeSecurityContextW (com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.WString, com.sun.jna.NativeLong, com.sun.jna.NativeLong, com.sun.jna.NativeLong, com.sun.jna.Pointer, com.sun.jna.NativeLong, com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.Pointer) public abstract int CompleteAuthToken (com.sun.jna.Pointer, com.sun.jna.Pointer) public abstract int DeleteSecurityContext (com.sun.jna.Pointer) }
org/tmatesoft/svn/core/internal/util/jna/ISVNWin32Library$HRESULT.class
ISVNWin32Library.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.ISVNWin32Library$HRESULT extends com.sun.jna.NativeLong { private static final long serialVersionUID public void <init> () }
org/tmatesoft/svn/core/internal/util/jna/JNALibraryLoader.class
JNALibraryLoader.java package org.tmatesoft.svn.core.internal.util.jna org.tmatesoft.svn.core.internal.util.jna.JNALibraryLoader extends java.lang.Object { private static final String GLIB_LIBRARY private static final String GNOME_KEYRING_LIBRARY private static org.tmatesoft.svn.core.internal.util.jna.ISVNWinCryptLibrary ourWinCryptLibrary private static org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library ourKenrelLibrary private static org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary ourSecurityLibrary private static org.tmatesoft.svn.core.internal.util.jna.ISVNCLibrary ourCLibrary private static org.tmatesoft.svn.core.internal.util.jna.ISVNWin32Library ourWin32Library private static org.tmatesoft.svn.core.internal.util.jna.ISVNMacOsSecurityLibrary ourMacOsSecurityLibrary private static org.tmatesoft.svn.core.internal.util.jna.ISVNMacOsCFLibrary ourMacOsCFLibrary private static org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary ourGnomeKeyringLibrary private static org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary ourGLibrary private static volatile int ourUID private static volatile int ourGID void <init> () private static java.lang.String getGLibraryName () private static java.lang.String getGnomeKeyringLibraryName () public static int getUID () public static int getGID () public static synchronized org.tmatesoft.svn.core.internal.util.jna.ISVNWinCryptLibrary getWinCryptLibrary () public static synchronized org.tmatesoft.svn.core.internal.util.jna.ISVNWin32Library getWin32Library () public static synchronized org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library getKernelLibrary () public static synchronized org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary getSecurityLibrary () public static synchronized org.tmatesoft.svn.core.internal.util.jna.ISVNCLibrary getCLibrary () public static synchronized org.tmatesoft.svn.core.internal.util.jna.ISVNMacOsSecurityLibrary getMacOsSecurityLibrary () public static synchronized org.tmatesoft.svn.core.internal.util.jna.ISVNMacOsCFLibrary getMacOsCFLibrary () public static synchronized org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary getGnomeKeyringLibrary () public static synchronized org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary getGLibrary () private static java.lang.String getSecurityLibraryName () int rc Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library library org.tmatesoft.svn.core.internal.util.jna.ISVNKernel32Library$OSVERSIONINFO osInfo static void <clinit> () String securityLibraryName Throwable th Throwable th Throwable th Throwable th org.tmatesoft.svn.core.internal.util.jna.ISVNGnomeKeyringLibrary gnomeKeyringLibrary org.tmatesoft.svn.core.internal.util.jna.ISVNGLibrary gLibrary Class[] callSites Throwable th Throwable th }
org/tmatesoft/svn/core/internal/util/jna/ISVNWinCryptLibrary$DATA_BLOB.class
ISVNWinCryptLibrary.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.ISVNWinCryptLibrary$DATA_BLOB extends com.sun.jna.Structure { public com.sun.jna.NativeLong cbSize public com.sun.jna.Pointer cbData public void <init> (byte[]) byte[] bytes }
org/tmatesoft/svn/core/internal/util/jna/ISVNSecurityLibrary$TimeStamp.class
ISVNSecurityLibrary.java package org.tmatesoft.svn.core.internal.util.jna public org.tmatesoft.svn.core.internal.util.jna.ISVNSecurityLibrary$TimeStamp extends com.sun.jna.Structure { public com.sun.jna.NativeLong LowPart public com.sun.jna.NativeLong HighPart public void <init> () }
org/tmatesoft/svn/core/internal/util/jna/ISVNWin32Library.class
ISVNWin32Library.java package org.tmatesoft.svn.core.internal.util.jna public abstract org.tmatesoft.svn.core.internal.util.jna.ISVNWin32Library extends java.lang.Object implements com.sun.jna.win32.StdCallLibrary { public static final org.tmatesoft.svn.core.internal.util.jna.ISVNWin32Library$DWORD SHGFP_TYPE_CURRENT public static final org.tmatesoft.svn.core.internal.util.jna.ISVNWin32Library$DWORD SHGFP_TYPE_DEFAULT public static final int CSIDL_APPDATA public static final int CSIDL_COMMON_APPDATA public abstract org.tmatesoft.svn.core.internal.util.jna.ISVNWin32Library$HRESULT SHGetFolderPathW (com.sun.jna.Pointer, int, com.sun.jna.Pointer, org.tmatesoft.svn.core.internal.util.jna.ISVNWin32Library$DWORD, char[]) static void <clinit> () }
org/tmatesoft/svn/core/internal/io/
org/tmatesoft/svn/core/internal/io/fs/
org/tmatesoft/svn/core/internal/io/fs/FSInputStream.class
FSInputStream.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSInputStream extends java.io.InputStream { private java.util.LinkedList myRepStateList private int myChunkIndex private boolean isChecksumFinalized private String myHexChecksum private long myLength private long myOffset private java.security.MessageDigest myDigest private java.nio.ByteBuffer myBuffer private org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner myCombiner private void <init> (org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner, org.tmatesoft.svn.core.internal.io.fs.FSRepresentation, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.security.NoSuchAlgorithmException nsae org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner combiner org.tmatesoft.svn.core.internal.io.fs.FSRepresentation representation org.tmatesoft.svn.core.internal.io.fs.FSFS owner public static java.io.InputStream createDeltaStream (org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner combiner org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode fileNode org.tmatesoft.svn.core.internal.io.fs.FSFS owner org.tmatesoft.svn.core.internal.io.fs.FSRepresentation representation public static java.io.InputStream createDeltaStream (org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner, org.tmatesoft.svn.core.internal.io.fs.FSRepresentation, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner combiner org.tmatesoft.svn.core.internal.io.fs.FSRepresentation fileRep org.tmatesoft.svn.core.internal.io.fs.FSFS owner public int read (byte[], int, int) throws java.io.IOException org.tmatesoft.svn.core.SVNException svne byte[] buf int offset int length public int read () throws java.io.IOException byte[] buf int r private int readContents (byte[], int, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String hexDigest byte[] buf int offset int length private int getContents (byte[], int, int) throws org.tmatesoft.svn.core.SVNException int copyLength org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSInputStream$FSRepresentationState curState org.tmatesoft.svn.core.io.diff.SVNDiffWindow window java.nio.ByteBuffer target java.util.ListIterator states org.tmatesoft.svn.core.internal.io.fs.FSInputStream$FSRepresentationState resultState byte[] buffer int offset int length int remaining int targetPos int read public void close () org.tmatesoft.svn.core.internal.io.fs.FSInputStream$FSRepresentationState state java.util.Iterator states private org.tmatesoft.svn.core.internal.io.fs.FSInputStream$FSRepresentationState buildRepresentationList (org.tmatesoft.svn.core.internal.io.fs.FSRepresentation, java.util.LinkedList, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSInputStream$FSRepresentationState repState int r byte[] header org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.fs.FSRepresentation firstRep java.util.LinkedList result org.tmatesoft.svn.core.internal.io.fs.FSFS owner org.tmatesoft.svn.core.internal.io.fs.FSFile file org.tmatesoft.svn.core.internal.io.fs.FSRepresentation rep java.nio.ByteBuffer buffer public static org.tmatesoft.svn.core.internal.io.fs.FSInputStream$FSRepresentationState readRepresentationLine (org.tmatesoft.svn.core.internal.io.fs.FSFile) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String baseRevision String baseOffset org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String line org.tmatesoft.svn.core.internal.io.fs.FSInputStream$FSRepresentationState repState int delimiterInd String header org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.fs.FSFile file }
org/tmatesoft/svn/core/internal/io/fs/FSFileRevisionsFinder$1.class
FSFileRevisionsFinder.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$1 extends java.lang.Object implements java.util.Comparator { final synthetic org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder this$0 void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder) public int compare (java.lang.Object, java.lang.Object) Object arg0 Object arg1 org.tmatesoft.svn.core.io.SVNLocationEntry pathRevision1 org.tmatesoft.svn.core.io.SVNLocationEntry pathRevision2 }
org/tmatesoft/svn/core/internal/io/fs/FSLog$1.class
FSLog.java package org.tmatesoft.svn.core.internal.io.fs final org.tmatesoft.svn.core.internal.io.fs.FSLog$1 extends java.lang.Object implements java.util.Comparator { void <init> () public int compare (java.lang.Object, java.lang.Object) Object arg1 Object arg2 org.tmatesoft.svn.core.internal.io.fs.FSLog$RangeListPath rangeListPath1 org.tmatesoft.svn.core.internal.io.fs.FSLog$RangeListPath rangeListPath2 org.tmatesoft.svn.core.SVNMergeRange[] ranges1 org.tmatesoft.svn.core.SVNMergeRange[] ranges2 org.tmatesoft.svn.core.SVNMergeRange range1 org.tmatesoft.svn.core.SVNMergeRange range2 }
org/tmatesoft/svn/core/internal/io/fs/FSFileRevisionsFinder$SendBaton.class
FSFileRevisionsFinder.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton extends java.lang.Object { private org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot myLastRoot private String myLastPath private org.tmatesoft.svn.core.SVNProperties myLastProps private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$1) org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$1 x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$102 (org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic org.tmatesoft.svn.core.SVNProperties access$100 (org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton) org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton x0 static synthetic org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot access$200 (org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton) org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton x0 static synthetic java.lang.String access$300 (org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton) org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton x0 static synthetic org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot access$202 (org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot) org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton x0 org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot x1 static synthetic java.lang.String access$302 (org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton, java.lang.String) org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton x0 String x1 }
org/tmatesoft/svn/core/internal/io/fs/FSOutputStream$1.class
FSOutputStream.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSOutputStream$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction { final synthetic org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager val$reposCacheManager final synthetic org.tmatesoft.svn.core.internal.io.fs.FSRepresentation val$rep final synthetic long[] val$truncateToSize final synthetic org.tmatesoft.svn.core.internal.io.fs.FSOutputStream this$0 void <init> (org.tmatesoft.svn.core.internal.io.fs.FSOutputStream, org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager, org.tmatesoft.svn.core.internal.io.fs.FSRepresentation, long[]) public void run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRepresentation oldRep }
org/tmatesoft/svn/core/internal/io/fs/FSCommitter$2.class
FSCommitter.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSCommitter$2 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLockHandler { final synthetic String val$username final synthetic java.util.Collection val$lockTokens final synthetic org.tmatesoft.svn.core.internal.io.fs.FSCommitter this$0 void <init> (org.tmatesoft.svn.core.internal.io.fs.FSCommitter, java.lang.String, java.util.Collection) public void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/io/fs/FSLog$RangeListPath.class
FSLog.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSLog$RangeListPath extends java.lang.Object { String myPath org.tmatesoft.svn.core.SVNMergeRangeList myRangeList final synthetic org.tmatesoft.svn.core.internal.io.fs.FSLog this$0 private void <init> (org.tmatesoft.svn.core.internal.io.fs.FSLog) synthetic void <init> (org.tmatesoft.svn.core.internal.io.fs.FSLog, org.tmatesoft.svn.core.internal.io.fs.FSLog$1) org.tmatesoft.svn.core.internal.io.fs.FSLog x0 org.tmatesoft.svn.core.internal.io.fs.FSLog$1 x1 }
org/tmatesoft/svn/core/internal/io/fs/FSCommitter$1.class
FSCommitter.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSCommitter$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction { final synthetic String val$startNodeId final synthetic String val$startCopyId final synthetic long val$newRevision final synthetic java.io.OutputStream val$protoFileOS final synthetic org.tmatesoft.svn.core.internal.io.fs.FSID val$newRootId final synthetic org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot val$txnRoot final synthetic java.io.File val$revisionPrototypeFile final synthetic long val$offset final synthetic org.tmatesoft.svn.core.internal.io.fs.FSCommitter this$0 void <init> (org.tmatesoft.svn.core.internal.io.fs.FSCommitter, java.lang.String, java.lang.String, long, java.io.OutputStream, org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot, java.io.File, long) public void run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/io/fs/FSLog.class
FSLog.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSLog extends java.lang.Object { private static final int MAX_OPEN_HISTORIES private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS private String[] myPaths private boolean myIsDescending private boolean myIsDiscoverChangedPaths private boolean myIsStrictNode private boolean myIsIncludeMergedRevisions private long myStartRevision private long myEndRevision private long myLimit private org.tmatesoft.svn.core.ISVNLogEntryHandler myHandler private org.tmatesoft.svn.core.internal.wc.SVNMergeInfoManager myMergeInfoManager private String[] myRevPropNames private static final java.util.Comparator RLP_COMPARATOR private static final java.util.Comparator PLR_COMPARATOR public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFS, java.lang.String[], long, long, long, boolean, boolean, boolean, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) org.tmatesoft.svn.core.internal.io.fs.FSFS owner String[] paths long limit long start long end boolean descending boolean discoverChangedPaths boolean strictNode boolean includeMergedRevisions String[] revPropNames org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void reset (org.tmatesoft.svn.core.internal.io.fs.FSFS, java.lang.String[], long, long, long, boolean, boolean, boolean, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) org.tmatesoft.svn.core.internal.io.fs.FSFS owner String[] paths long limit long start long end boolean descending boolean discoverChangedPaths boolean strictNode boolean includeMergedRevisions String[] revPropNames org.tmatesoft.svn.core.ISVNLogEntryHandler handler public long runLog () throws org.tmatesoft.svn.core.SVNException long rev int i long count java.util.Map logTargetHistoryAsMergeInfo private long doLogs (java.lang.String[], java.util.Map, java.util.Set, long, long, boolean, boolean, boolean, boolean, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSLog$PathInfo info int i org.tmatesoft.svn.core.internal.io.fs.FSLog$PathInfo info int i java.util.LinkedList currentPaths boolean hasChildren java.util.Map addedMergeInfo java.util.Map deletedMergeInfo java.util.Map[] mergeInfo boolean changed long currentRev boolean hasChildren java.util.Map[] mergeInfo long rev int i String[] paths java.util.Map logTargetHistoryAsMergeinfo java.util.Set nestedMerges long startRevision long endRevision boolean includeMergedRevisions boolean subtractiveMerge boolean handlingMergedRevisions boolean isDescendingOrder long limit long sendCount org.tmatesoft.svn.core.internal.io.fs.FSLog$PathInfo[] histories java.util.LinkedList revisions java.util.Map revMergeInfo boolean anyHistoriesLeft private long getNextHistoryRevision (org.tmatesoft.svn.core.internal.io.fs.FSLog$PathInfo[]) org.tmatesoft.svn.core.internal.io.fs.FSLog$PathInfo info int i org.tmatesoft.svn.core.internal.io.fs.FSLog$PathInfo[] histories long nextRevision private void sendLog (long, java.util.Map, java.util.Set, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNMergeRangeList rangeList org.tmatesoft.svn.core.SVNMergeRange[] ranges String mergedPath java.util.Iterator mergedPaths String changedPath java.util.Iterator changedPaths boolean pathIsInHistory long revision java.util.Map logTargetHistoryAsMergeInfo java.util.Set nestedMerges boolean subtractiveMerge boolean handlingMergedRevision boolean hasChildren org.tmatesoft.svn.core.SVNLogEntry logEntry boolean revisionIsInteresting private org.tmatesoft.svn.core.SVNLogEntry fillLogEntry (long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root String propName org.tmatesoft.svn.core.SVNPropertyValue propVal int i String author String datestamp java.util.Date date org.tmatesoft.svn.core.SVNProperties revisionProps long revision boolean discoverChangedPaths java.util.Map changedPaths org.tmatesoft.svn.core.SVNProperties entryRevProps boolean getRevProps boolean censorRevProps org.tmatesoft.svn.core.SVNLogEntry entry private void handleMergedRevisions (java.util.Map, java.util.Map, java.util.Map, java.util.Set) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorCode errCode org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.fs.FSLog$PathListRange pathListRange int i java.util.Map addedMergeInfo java.util.Map deletedMergeInfo java.util.Map logTargetHistoryAsMergeInfo java.util.Set nestedMerges java.util.LinkedList combinedList private java.util.Map getPathsHistoryAsMergeInfo (java.lang.String[], long, long) throws org.tmatesoft.svn.core.SVNException long temp java.util.Map mergeInfo int i String[] paths long startRevision long endRevision java.util.Map target org.tmatesoft.svn.core.internal.io.fs.FSLocationsFinder locationsFinder java.util.Collection locationSegments org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler locationsReceiver private org.tmatesoft.svn.core.internal.io.fs.FSLog$PathInfo[] getPathHistories (java.lang.String[], long, long, boolean) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.internal.io.fs.FSLog$PathInfo pathHistory int i String[] paths long start long end boolean strictNodeHistory org.tmatesoft.svn.core.internal.io.fs.FSLog$PathInfo[] histories org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root private java.util.Map[] getCombinedMergeInfoChanges (java.lang.String[], long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e String path long[] appearedRevision org.tmatesoft.svn.core.io.SVNLocationEntry prevLocation String prevPath long prevRevision org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot prevRoot String[] queryPaths java.util.Map catalog org.tmatesoft.svn.core.SVNMergeInfo prevMergeinfo org.tmatesoft.svn.core.SVNMergeInfo mergeInfo java.util.Map deleted java.util.Map added int i String path java.util.Map deletedMergeInfo int i String changedPath java.util.Map addedMergeInfo java.util.Iterator ps String[] paths long revision java.util.Map resultAdded java.util.Map resultDeleted java.util.Map addedMergeInfoCatalog java.util.Map deletedMergeInfoCatalog org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root private void collectChangedMergeInfo (java.util.Map, java.util.Map, long) throws org.tmatesoft.svn.core.SVNException String copyFromPath long copyFromRev long[] appearedRevision org.tmatesoft.svn.core.io.SVNLocationEntry prevLocation org.tmatesoft.svn.core.SVNProperties props String[] queryPaths java.util.Map tmpCatalog org.tmatesoft.svn.core.SVNMergeInfo tmpMergeInfo String[] queryPaths java.util.Map tmpCatalog org.tmatesoft.svn.core.SVNMergeInfo tmpMergeInfo java.util.Map mergeInfo java.util.Map previousMergeInfo java.util.Map added java.util.Map deleted String changedPath org.tmatesoft.svn.core.internal.io.fs.FSPathChange change org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind changeKind String basePath long baseRevision String mergeInfoValue String previousMergeInfoValue org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot baseRoot org.tmatesoft.svn.core.SVNProperties props java.util.Iterator paths java.util.Map addedMergeInfo java.util.Map deletedMergeInfo long revision org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root java.util.Map changedPaths private java.util.LinkedList combineMergeInfoPathLists (java.util.Map, boolean) org.tmatesoft.svn.core.SVNMergeRange range int i String path org.tmatesoft.svn.core.SVNMergeRangeList changes org.tmatesoft.svn.core.internal.io.fs.FSLog$RangeListPath rangeListPath org.tmatesoft.svn.core.SVNMergeRange[] rangesArray java.util.Iterator pathsIter org.tmatesoft.svn.core.internal.io.fs.FSLog$RangeListPath rp int i org.tmatesoft.svn.core.SVNMergeRange[] ranges org.tmatesoft.svn.core.internal.io.fs.FSLog$RangeListPath rp org.tmatesoft.svn.core.SVNMergeRange range int i org.tmatesoft.svn.core.internal.io.fs.FSLog$RangeListPath rangeListPath org.tmatesoft.svn.core.internal.io.fs.FSLog$RangeListPath firstRLP long youngest long nextYoungest int numRevs long youngestEnd long tail org.tmatesoft.svn.core.internal.io.fs.FSLog$PathListRange pathListRange java.util.List paths org.tmatesoft.svn.core.internal.io.fs.FSLog$PathListRange pathListRange org.tmatesoft.svn.core.SVNMergeRange[] ranges org.tmatesoft.svn.core.internal.io.fs.FSLog$RangeListPath firstRangeListPath java.util.Map mergeInfo boolean reverseMerge java.util.List rangeListPaths java.util.LinkedList combinedList private org.tmatesoft.svn.core.internal.wc.SVNMergeInfoManager getMergeInfoManager () static synthetic org.tmatesoft.svn.core.internal.io.fs.FSFS access$300 (org.tmatesoft.svn.core.internal.io.fs.FSLog) org.tmatesoft.svn.core.internal.io.fs.FSLog x0 static void <clinit> () }
org/tmatesoft/svn/core/internal/io/fs/FSCommitter.class
FSCommitter.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSCommitter extends java.lang.Object { private static volatile boolean ourAutoUnlock private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS private org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot myTxnRoot private org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo myTxn private java.util.Collection myLockTokens private java.util.Map myAutoUnlockPaths private String myAuthor public static synchronized void setAutoUnlock (boolean) boolean autoUnlock public static synchronized boolean isAutoUnlock () public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot, org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo, java.util.Collection, java.lang.String) org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn java.util.Collection lockTokens String author public java.util.Map getAutoUnlockPaths () public void deleteNode (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long mergeInfoCount String path org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath org.tmatesoft.svn.core.SVNNodeKind kind public void changeNodeProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException long increment boolean hadMergeInfo String path String name org.tmatesoft.svn.core.SVNPropertyValue propValue org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNProperties properties public void makeCopy (org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind changeKind org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot fromRoot String fromPath String toPath boolean preserveHistory org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot String txnId org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode fromNode org.tmatesoft.svn.core.internal.io.fs.FSParentPath toParentPath org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind changeKind long mergeInfoStart String fromCanonPath long mergeInfoEnd org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode newNode public void makeFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot String txnId org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode childNode public void makeDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot String txnId org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode subDirNode public org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode makeEntry (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, java.lang.String, java.lang.String, boolean, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode parent String parentPath String entryName boolean isDir String txnId org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode newRevNode String createdPath org.tmatesoft.svn.core.internal.io.fs.FSID newNodeId org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode childNode org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot public void addChange (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind, boolean, boolean, long, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSPathChange pathChange org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String path org.tmatesoft.svn.core.internal.io.fs.FSID id org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind changeKind boolean textModified boolean propsModified long copyFromRevision String copyFromPath org.tmatesoft.svn.core.SVNNodeKind kind java.io.OutputStream changesFile public long commitTxn (boolean, boolean, org.tmatesoft.svn.core.SVNErrorMessage[], java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException long youngestRev org.tmatesoft.svn.core.SVNException svne long youngishRev org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot youngishRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode youngishRootNode org.tmatesoft.svn.core.internal.io.fs.FSWriteLock writeLock org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.SVNErrorMessage childErr org.tmatesoft.svn.core.SVNException svne boolean runPreCommitHook boolean runPostCommitHook org.tmatesoft.svn.core.SVNErrorMessage[] postCommitHookError StringBuffer conflictPath long newRevision public void makePathMutable (org.tmatesoft.svn.core.internal.io.fs.FSParentPath, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSID parentId String copyId String copyRootPath long copyRootRevision org.tmatesoft.svn.core.internal.io.fs.FSRoot copyrootRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode copyRootNode org.tmatesoft.svn.core.internal.io.fs.FSID childId org.tmatesoft.svn.core.internal.io.fs.FSID copyRootId boolean isParentCopyRoot String clonePath org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath String errorPath org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot String txnId org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode clone public java.lang.String reserveCopyId (java.lang.String) throws org.tmatesoft.svn.core.SVNException String txnId org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot String[] nextIds String copyId public void incrementMergeInfoUpTree (org.tmatesoft.svn.core.internal.io.fs.FSParentPath, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath long increment private void copy (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, boolean, long, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSID srcId org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode toRevNode String copyId String createdPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode toNode String entryName org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode fromNode boolean preserveHistory long fromRevision String fromPath String txnId org.tmatesoft.svn.core.internal.io.fs.FSID id org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot private org.tmatesoft.svn.core.internal.io.fs.FSID createNode (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode String copyId String txnId org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot String nodeId org.tmatesoft.svn.core.internal.io.fs.FSID id private long commit () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String[] ids String startNodeId String startCopyId java.io.File revisionPrototypeFile long offset java.io.File dstRevFile java.io.File dstRevPropsFile org.tmatesoft.svn.core.SVNProperties revProperties org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.io.fs.FSFile fsfProps org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe long oldRev String startNodeId String startCopyId long newRevision java.io.OutputStream protoFileOS org.tmatesoft.svn.core.internal.io.fs.FSID newRootId org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSWriteLock txnWriteLock String commitTime org.tmatesoft.svn.core.SVNProperties presetRevisionProperties java.io.File txnPropsFile private void commit (java.lang.String, java.lang.String, long, java.io.OutputStream, org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot, java.io.File, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSID rootId org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream revWriter long changedPathOffset String offsetsLine org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String startNodeId String startCopyId long newRevision java.io.OutputStream protoFileOS org.tmatesoft.svn.core.internal.io.fs.FSID newRootId org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot java.io.File revisionPrototypeFile long offset org.tmatesoft.svn.core.SVNProperties txnProps public static void mergeChanges (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSFS owner org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode sourceNode StringBuffer conflictPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode txnRootNode org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode ancestorNode private static long merge (org.tmatesoft.svn.core.internal.io.fs.FSFS, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode targetEntryNode long mergeInfoStart org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode sourceEntryNode long mergeInfoEnd org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode sourceEntryNode org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode targetEntryNode org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode ancestorEntryNode String childTargetPath long subMergeInfoIncrement String ancestorEntryName org.tmatesoft.svn.core.internal.io.fs.FSEntry ancestorEntry org.tmatesoft.svn.core.internal.io.fs.FSEntry sourceEntry org.tmatesoft.svn.core.internal.io.fs.FSEntry targetEntry java.util.Iterator ancestorEntryNames org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode sourceEntryNode long mergeInfoCount String sourceEntryName org.tmatesoft.svn.core.internal.io.fs.FSEntry sourceEntry org.tmatesoft.svn.core.internal.io.fs.FSEntry targetEntry java.util.Iterator sourceEntryNames org.tmatesoft.svn.core.internal.io.fs.FSFS owner String targetPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode target org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode source org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode ancestor org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot StringBuffer conflictPath org.tmatesoft.svn.core.internal.io.fs.FSID sourceId org.tmatesoft.svn.core.internal.io.fs.FSID targetId org.tmatesoft.svn.core.internal.io.fs.FSID ancestorId long mergeInfoIncrement java.util.Map sourceEntries java.util.Map targetEntries java.util.Map ancestorEntries java.util.Set removedEntries long sourceCount private static void updateAncestry (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.internal.io.fs.FSID, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSFS owner org.tmatesoft.svn.core.internal.io.fs.FSID sourceId org.tmatesoft.svn.core.internal.io.fs.FSID targetId String targetPath long sourcePredecessorCount org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode private void verifyLocks () throws org.tmatesoft.svn.core.SVNException String changedPath boolean recurse org.tmatesoft.svn.core.internal.io.fs.FSPathChange change int i org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot java.util.Map changes Object[] changedPaths String lastRecursedPath private org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot getTxnRoot () throws org.tmatesoft.svn.core.SVNException public void allowLockedOperation (org.tmatesoft.svn.core.internal.io.fs.FSFS, java.lang.String, java.lang.String, java.util.Collection, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNLockHandler handler org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs String path String username java.util.Collection lockTokens boolean recursive boolean haveWriteLock private void scheduleForAutoUnlock (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNLock) String username String path org.tmatesoft.svn.core.SVNLock lock private void verifyLock (org.tmatesoft.svn.core.SVNLock, java.util.Collection, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNLock lock java.util.Collection lockTokens String username org.tmatesoft.svn.core.SVNErrorMessage err public static void abortTransaction (org.tmatesoft.svn.core.internal.io.fs.FSFS, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs String txnId java.io.File txnDir static synthetic void access$000 (org.tmatesoft.svn.core.internal.io.fs.FSCommitter, java.lang.String, java.lang.String, long, java.io.OutputStream, org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot, java.io.File, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSCommitter x0 String x1 String x2 long x3 java.io.OutputStream x4 org.tmatesoft.svn.core.internal.io.fs.FSID x5 org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot x6 java.io.File x7 long x8 static synthetic void access$100 (org.tmatesoft.svn.core.internal.io.fs.FSCommitter, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNLock) org.tmatesoft.svn.core.internal.io.fs.FSCommitter x0 String x1 String x2 org.tmatesoft.svn.core.SVNLock x3 static synthetic void access$200 (org.tmatesoft.svn.core.internal.io.fs.FSCommitter, org.tmatesoft.svn.core.SVNLock, java.util.Collection, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSCommitter x0 org.tmatesoft.svn.core.SVNLock x1 java.util.Collection x2 String x3 }
org/tmatesoft/svn/core/internal/io/fs/FSNodeHistory.class
FSNodeHistory.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSNodeHistory extends java.lang.Object { private org.tmatesoft.svn.core.io.SVNLocationEntry myHistoryEntry private org.tmatesoft.svn.core.io.SVNLocationEntry mySearchResumeEntry private boolean myIsInteresting private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS public void <init> (org.tmatesoft.svn.core.io.SVNLocationEntry, boolean, org.tmatesoft.svn.core.io.SVNLocationEntry, org.tmatesoft.svn.core.internal.io.fs.FSFS) org.tmatesoft.svn.core.io.SVNLocationEntry newHistoryEntry boolean interesting org.tmatesoft.svn.core.io.SVNLocationEntry newSearchResumeEntry org.tmatesoft.svn.core.internal.io.fs.FSFS owner public org.tmatesoft.svn.core.io.SVNLocationEntry getHistoryEntry () public static org.tmatesoft.svn.core.io.SVNLocationEntry findYoungestCopyroot (java.io.File, org.tmatesoft.svn.core.internal.io.fs.FSParentPath) throws org.tmatesoft.svn.core.SVNException java.io.File reposRootDir org.tmatesoft.svn.core.internal.io.fs.FSParentPath parPath org.tmatesoft.svn.core.io.SVNLocationEntry parentEntry org.tmatesoft.svn.core.io.SVNLocationEntry myEntry public static boolean checkAncestryOfPegPath (java.lang.String, long, long, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String fsPath long pegRev long futureRev org.tmatesoft.svn.core.internal.io.fs.FSFS owner org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.internal.io.fs.FSNodeHistory history org.tmatesoft.svn.core.io.SVNLocationEntry currentHistory private org.tmatesoft.svn.core.internal.io.fs.FSNodeHistory historyPrev (boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSID predId String copySrc org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot copyrootRoot String copyDst String reminder boolean retry boolean crossCopies String path long revision boolean reported org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode org.tmatesoft.svn.core.io.SVNLocationEntry commitEntry org.tmatesoft.svn.core.internal.io.fs.FSNodeHistory prevHist org.tmatesoft.svn.core.io.SVNLocationEntry copyrootEntry org.tmatesoft.svn.core.io.SVNLocationEntry srcEntry long dstRev public org.tmatesoft.svn.core.internal.io.fs.FSNodeHistory getPreviousHistory (boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSNodeHistory prevHist boolean crossCopies }
org/tmatesoft/svn/core/internal/io/fs/IFSRepresentationCacheManager.class
IFSRepresentationCacheManager.java package org.tmatesoft.svn.core.internal.io.fs public abstract org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager extends java.lang.Object { public abstract void insert (org.tmatesoft.svn.core.internal.io.fs.FSRepresentation, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void runWriteTransaction (org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction) throws org.tmatesoft.svn.core.SVNException public abstract void runReadTransaction (org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.io.fs.FSRepresentation getRepresentationByHash (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void close () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/io/fs/FSRoot$RevisionCache.class
FSRoot.java package org.tmatesoft.svn.core.internal.io.fs final org.tmatesoft.svn.core.internal.io.fs.FSRoot$RevisionCache extends java.lang.Object { private java.util.LinkedList myKeys private java.util.Map myCache private int mySizeLimit public void <init> (int) int limit public void put (java.lang.Object, java.lang.Object) Object cachedKey Object key Object value public void delete (java.lang.Object) Object key public java.lang.Object fetch (java.lang.Object) Object cachedKey Object key int ind }
org/tmatesoft/svn/core/internal/io/fs/FSEntry.class
FSEntry.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSEntry extends java.lang.Object { private org.tmatesoft.svn.core.internal.io.fs.FSID myId private org.tmatesoft.svn.core.SVNNodeKind myType private String myName public void <init> () public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String) org.tmatesoft.svn.core.internal.io.fs.FSID id org.tmatesoft.svn.core.SVNNodeKind type String name public void setId (org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID id public void setType (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind type public void setName (java.lang.String) String name public org.tmatesoft.svn.core.internal.io.fs.FSID getId () public org.tmatesoft.svn.core.SVNNodeKind getType () public java.lang.String getName () public java.lang.String toString () }
org/tmatesoft/svn/core/internal/io/fs/FSReplayPathHandler.class
FSReplayPathHandler.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSReplayPathHandler extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler { private org.tmatesoft.svn.core.internal.io.fs.FSRoot myRoot private org.tmatesoft.svn.core.internal.io.fs.FSRoot myCompareRoot private java.util.Map myChangedPaths private String myBasePath private long myLowRevision private java.util.LinkedList myCopies private org.tmatesoft.svn.core.internal.io.fs.FSFS myOwner private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator myDeltaGenerator private org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner myDeltaCombiner public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSRoot, org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.util.Map, java.lang.String, long) org.tmatesoft.svn.core.internal.io.fs.FSFS owner org.tmatesoft.svn.core.internal.io.fs.FSRoot root org.tmatesoft.svn.core.internal.io.fs.FSRoot compareRoot java.util.Map changedPaths String basePath long lowRevision public boolean handleCommitPath (java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSReplayPathHandler$CopyInfo info org.tmatesoft.svn.core.SVNErrorMessage err String relCopyFromPath org.tmatesoft.svn.core.internal.io.fs.FSReplayPathHandler$CopyInfo info org.tmatesoft.svn.core.internal.io.fs.FSReplayPathHandler$CopyInfo info org.tmatesoft.svn.core.internal.io.fs.FSRoot copyFromRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode copyfromNode long copyFromRevision org.tmatesoft.svn.core.internal.io.fs.FSReplayPathHandler$CopyInfo info org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode srcNode String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propNames org.tmatesoft.svn.core.SVNProperties oldProps org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node org.tmatesoft.svn.core.SVNProperties newProps org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node java.io.InputStream sourceStream java.io.InputStream targetStream String checksum org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node String path org.tmatesoft.svn.core.io.ISVNEditor editor String absPath boolean isAdd boolean isDelete org.tmatesoft.svn.core.internal.io.fs.FSPathChange change boolean closeDir org.tmatesoft.svn.core.SVNNodeKind kind String copyFromPath String realCopyFromPath org.tmatesoft.svn.core.internal.io.fs.FSRoot srcRoot String srcPath boolean closeFile private void addSubdirectory (org.tmatesoft.svn.core.internal.io.fs.FSRoot, org.tmatesoft.svn.core.internal.io.fs.FSRoot, org.tmatesoft.svn.core.io.ISVNEditor, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator names String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator names String newSrcPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode srcNode java.io.InputStream targetStream String checksum String entryName org.tmatesoft.svn.core.internal.io.fs.FSEntry entry String newPath java.util.Iterator entryNames org.tmatesoft.svn.core.internal.io.fs.FSRoot srcRoot org.tmatesoft.svn.core.internal.io.fs.FSRoot tgtRoot org.tmatesoft.svn.core.io.ISVNEditor editor String srcPath String path org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node org.tmatesoft.svn.core.SVNProperties props java.util.Map entries }
org/tmatesoft/svn/core/internal/io/fs/FSRoot.class
FSRoot.java package org.tmatesoft.svn.core.internal.io.fs public abstract org.tmatesoft.svn.core.internal.io.fs.FSRoot extends java.lang.Object { private org.tmatesoft.svn.core.internal.io.fs.FSRoot$RevisionCache myRevNodesCache private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS protected org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode myRootRevisionNode protected void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFS) org.tmatesoft.svn.core.internal.io.fs.FSFS owner public org.tmatesoft.svn.core.internal.io.fs.FSFS getOwner () public org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode getRevisionNode (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath String path org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node public abstract long getRevision () public abstract org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode getRootRevisionNode () throws org.tmatesoft.svn.core.SVNException public abstract java.util.Map getChangedPaths () throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.io.fs.FSCopyInheritance getCopyInheritance (org.tmatesoft.svn.core.internal.io.fs.FSParentPath) throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.internal.io.fs.FSParentPath openPath (java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.fs.FSCopyInheritance copyInheritance org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode cachedRevNode org.tmatesoft.svn.core.SVNErrorMessage err String entry String next org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode child String path boolean lastEntryMustExist boolean storeParents String canonPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode here String pathSoFar org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath String rest public org.tmatesoft.svn.core.SVNNodeKind checkNodeKind (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String path org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode public void putRevNodeToCache (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node public void removeRevNodeFromCache (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path protected org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode fetchRevNodeFromCache (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path private void foldChange (java.util.Map, org.tmatesoft.svn.core.internal.io.fs.FSPathChange) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNNodeKind nodeKind java.util.Map mapChanges org.tmatesoft.svn.core.internal.io.fs.FSPathChange change org.tmatesoft.svn.core.internal.io.fs.FSPathChange newChange String copyfromPath long copyfromRevision org.tmatesoft.svn.core.internal.io.fs.FSPathChange oldChange protected java.util.Map fetchAllChanges (org.tmatesoft.svn.core.internal.io.fs.FSFile, boolean) throws org.tmatesoft.svn.core.SVNException String hashKeyPath java.util.Iterator curIter org.tmatesoft.svn.core.internal.io.fs.FSFile changesFile boolean prefolded java.util.Map changedPaths org.tmatesoft.svn.core.internal.io.fs.FSPathChange change public java.util.Map detectChanged () throws org.tmatesoft.svn.core.SVNException String changedPath org.tmatesoft.svn.core.internal.io.fs.FSPathChange change java.util.Iterator paths java.util.Map changes private org.tmatesoft.svn.core.internal.io.fs.FSPathChange readChange (org.tmatesoft.svn.core.internal.io.fs.FSFile) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.fs.FSFile raReader String changeLine String copyfromLine public java.io.InputStream getFileStreamForPath (org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner combiner String path org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode fileNode }
org/tmatesoft/svn/core/internal/io/fs/FSReplayPathHandler$CopyInfo.class
FSReplayPathHandler.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSReplayPathHandler$CopyInfo extends java.lang.Object { String myCopyFromPath long myCopyFromRevision String myPath final synthetic org.tmatesoft.svn.core.internal.io.fs.FSReplayPathHandler this$0 public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSReplayPathHandler, java.lang.String, java.lang.String, long) String path String copyFromPath long copyFromRevision }
org/tmatesoft/svn/core/internal/io/fs/FSRepository$1.class
FSRepository.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSRepository$1 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLockHandler { final synthetic java.util.ArrayList val$locks final synthetic org.tmatesoft.svn.core.internal.io.fs.FSRepository this$0 void <init> (org.tmatesoft.svn.core.internal.io.fs.FSRepository, java.util.ArrayList) public void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/io/fs/FSRepresentationCacheUtil.class
FSRepresentationCacheUtil.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSRepresentationCacheUtil extends java.lang.Object { private static volatile boolean ourIsAvailable private static final String SQLJET_DB_CLASS_NAME private static final String ANTLR_CLASS_NAME private static org.tmatesoft.svn.core.internal.io.fs.repcache.IFSRepresentationCacheManagerFactory ourRepCacheManagerFactory public void <init> () public static org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager open (org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public static void create (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path private static boolean isAvailable () static void <clinit> () Class clazz Class antlrClazz Throwable e Boolean option }
org/tmatesoft/svn/core/internal/io/fs/FSFS.class
FSFS.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSFS extends java.lang.Object { public static final String DB_DIR public static final String REVS_DIR public static final String REPOS_FORMAT_FILE public static final String DB_FORMAT_FILE public static final String DB_LOGS_LOCK_FILE public static final String DB_LOCK_FILE public static final String CURRENT_FILE public static final String UUID_FILE public static final String FS_TYPE_FILE public static final String TXN_CURRENT_FILE public static final String MIN_UNPACKED_REV_FILE public static final String TXN_CURRENT_LOCK_FILE public static final String REVISION_PROPERTIES_DIR public static final String WRITE_LOCK_FILE public static final String LOCKS_DIR public static final String DAV_DIR public static final String TRANSACTIONS_DIR public static final String TRANSACTION_PROTOS_DIR public static final String NODE_ORIGINS_DIR public static final String REP_CACHE_DB public static final String PACK_EXT public static final String PACK_KIND_PACK public static final String PACK_KIND_MANIFEST public static final String ENABLE_REP_SHARING_OPTION public static final String REP_SHARING_SECTION public static final String PATH_CONFIG public static final String TXN_PATH_EXT public static final String TXN_MERGEINFO_PATH public static final String TXN_PATH_EXT_CHILDREN public static final String PATH_PREFIX_NODE public static final String TXN_PATH_EXT_PROPS public static final String SVN_OPAQUE_LOCK_TOKEN public static final String TXN_PATH_REV public static final String PATH_LOCK_KEY public static final String CHILDREN_LOCK_KEY public static final String TOKEN_LOCK_KEY public static final String OWNER_LOCK_KEY public static final String IS_DAV_COMMENT_LOCK_KEY public static final String CREATION_DATE_LOCK_KEY public static final String EXPIRATION_DATE_LOCK_KEY public static final String COMMENT_LOCK_KEY public static final String PRE_12_COMPAT_UNNEEDED_FILE_CONTENTS public static final int DIGEST_SUBDIR_LEN public static final int REPOSITORY_FORMAT public static final int REPOSITORY_FORMAT_LEGACY public static final int DB_FORMAT_PRE_17 public static final int DB_FORMAT public static final int DB_FORMAT_LOW public static final int LAYOUT_FORMAT_OPTION_MINIMAL_FORMAT public static final int MIN_CURRENT_TXN_FORMAT public static final int MIN_PROTOREVS_DIR_FORMAT public static final int MIN_NO_GLOBAL_IDS_FORMAT public static final int MIN_MERGE_INFO_FORMAT public static final int MIN_REP_SHARING_FORMAT public static final int MIN_PACKED_FORMAT public static final int MIN_KIND_IN_CHANGED_FORMAT public static final int MIN_PACKED_REVPROP_FORMAT private static long DEFAULT_MAX_FILES_PER_DIRECTORY private static final String DB_TYPE public static final String REVISION_PROPERTIES_DB public static final String REVISION_PROPERTIES_TABLE public static final String MIN_UNPACKED_REVPROP public static final boolean DB_FORMAT_PRE_17_USE_AS_DEFAULT private int myDBFormat private int myReposFormat private String myUUID private String myFSType private java.io.File myRepositoryRoot private java.io.File myRevisionsRoot private java.io.File myRevisionPropertiesRoot private java.io.File myTransactionsRoot private java.io.File myLocksRoot private java.io.File myDBRoot private java.io.File myWriteLockFile private java.io.File myCurrentFile private java.io.File myTransactionCurrentFile private java.io.File myTransactionCurrentLockFile private java.io.File myTransactionProtoRevsRoot private java.io.File myNodeOriginsDir private java.io.File myRepositoryFormatFile private java.io.File myDBFormatFile private java.io.File myUUIDFile private java.io.File myFSTypeFile private java.io.File myMinUnpackedRevFile private java.io.File myRepositoryCacheFile private long myMaxFilesPerDirectory private long myYoungestRevisionCache private long myMinUnpackedRevision private org.tmatesoft.svn.core.internal.wc.SVNConfigFile myConfig private org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager myReposCacheManager private org.tmatesoft.svn.core.internal.db.SVNSqlJetDb myRevisionProperitesDb private long myMinUnpackedRevProp private boolean myIsHooksEnabled static final synthetic boolean $assertionsDisabled public void <init> (java.io.File) java.io.File repositoryRoot public void setHooksEnabled (boolean) boolean enabled public boolean isHooksEnabled () public int getDBFormat () public long getMaxFilesPerDirectory () public int getReposFormat () public void open () throws org.tmatesoft.svn.core.SVNException public void close () throws org.tmatesoft.svn.core.SVNException public void openForRecovery () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.fs.FSWriteLock writeLock public void openRoot () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSFile formatFile int format public void openDB () throws org.tmatesoft.svn.core.SVNException String optionValue org.tmatesoft.svn.core.SVNErrorMessage err int format boolean isRepSharingAllowed org.tmatesoft.svn.core.internal.wc.SVNConfigFile config java.io.File dbCurrentFile public java.lang.String getFSType () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSFile fsTypeFile public int readDBFormat () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe int format org.tmatesoft.svn.core.internal.io.fs.FSFile formatFile public java.lang.String getUUID () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFile formatFile public java.io.File getDBRoot () public java.io.File getWriteLockFile () public java.io.File getUUIDFile () public java.io.File getDBRevsDir () public java.io.File getDBLocksDir () public java.io.File getFSTypeFile () public java.io.File getTransactionsParentDir () public java.io.File getRepositoryRoot () public java.io.File getRevisionPropertiesRoot () public java.io.File getRepositoryFormatFile () public java.io.File getDBFormatFile () public java.io.File getNodeOriginsDir () public java.io.File getCurrentFile () public java.io.File getRepositoryCacheFile () public java.io.File getDBLogsLockFile () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.io.File lockFile public long getDatedRevision (java.util.Date) throws org.tmatesoft.svn.core.SVNException java.util.Date prevTime java.util.Date nextTime long middle java.util.Date date long latest long top long bottom java.util.Date currentTime public long getYoungestRevision () throws org.tmatesoft.svn.core.SVNException String line int spaceIndex NumberFormatException nfe org.tmatesoft.svn.core.internal.io.fs.FSFile file public long getMinUnpackedRev () throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe org.tmatesoft.svn.core.internal.io.fs.FSFile file public void upgrade () throws org.tmatesoft.svn.core.SVNException java.io.File txnCurrentFile java.io.File txnProtoRevsDir org.tmatesoft.svn.core.internal.io.fs.FSWriteLock writeLock protected void writeDBFormat (int, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error java.io.IOException e java.io.File tmpFile java.io.OutputStream os int format long maxFilesPerDir boolean overwrite java.io.File formatFile String contents public org.tmatesoft.svn.core.SVNProperties getRevisionProperties (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e long revision private org.tmatesoft.svn.core.SVNProperties readRevisionProperties (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFile file org.tmatesoft.svn.core.SVNErrorMessage err boolean have_row long revision org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt public org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot createRevisionRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot createTransactionRoot (org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.SVNProperties txnProps int flags public org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo openTxn (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String txnName org.tmatesoft.svn.core.internal.wc.SVNFileType kind org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo localTxn public org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode getRevisionNode (org.tmatesoft.svn.core.internal.io.fs.FSID) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.internal.io.fs.FSID id org.tmatesoft.svn.core.internal.io.fs.FSFile revisionFile java.util.Map headers org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node public java.util.Map getDirContents (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties rawEntries org.tmatesoft.svn.core.internal.io.fs.FSFile childrenFile java.util.Map entries org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String repHeader org.tmatesoft.svn.core.SVNProperties rawEntries String checksum org.tmatesoft.svn.core.internal.io.fs.FSFile revisionFile org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode org.tmatesoft.svn.core.internal.io.fs.FSRepresentation txtRep public org.tmatesoft.svn.core.SVNProperties getProperties (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFile propsFile org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String repHeader org.tmatesoft.svn.core.SVNProperties props String checksum org.tmatesoft.svn.core.internal.io.fs.FSRepresentation propsRep org.tmatesoft.svn.core.internal.io.fs.FSFile revisionFile org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode public java.lang.String[] getNextRevisionIDs () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String[] ids org.tmatesoft.svn.core.internal.io.fs.FSFile currentFile String idsLine int spaceInd String nodeID String copyID public java.lang.String getAndIncrementTxnKey () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe java.io.File txnCurrentFile org.tmatesoft.svn.core.internal.io.fs.FSFile reader String txnId String nextTxnId java.io.OutputStream txnCurrentOS java.io.File tmpFile org.tmatesoft.svn.core.internal.io.fs.FSWriteLock writeLock public java.util.Map listTransactions () java.io.File entry String txnName int i java.util.Map result java.io.File txnsDir java.io.File[] entries public java.io.File getNewRevisionFile (long) java.io.File shardDir java.io.File shardDir long newRevision java.io.File revFile public java.io.File getNewRevisionPropertiesFile (long) java.io.File shardDir java.io.File shardDir long newRevision java.io.File revPropsFile public java.io.File getTransactionDir (java.lang.String) String txnID public void setYoungestRevisionCache (long) long revision public void setUUID (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e String uuid java.io.File uniqueFile java.io.OutputStream uuidOS public java.io.File getRevisionPropertiesFile (long, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File shardDir org.tmatesoft.svn.core.SVNErrorMessage err long revision boolean returnMissing java.io.File revPropsFile public org.tmatesoft.svn.core.internal.io.fs.FSFile openAndSeekRepresentation (org.tmatesoft.svn.core.internal.io.fs.FSRepresentation) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRepresentation rep public java.io.File getNextIDsFile (java.lang.String) String txnID public void writeNextIDs (java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String ids org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String txnID String nodeID String copyID java.io.OutputStream nextIdsFile public void changeTransactionProperties (java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator iter String txnId org.tmatesoft.svn.core.SVNProperties txnProperties public void setTransactionProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String txnID String name org.tmatesoft.svn.core.SVNPropertyValue propertyValue org.tmatesoft.svn.core.internal.wc.SVNWCProperties revProps public void setRevisionProperty (long, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNWCProperties revProps org.tmatesoft.svn.core.internal.io.fs.FSWriteLock writeLock org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt long revision String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public org.tmatesoft.svn.core.SVNProperties getTransactionProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String txnID org.tmatesoft.svn.core.internal.io.fs.FSFile txnPropsFile public java.io.File getTransactionPropertiesFile (java.lang.String) String txnID public java.io.File getTransactionProtoRevsDir () public java.io.File getTransactionProtoRevFile (java.lang.String) String txnID public java.io.File getTransactionProtoRevLockFile (java.lang.String) String txnID public void purgeTxn (java.lang.String) throws org.tmatesoft.svn.core.SVNException String txnID public void createNewTxnNodeRevisionFromRevision (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String txnID org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode sourceNode org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode public void putTxnRevisionNode (org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.internal.io.fs.FSID id org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode java.io.OutputStream revNodeFile public java.io.File getTransactionRevNodeFile (org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID id public void writeTxnNodeRevision (java.io.OutputStream, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode) throws java.io.IOException String predId org.tmatesoft.svn.core.internal.io.fs.FSRepresentation txtRep String textRepresentation org.tmatesoft.svn.core.internal.io.fs.FSRepresentation propRep String propsRepresentation String copyFromPath String copyroot String isFreshRootStr String mergeInfoCntStr String hasMergeInfoStr java.io.OutputStream revNodeFile org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode String id String type String count String cpath public org.tmatesoft.svn.core.SVNLock getLock (java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException String repositoryPath boolean haveWriteLock boolean throwError org.tmatesoft.svn.core.SVNLock lock java.util.Date current public void deleteLock (org.tmatesoft.svn.core.SVNLock) throws org.tmatesoft.svn.core.SVNException java.io.File digestFile org.tmatesoft.svn.core.SVNLock lock String reposPath String childToKill java.util.Collection children public void walkDigestFiles (java.io.File, org.tmatesoft.svn.core.io.ISVNLockHandler, boolean) throws org.tmatesoft.svn.core.SVNException java.util.Date current String digestName java.io.File parent java.io.File childDigestFile java.util.Iterator entries java.io.File digestFile org.tmatesoft.svn.core.io.ISVNLockHandler getLocksHandler boolean haveWriteLock java.util.Collection children org.tmatesoft.svn.core.SVNLock lock public org.tmatesoft.svn.core.SVNLock getLockHelper (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String repositoryPath boolean haveWriteLock org.tmatesoft.svn.core.SVNLock lock public org.tmatesoft.svn.core.SVNLock fetchLockFromDigestFile (java.io.File, java.lang.String, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.fs.FSFile reader String lockToken String lockOwner String davComment String creationTime java.util.Date creationDate String expirationTime java.util.Date expirationDate String comment int i String[] digests java.io.File digestFile String repositoryPath java.util.Collection children java.io.File digestLockFile org.tmatesoft.svn.core.SVNProperties lockProps org.tmatesoft.svn.core.SVNLock lock String lockPath String childEntries public java.io.File getDigestFileFromRepositoryPath (java.lang.String) throws org.tmatesoft.svn.core.SVNException String repositoryPath String digest java.io.File parent public java.lang.String getDigestFromRepositoryPath (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.security.NoSuchAlgorithmException nsae org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String repositoryPath java.security.MessageDigest digestFromPath public void unlockPath (java.lang.String, java.lang.String, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String path String token String username boolean breakLock boolean enableHooks String[] paths org.tmatesoft.svn.core.internal.io.fs.FSWriteLock writeLock public org.tmatesoft.svn.core.SVNLock lockPath (java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.Date, long, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String path String token String username String comment java.util.Date expirationDate long currentRevision boolean stealLock boolean isDAVComment String[] paths String customToken org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.internal.io.fs.FSWriteLock writeLock public org.tmatesoft.svn.core.SVNProperties compoundMetaProperties (long) throws org.tmatesoft.svn.core.SVNException long revision org.tmatesoft.svn.core.SVNProperties metaProperties org.tmatesoft.svn.core.SVNProperties revProps String uuid String rev public long getDeletedRevision (java.lang.String, long, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long tmpRev org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.fs.FSClosestCopy closestCopy org.tmatesoft.svn.core.internal.io.fs.FSID endNodeId org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.fs.FSID currentNodeId int nodeRelationship org.tmatesoft.svn.core.internal.io.fs.FSClosestCopy closestCopy org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node String path long startRev long endRev org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot startRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode startNode org.tmatesoft.svn.core.internal.io.fs.FSID startNodeId org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot endRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode endNode long midRev public org.tmatesoft.svn.core.io.SVNLocationEntry getPreviousLocation (java.lang.String, long, long[]) throws org.tmatesoft.svn.core.SVNException String path long revision long[] appearedRevision org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.internal.io.fs.FSClosestCopy closestCopy org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot copyTargetRoot String copyTargetPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode copyFromNode String copyFromPath long copyFromRevision String remainder String previousPath public java.lang.String getNodeOrigin (java.lang.String) throws org.tmatesoft.svn.core.SVNException String nodeID org.tmatesoft.svn.core.SVNProperties nodeOrigins public void setNodeOrigin (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSID) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String nodeID org.tmatesoft.svn.core.internal.io.fs.FSID nodeRevisionID java.io.File nodeOriginsDir org.tmatesoft.svn.core.SVNProperties nodeOrigins String oldNodeRevID String nodeRevIDToStore java.io.File nodeOriginFile java.io.File tmpFile public boolean supportsMergeInfo () public void readOptions (org.tmatesoft.svn.core.internal.io.fs.FSFile, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String optionValue String line org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSFile formatFile int formatNumber public org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager getRepositoryCacheManager () public static java.io.File findRepositoryRoot (java.io.File) java.io.File path java.io.File rootPath public static java.lang.String findRepositoryRoot (java.lang.String, java.lang.String) String host String path String testPath java.io.File rootPath public static long getDefaultMaxFilesPerDirectory () public static void setDefaultMaxFilesPerDirectory (long) long maxFilesPerDirectory protected boolean isPackedRevision (long) long revision protected java.io.File getNodeOriginFile (java.lang.String) String nodeID String nodeIDMinusLastChar protected org.tmatesoft.svn.core.internal.io.fs.FSFile getTransactionRevisionPrototypeFile (java.lang.String) String txnID java.io.File revFile protected org.tmatesoft.svn.core.internal.io.fs.FSFile getTransactionChangesFile (java.lang.String) String txnID java.io.File file protected org.tmatesoft.svn.core.internal.io.fs.FSFile getTransactionRevisionNodeChildrenFile (org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID txnID java.io.File childrenFile protected org.tmatesoft.svn.core.internal.io.fs.FSFile getRevisionFSFile (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long revision java.io.File revisionFile protected org.tmatesoft.svn.core.internal.io.fs.FSFile getPackOrRevisionFSFile (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long revision java.io.File file protected java.io.File getAbsoluteRevisionPath (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File revFile long revision protected org.tmatesoft.svn.core.internal.io.fs.FSFile getTransactionRevisionNodePropertiesFile (org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID id java.io.File revNodePropsFile protected java.io.File getPackedRevPath (long, java.lang.String) throws org.tmatesoft.svn.core.SVNException long revision String kind java.io.File file protected java.io.File getPackDir (long) long revision protected java.io.File getPackFile (long) long revision protected java.io.File getManifestFile (long) long revision protected java.io.File getRevisionFile (long) throws org.tmatesoft.svn.core.SVNException java.io.File shardDir long revision java.io.File revisionFile protected java.io.File getMinUnpackedRevFile () protected java.io.File getTransactionCurrentFile () protected java.io.File getTransactionCurrentLockFile () protected java.io.File getConfigFile () protected void writeCurrentFile (long, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException long revision String nextNodeID String nextCopyID String line java.io.File currentFile java.io.File tmpCurrentFile java.io.OutputStream currentOS protected long getPackedOffset (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe Long offset String line org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe long revision java.io.File manifestFile java.io.BufferedReader reader java.util.LinkedList manifest Long revOffsetLong private org.tmatesoft.svn.core.internal.wc.SVNConfigFile loadConfig () java.io.File confFile private void ensureRevisionsExists (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long revision org.tmatesoft.svn.core.SVNErrorMessage err private org.tmatesoft.svn.core.SVNProperties getNodeOriginsFromFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String nodeID java.io.File nodeOriginFile org.tmatesoft.svn.core.internal.io.fs.FSFile reader private void unlock (java.lang.String, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String path String token String username boolean breakLock org.tmatesoft.svn.core.SVNLock lock private org.tmatesoft.svn.core.SVNLock lock (java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.Date, long, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err int i org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node long createdRev String path String token String username String comment java.util.Date expirationDate long currentRevision boolean stealLock boolean isDAVComment long youngestRev org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNLock existingLock org.tmatesoft.svn.core.SVNLock lock private void setLock (org.tmatesoft.svn.core.SVNLock, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String digestFileName org.tmatesoft.svn.core.SVNLock fetchedLock org.tmatesoft.svn.core.SVNLock lock boolean isDAVComment String lastChild String path java.util.Collection children private boolean ensureDirExists (java.io.File, boolean) java.io.File dir boolean create private void writeDigestLockFile (org.tmatesoft.svn.core.SVNLock, java.util.Collection, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String isDAVCommentValue int i Object[] digests StringBuffer value org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNLock lock java.util.Collection children String repositoryPath boolean isDAVComment java.io.File digestLockFile String digest java.io.File lockDigestSubdir org.tmatesoft.svn.core.SVNProperties props private org.tmatesoft.svn.core.internal.io.fs.FSFile openAndSeekTransaction (org.tmatesoft.svn.core.internal.io.fs.FSRepresentation) org.tmatesoft.svn.core.internal.io.fs.FSRepresentation rep org.tmatesoft.svn.core.internal.io.fs.FSFile file private org.tmatesoft.svn.core.internal.io.fs.FSFile openAndSeekRevision (long, long) throws org.tmatesoft.svn.core.SVNException long revOffset long revision long offset org.tmatesoft.svn.core.internal.io.fs.FSFile file private java.util.Map parsePlainRepresentation (org.tmatesoft.svn.core.SVNProperties, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String name String unparsedEntry org.tmatesoft.svn.core.internal.io.fs.FSEntry nextRepEntry java.util.Iterator iterator org.tmatesoft.svn.core.SVNProperties entries boolean mayContainNulls java.util.Map representationMap private org.tmatesoft.svn.core.internal.io.fs.FSEntry parseRepEntryValue (java.lang.String, java.lang.String) String name String value int spaceInd String kind String rawID org.tmatesoft.svn.core.SVNNodeKind type org.tmatesoft.svn.core.internal.io.fs.FSID id private java.util.Date getRevisionTime (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long revision org.tmatesoft.svn.core.SVNProperties revisionProperties String timeString private static boolean isRepositoryRoot (java.io.File) java.io.File candidatePath java.io.File formatFile org.tmatesoft.svn.core.internal.wc.SVNFileType fileType java.io.File dbFile public java.io.File getRevisionPropertiesDbPath () public java.io.File getMinUnpackedRevPropPath () public void updateMinUnpackedRevProp () throws org.tmatesoft.svn.core.SVNException public long getMinUnpackedRevProp () throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe org.tmatesoft.svn.core.internal.io.fs.FSFile file public org.tmatesoft.svn.core.internal.db.SVNSqlJetDb getRevisionProperitesDb () static void <clinit> () }
org/tmatesoft/svn/core/internal/io/fs/FSID.class
FSID.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSID extends java.lang.Object implements java.io.Serializable { private static final long serialVersionUID private String myNodeID private String myCopyID private String myTxnID private long myRevision private long myOffset public boolean isTxn () public static org.tmatesoft.svn.core.internal.io.fs.FSID createTxnId (java.lang.String, java.lang.String, java.lang.String) String nodeId String copyId String txnId public static org.tmatesoft.svn.core.internal.io.fs.FSID createRevId (java.lang.String, java.lang.String, long, long) String nodeId String copyId long revision long offset private void <init> (java.lang.String, java.lang.String, java.lang.String, long, long) String nodeId String txnId String copyId long revision long offset public org.tmatesoft.svn.core.internal.io.fs.FSID copy () public java.lang.String getNodeID () public java.lang.String getTxnID () public java.lang.String getCopyID () public long getRevision () public long getOffset () public boolean equals (java.lang.Object) Object obj org.tmatesoft.svn.core.internal.io.fs.FSID id public int hashCode () int PRIME int result public int compareTo (org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID otherID public boolean isRelated (org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID otherID public java.lang.String toString () public static org.tmatesoft.svn.core.internal.io.fs.FSID fromString (java.lang.String) NumberFormatException nfe int slashInd long rev long offset String txnId String revNodeId int dotInd String nodeId String copyId }
org/tmatesoft/svn/core/internal/io/fs/FSLog$3.class
FSLog.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSLog$3 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler { final synthetic java.util.Collection val$locationSegments final synthetic org.tmatesoft.svn.core.internal.io.fs.FSLog this$0 void <init> (org.tmatesoft.svn.core.internal.io.fs.FSLog, java.util.Collection) public void handleLocationSegment (org.tmatesoft.svn.core.io.SVNLocationSegment) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNLocationSegment locationSegment }
org/tmatesoft/svn/core/internal/io/fs/FSCopyInheritance.class
FSCopyInheritance.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSCopyInheritance extends java.lang.Object { public static final int COPY_ID_INHERIT_UNKNOWN public static final int COPY_ID_INHERIT_SELF public static final int COPY_ID_INHERIT_PARENT public static final int COPY_ID_INHERIT_NEW private int myStyle private String myCopySourcePath public void <init> (int, java.lang.String) int style String path public java.lang.String getCopySourcePath () public int getStyle () public void setCopySourcePath (java.lang.String) String copySourcePath public void setStyle (int) int style }
org/tmatesoft/svn/core/internal/io/fs/FSClosestCopy.class
FSClosestCopy.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSClosestCopy extends java.lang.Object { private org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot myRoot private String path public void <init> () public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String) org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root String newPath public org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot getRevisionRoot () public java.lang.String getPath () }
org/tmatesoft/svn/core/internal/io/fs/FSCommitEditor.class
FSCommitEditor.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSCommitEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private java.util.Map myPathsToLockTokens private java.util.Collection myLockTokens private String myBasePath private org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo myTxn private org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot myTxnRoot private boolean isTxnOwner private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS private org.tmatesoft.svn.core.internal.io.fs.FSRepository myRepository private java.util.Stack myDirsStack private org.tmatesoft.svn.core.internal.io.fs.FSDeltaConsumer myDeltaConsumer private org.tmatesoft.svn.core.SVNProperties myCurrentFileProps private String myCurrentFilePath private org.tmatesoft.svn.core.internal.io.fs.FSCommitter myCommitter private org.tmatesoft.svn.core.SVNProperties myRevProps private String myAuthor public void <init> (java.lang.String, java.lang.String, java.lang.String, java.util.Map, boolean, org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo, org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSRepository) String path String logMessage String userName java.util.Map lockTokens boolean keepLocks org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.internal.io.fs.FSFS owner org.tmatesoft.svn.core.internal.io.fs.FSRepository repository public void <init> (java.lang.String, java.util.Map, boolean, org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo, org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSRepository, org.tmatesoft.svn.core.SVNProperties) String path java.util.Map lockTokens boolean keepLocks org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.internal.io.fs.FSFS owner org.tmatesoft.svn.core.internal.io.fs.FSRepository repository org.tmatesoft.svn.core.SVNProperties revProps public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision long youngestRev org.tmatesoft.svn.core.internal.io.fs.FSCommitEditor$DirBaton dirBaton private java.lang.String getAuthor () public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path long revision org.tmatesoft.svn.core.internal.io.fs.FSCommitEditor$DirBaton parentBaton String fullPath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.io.fs.FSCommitEditor$DirBaton dirBaton public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision String fullPath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode existingNode long createdRev public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot copyRoot String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.io.fs.FSCommitEditor$DirBaton parentBaton String fullPath boolean isCopied org.tmatesoft.svn.core.internal.io.fs.FSCommitEditor$DirBaton dirBaton public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode existingNode long createdRev String name org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.internal.io.fs.FSCommitEditor$DirBaton dirBaton private void changeNodeProperties (java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException long increment boolean hadMergeInfo String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propNames String path org.tmatesoft.svn.core.SVNProperties propNamesToValues org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNProperties properties boolean done boolean haveRealChanges public void closeDir () throws org.tmatesoft.svn.core.SVNException public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot copyRoot String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.io.fs.FSCommitEditor$DirBaton parentBaton String fullPath public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision String fullPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum org.tmatesoft.svn.core.io.ISVNDeltaConsumer fsfsConsumer public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow org.tmatesoft.svn.core.io.ISVNDeltaConsumer fsfsConsumer public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.ISVNDeltaConsumer fsfsConsumer private org.tmatesoft.svn.core.internal.io.fs.FSDeltaConsumer getDeltaConsumer () public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value String fullPath org.tmatesoft.svn.core.SVNProperties props private org.tmatesoft.svn.core.SVNProperties getFilePropertiesStorage () private void flushPendingProperties () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String fullPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode org.tmatesoft.svn.core.internal.io.fs.FSRepresentation txtRep String path String textChecksum public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String message long committedRev org.tmatesoft.svn.core.SVNErrorMessage[] errorMessage org.tmatesoft.svn.core.SVNProperties revProps String dateProp java.util.Date datestamp org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNCommitInfo info private void releaseLocks () java.util.Map autoUnlockPaths private void releaseLocks (java.util.Map, boolean, boolean) org.tmatesoft.svn.core.SVNException svne String path String token String absPath java.util.Iterator paths java.util.Map pathsToLockTokens boolean breakLocks boolean runHooks public void abortEdit () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/io/fs/FSFileRevisionsFinder.class
FSFileRevisionsFinder.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder extends java.lang.Object { private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator myDeltaGenerator public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFS) org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public int getFileRevisions (java.lang.String, long, long, boolean, org.tmatesoft.svn.core.io.ISVNFileRevisionHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNLocationEntry mainPathRev org.tmatesoft.svn.core.io.SVNLocationEntry mergedPathRev org.tmatesoft.svn.core.io.SVNLocationEntry mainPathRev String path long startRevision long endRevision boolean includeMergedRevisions org.tmatesoft.svn.core.io.ISVNFileRevisionHandler handler java.util.Map duplicatePathRevs java.util.LinkedList mainLinePathRevisions java.util.LinkedList mergedPathRevisions org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton sb int mainLinePos int mergedPos int i private void sendPathRevision (org.tmatesoft.svn.core.io.SVNLocationEntry, org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton, org.tmatesoft.svn.core.io.ISVNFileRevisionHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator deltaGenerator org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner sourceCombiner org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner targetCombiner java.io.InputStream sourceStream java.io.InputStream targetStream org.tmatesoft.svn.core.io.SVNLocationEntry pathRevision org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder$SendBaton sendBaton org.tmatesoft.svn.core.io.ISVNFileRevisionHandler handler org.tmatesoft.svn.core.SVNProperties revProps org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode fileNode org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNProperties propDiffs boolean contentsChanged private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator getDeltaGenerator () private java.util.LinkedList findMergedRevisions (java.util.LinkedList, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.SVNNodeKind kind int j String path org.tmatesoft.svn.core.SVNMergeRangeList rangeList org.tmatesoft.svn.core.SVNMergeRange[] ranges java.util.Iterator mergeInfoIter org.tmatesoft.svn.core.io.SVNLocationEntry oldPathRevision java.util.Map mergedMergeInfo java.util.Iterator oldPathRevsIter java.util.LinkedList mainLinePathRevisions java.util.Map duplicatePathRevs java.util.LinkedList mergedPathRevisions java.util.LinkedList oldPathRevisions java.util.LinkedList newPathRevisions private java.util.LinkedList findInterestingRevisions (java.util.LinkedList, java.lang.String, long, long, boolean, boolean, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long histRev String histPath org.tmatesoft.svn.core.io.SVNLocationEntry pathRev java.util.Map mergedMergeInfo java.util.LinkedList pathRevisions String path long startRevision long endRevision boolean includeMergedRevisions boolean markAsMerged java.util.Map duplicatePathRevs org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.internal.io.fs.FSNodeHistory history private java.util.Map getMergedMergeInfo (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String path long revision java.util.Map currentMergeInfo java.util.Map previousMergeInfo java.util.Map deleted java.util.Map changed public java.util.Map getPathMergeInfo (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.wc.SVNMergeInfoManager mergeInfoManager org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root java.util.Map tmpMergeInfo org.tmatesoft.svn.core.SVNMergeInfo mergeInfo }
org/tmatesoft/svn/core/internal/io/fs/FSRepositoryUtil.class
FSRepositoryUtil.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSRepositoryUtil extends java.lang.Object { public static final int MAX_KEY_SIZE private static final ThreadLocal ourCopyBuffer public void <init> () public static java.lang.String generateLockToken () throws org.tmatesoft.svn.core.SVNException String uuid public static void replay (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String, long, boolean, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.internal.io.fs.FSPathChange change java.util.Iterator paths org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot revRoot org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot long revision org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot revRoot org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.FSRoot root String basePath long lowRevision boolean sendDeltas org.tmatesoft.svn.core.io.ISVNEditor editor java.util.Map fsChanges java.util.Collection interestingPaths java.util.Map changedPaths org.tmatesoft.svn.core.internal.io.fs.FSRoot compareRoot org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler handler public static void copy (java.io.InputStream, java.io.OutputStream, org.tmatesoft.svn.core.ISVNCanceller) throws org.tmatesoft.svn.core.SVNException int length byte[] buffer org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ioew org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe java.io.InputStream src java.io.OutputStream dst org.tmatesoft.svn.core.ISVNCanceller canceller public static boolean arePropertiesEqual (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode) org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode1 org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode2 public static boolean arePropertiesChanged (org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRoot root1 String path1 org.tmatesoft.svn.core.internal.io.fs.FSRoot root2 String path2 org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node1 org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node2 public static boolean areFileContentsChanged (org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRoot root1 String path1 org.tmatesoft.svn.core.internal.io.fs.FSRoot root2 String path2 org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode1 org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode2 public static org.tmatesoft.svn.core.SVNProperties getPropsDiffs (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) String propName org.tmatesoft.svn.core.SVNPropertyValue srcPropVal org.tmatesoft.svn.core.SVNPropertyValue targetPropVal java.util.Iterator names String propName org.tmatesoft.svn.core.SVNPropertyValue targetPropVal org.tmatesoft.svn.core.SVNPropertyValue sourceValue java.util.Iterator names org.tmatesoft.svn.core.SVNProperties sourceProps org.tmatesoft.svn.core.SVNProperties targetProps org.tmatesoft.svn.core.SVNProperties result public static boolean checkFilesDifferent (org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String, org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner) throws org.tmatesoft.svn.core.SVNException int r1 int r2 org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.internal.io.fs.FSRoot root1 String path1 org.tmatesoft.svn.core.internal.io.fs.FSRoot root2 String path2 org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner deltaCombiner boolean changed org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode1 org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode2 java.io.InputStream file1IS java.io.InputStream file2IS public static void sendTextDelta (org.tmatesoft.svn.core.io.ISVNEditor, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRoot, boolean, org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner, org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException java.io.InputStream sourceStream java.io.InputStream targetStream org.tmatesoft.svn.core.io.ISVNEditor editor String editPath String sourcePath String hexDigest org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot sourceRoot String targetPath org.tmatesoft.svn.core.internal.io.fs.FSRoot targetRoot boolean sendDeltas org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner deltaCombiner org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator deltaGenerator org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public static void loadRootChangesOffset (org.tmatesoft.svn.core.internal.io.fs.FSFS, long, org.tmatesoft.svn.core.internal.io.fs.FSFile, long[], long[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err byte b int i org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String line org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err java.nio.charset.CharacterCodingException e org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs long revision org.tmatesoft.svn.core.internal.io.fs.FSFile file long[] rootOffset long[] changesOffset java.nio.ByteBuffer buffer long offset long revOffset int spaceIndex int eolIndex java.nio.charset.CharsetDecoder decoder public static java.lang.String generateNextKey (java.lang.String) throws org.tmatesoft.svn.core.SVNException char c int i org.tmatesoft.svn.core.SVNErrorMessage err String oldKey char[] nextKey boolean carry int nextKeyLength public static void checkReposDBFormat (int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int format public static void validateProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue private static boolean areRepresentationsEqual (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, boolean) org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode1 org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode2 boolean forProperties static void <clinit> () }
org/tmatesoft/svn/core/internal/io/fs/FSRecoverer.class
FSRecoverer.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSRecoverer extends java.lang.Object { private org.tmatesoft.svn.core.internal.io.fs.FSFS myOwner private org.tmatesoft.svn.core.ISVNCanceller myCanceller public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.ISVNCanceller) org.tmatesoft.svn.core.internal.io.fs.FSFS owner org.tmatesoft.svn.core.ISVNCanceller canceller public void runRecovery () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSWriteLock writeLock private void recover () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSFile revFile long rev long[] rootOffset String[] maxNodeID String[] maxCopyID org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String nextNodeID String nextCopyID long maxRev long youngestRev java.io.File revpropFile private void findMaxIDs (long, org.tmatesoft.svn.core.internal.io.fs.FSFile, long, java.lang.String[], java.lang.String[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String name String unparsedEntry int spaceInd String kindStr org.tmatesoft.svn.core.SVNNodeKind kind String rawID org.tmatesoft.svn.core.internal.io.fs.FSID id String nodeID String copyID java.util.Iterator entriesIter long rev org.tmatesoft.svn.core.internal.io.fs.FSFile revFile long offset String[] maxNodeID String[] maxCopyID java.util.Map headers String revNodeIDStr org.tmatesoft.svn.core.internal.io.fs.FSID revNodeID org.tmatesoft.svn.core.SVNNodeKind nodeKind String textRep org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode org.tmatesoft.svn.core.internal.io.fs.FSInputStream$FSRepresentationState repState org.tmatesoft.svn.core.SVNProperties rawEntries private long getLargestRevision () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne long probe long right long left }
org/tmatesoft/svn/core/internal/io/fs/FSUpdateContext.class
FSUpdateContext.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSUpdateContext extends java.lang.Object { private java.io.File myReportFile private String myTarget private java.io.OutputStream myReportOS private org.tmatesoft.svn.core.internal.io.fs.FSFile myReportIS private org.tmatesoft.svn.core.io.ISVNEditor myEditor private long myTargetRevision private org.tmatesoft.svn.core.SVNDepth myDepth private org.tmatesoft.svn.core.internal.io.fs.PathInfo myCurrentPathInfo private boolean ignoreAncestry private boolean sendTextDeltas private String myTargetPath private boolean isSwitch private boolean mySendCopyFromArgs private org.tmatesoft.svn.core.internal.io.fs.FSRoot myTargetRoot private java.util.LinkedList myRootsCache private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS private org.tmatesoft.svn.core.internal.io.fs.FSRepository myRepository private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator myDeltaGenerator private org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner myDeltaCombiner public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSRepository, org.tmatesoft.svn.core.internal.io.fs.FSFS, long, java.io.File, java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, org.tmatesoft.svn.core.io.ISVNEditor) org.tmatesoft.svn.core.internal.io.fs.FSRepository repository org.tmatesoft.svn.core.internal.io.fs.FSFS owner long revision java.io.File reportFile String target String targetPath boolean isSwitch org.tmatesoft.svn.core.SVNDepth depth boolean ignoreAncestry boolean textDeltas boolean sendCopyFromArgs org.tmatesoft.svn.core.io.ISVNEditor editor public void reset (org.tmatesoft.svn.core.internal.io.fs.FSRepository, org.tmatesoft.svn.core.internal.io.fs.FSFS, long, java.io.File, java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRepository repository org.tmatesoft.svn.core.internal.io.fs.FSFS owner long revision java.io.File reportFile String target String targetPath boolean isSwitch org.tmatesoft.svn.core.SVNDepth depth boolean ignoreAncestry boolean textDeltas boolean sendCopyFrom org.tmatesoft.svn.core.io.ISVNEditor editor public void setTargetRoot (org.tmatesoft.svn.core.internal.io.fs.FSRoot) org.tmatesoft.svn.core.internal.io.fs.FSRoot root public java.io.OutputStream getReportFileForWriting () throws org.tmatesoft.svn.core.SVNException private boolean isIgnoreAncestry () private boolean isSwitch () private boolean isSendTextDeltas () private java.lang.String getReportTarget () private java.lang.String getReportTargetPath () public void dispose () throws org.tmatesoft.svn.core.SVNException private org.tmatesoft.svn.core.io.ISVNEditor getEditor () private long getTargetRevision () private org.tmatesoft.svn.core.internal.io.fs.PathInfo getNextPathInfo () throws java.io.IOException org.tmatesoft.svn.core.SVNException private org.tmatesoft.svn.core.internal.io.fs.PathInfo getCurrentPathInfo () private org.tmatesoft.svn.core.internal.io.fs.FSRoot getTargetRoot () throws org.tmatesoft.svn.core.SVNException private java.util.LinkedList getRootsCache () private org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot getSourceRoot (long) throws org.tmatesoft.svn.core.SVNException long revision java.util.LinkedList cache org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root int i public void drive () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.OutputStream reportOS org.tmatesoft.svn.core.internal.io.fs.PathInfo info long sourceRevision org.tmatesoft.svn.core.internal.io.fs.PathInfo lookahead String fullTargetPath String fullSourcePath org.tmatesoft.svn.core.internal.io.fs.FSEntry targetEntry org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot org.tmatesoft.svn.core.internal.io.fs.FSEntry sourceEntry private void diffDirs (long, java.lang.String, java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot sourceRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode sourceNode Object[] nextInfo String entryName org.tmatesoft.svn.core.internal.io.fs.PathInfo pathInfo String entryEditPath String entryTargetPath org.tmatesoft.svn.core.internal.io.fs.FSEntry targetEntry String entrySourcePath org.tmatesoft.svn.core.internal.io.fs.FSEntry sourceEntry String entryEditPath long deletedRev org.tmatesoft.svn.core.internal.io.fs.FSEntry srcEntry int i org.tmatesoft.svn.core.internal.io.fs.FSEntry[] srcEntries org.tmatesoft.svn.core.internal.io.fs.FSEntry tgtEntry org.tmatesoft.svn.core.internal.io.fs.FSEntry srcEntry String entrySourcePath String entryEditPath String entryTargetPath java.util.Iterator tgts org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode targetNode java.util.Map targetEntries long sourceRevision String sourcePath String targetPath String editPath boolean startEmpty org.tmatesoft.svn.core.SVNDepth wcDepth org.tmatesoft.svn.core.SVNDepth requestedDepth java.util.Map sourceEntries private boolean isDepthUpgrade (org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNDepth wcDepth org.tmatesoft.svn.core.SVNDepth requestedDepth org.tmatesoft.svn.core.SVNNodeKind kind int compareResult private void diffFiles (long, java.lang.String, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException boolean changed org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode sourceNode long sourceRevision String sourcePath String targetPath String editPath String lockToken String sourceHexDigest org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot sourceRoot private void updateEntry (long, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSEntry, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSEntry, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.PathInfo, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNLock exitsingLock int distance long deletedRev org.tmatesoft.svn.core.io.SVNLocationEntry copyFromFile String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode targetNode String targetHexDigest long sourceRevision String sourcePath org.tmatesoft.svn.core.internal.io.fs.FSEntry sourceEntry String targetPath org.tmatesoft.svn.core.internal.io.fs.FSEntry targetEntry String editPath org.tmatesoft.svn.core.internal.io.fs.PathInfo pathInfo org.tmatesoft.svn.core.SVNDepth wcDepth org.tmatesoft.svn.core.SVNDepth requestedDepth boolean related private long getDeletedRevision (java.lang.String, long, long) throws org.tmatesoft.svn.core.SVNException String targetPath long sourceRevision long targetRevision private boolean isTransactionTarget () throws org.tmatesoft.svn.core.SVNException private org.tmatesoft.svn.core.io.SVNLocationEntry addFileSmartly (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode closestCopyFromNode org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot closestCopyRoot String closestCopyPath org.tmatesoft.svn.core.internal.io.fs.FSClosestCopy closestCopy org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txn org.tmatesoft.svn.core.internal.io.fs.FSPathChange change String editPath String originalPath String copyFromPath long copyFromRevision private java.util.Map computeMetaProperties (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties entryProps org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.SVNProperties txnProperties long revision java.util.Map metaProperties private void diffProplists (long, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue committedRevision org.tmatesoft.svn.core.SVNPropertyValue committedDate org.tmatesoft.svn.core.SVNPropertyValue lastAuthor org.tmatesoft.svn.core.SVNPropertyValue uuid org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot sourceRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode sourceNode boolean propsChanged String propName int i long sourceRevision String sourcePath String editPath String targetPath String lockToken boolean isDir org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode targetNode long createdRevision java.util.Map metaProperties org.tmatesoft.svn.core.SVNProperties sourceProps org.tmatesoft.svn.core.SVNProperties targetProps org.tmatesoft.svn.core.SVNProperties propsDiffs Object[] names private org.tmatesoft.svn.core.SVNDepth getDepthBelow (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth private java.lang.Object[] fetchPathInfo (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String relPath String prefix Object[] result org.tmatesoft.svn.core.internal.io.fs.PathInfo pathInfo private void changeProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value boolean isDir private org.tmatesoft.svn.core.internal.io.fs.FSEntry fakeDirEntry (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRoot) throws org.tmatesoft.svn.core.SVNException String reposPath org.tmatesoft.svn.core.internal.io.fs.FSRoot root org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node org.tmatesoft.svn.core.internal.io.fs.FSEntry dirEntry private void skipPathInfo (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String prefix private void writeSingleString (java.lang.String, java.io.OutputStream) throws java.io.IOException byte[] b String s java.io.OutputStream out public void writePathInfoToReportFile (java.lang.String, java.lang.String, java.lang.String, long, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.ByteArrayOutputStream baos java.io.OutputStream reportOS org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String path String linkPath String lockToken long revision boolean startEmpty org.tmatesoft.svn.core.SVNDepth depth String anchorRelativePath String revisionRep String depthRep public java.lang.String getDepthLetter (org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.SVNErrorMessage err }
org/tmatesoft/svn/core/internal/io/fs/FSWriteLock.class
FSWriteLock.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSWriteLock extends java.lang.Object { private static final java.util.Map ourThreadDBLocksCache private static final java.util.Map ourThreadRepositoryLocksCache private static final java.util.Map ourThreadLogLocksCache private static final int DB_LOCK private static final int LOGS_LOCK private static final int REPOS_LOCK private java.io.File myLockFile private java.io.RandomAccessFile myLockRAFile private java.nio.channels.FileLock myLock private String myToken private int myLockType private boolean myIsShared private int myReferencesCount private void <init> (java.lang.String, java.io.File, int, boolean) String token java.io.File lockFile int lockType boolean shared public static synchronized org.tmatesoft.svn.core.internal.io.fs.FSWriteLock getWriteLockForDB (org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFS owner String uuid org.tmatesoft.svn.core.internal.io.fs.FSWriteLock lock public static synchronized org.tmatesoft.svn.core.internal.io.fs.FSWriteLock getWriteLockForCurrentTxn (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException String token org.tmatesoft.svn.core.internal.io.fs.FSFS owner String uuid org.tmatesoft.svn.core.internal.io.fs.FSWriteLock lock public static synchronized org.tmatesoft.svn.core.internal.io.fs.FSWriteLock getWriteLockForTxn (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException String txnID org.tmatesoft.svn.core.internal.io.fs.FSFS owner String uuid org.tmatesoft.svn.core.internal.io.fs.FSWriteLock lock public static synchronized org.tmatesoft.svn.core.internal.io.fs.FSWriteLock getDBLogsLock (org.tmatesoft.svn.core.internal.io.fs.FSFS, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFS owner boolean exclusive String uuid org.tmatesoft.svn.core.internal.io.fs.FSWriteLock lock public synchronized void lock () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNFileType type java.io.IOException ioe String msg org.tmatesoft.svn.core.SVNErrorMessage err boolean errorOccured Exception childError public static synchronized void release (org.tmatesoft.svn.core.internal.io.fs.FSWriteLock) org.tmatesoft.svn.core.internal.io.fs.FSWriteLock lock public synchronized void unlock () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error java.io.IOException ioex public java.lang.String toString () StringBuffer buffer static void <clinit> () }
org/tmatesoft/svn/core/internal/io/fs/FSRepositoryFactory.class
FSRepositoryFactory.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSRepositoryFactory extends org.tmatesoft.svn.core.io.SVNRepositoryFactory { public void <init> () public static void setup () protected org.tmatesoft.svn.core.io.SVNRepository createRepositoryImpl (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.ISVNSession) org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.io.ISVNSession session }
org/tmatesoft/svn/core/internal/io/fs/FSTranslateReporter.class
FSTranslateReporter.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSTranslateReporter extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporter { private org.tmatesoft.svn.core.internal.io.fs.FSRepository myDelegate private boolean myIsRepositoryClosed public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSRepository) org.tmatesoft.svn.core.internal.io.fs.FSRepository delegate public void abortReport () throws org.tmatesoft.svn.core.SVNException public void deletePath (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void finishReport () throws org.tmatesoft.svn.core.SVNException public void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String path String lockToken long revision boolean startEmpty public void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String path String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty public void setPath (java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException String path String lockToken long revision boolean startEmpty public void setPath (java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException String path String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty public void closeRepository () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/io/fs/FSLog$PathInfo.class
FSLog.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSLog$PathInfo extends java.lang.Object { org.tmatesoft.svn.core.internal.io.fs.FSNodeHistory myHistory boolean myIsDone boolean myIsFirstTime long myHistoryRevision String myPath final synthetic org.tmatesoft.svn.core.internal.io.fs.FSLog this$0 private void <init> (org.tmatesoft.svn.core.internal.io.fs.FSLog) public org.tmatesoft.svn.core.internal.io.fs.FSLog$PathInfo getHistory (boolean, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot historyRoot boolean strictNodeHistory long start org.tmatesoft.svn.core.internal.io.fs.FSNodeHistory history public boolean checkHistory (long, boolean, long, boolean) throws org.tmatesoft.svn.core.SVNException long currentRevision boolean strictNodeHistory long start boolean changed synthetic void <init> (org.tmatesoft.svn.core.internal.io.fs.FSLog, org.tmatesoft.svn.core.internal.io.fs.FSLog$1) org.tmatesoft.svn.core.internal.io.fs.FSLog x0 org.tmatesoft.svn.core.internal.io.fs.FSLog$1 x1 }
org/tmatesoft/svn/core/internal/io/fs/FSErrors.class
FSErrors.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSErrors extends java.lang.Object { public void <init> () public static org.tmatesoft.svn.core.SVNErrorMessage errorDanglingId (org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.internal.io.fs.FSFS) org.tmatesoft.svn.core.internal.io.fs.FSID id org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.io.File fsDir org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorTxnNotMutable (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) String txnId org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.io.File fsDir org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorNotMutable (long, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) long revision String path org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.io.File fsDir org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorNotFound (org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String) org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot revRoot org.tmatesoft.svn.core.internal.io.fs.FSRoot root String path org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorNotDirectory (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) String path org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.io.File fsDir org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorCorruptLockFile (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) String path org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.io.File fsDir org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorOutOfDate (java.lang.String, org.tmatesoft.svn.core.SVNNodeKind) String path org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorAlreadyExists (org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot revRoot org.tmatesoft.svn.core.internal.io.fs.FSRoot root String path org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.io.File fsDir org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorNotTxn () org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorConflict (java.lang.String, java.lang.StringBuffer) String path StringBuffer conflictPath org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorNoSuchLock (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) String path org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.io.File fsDir org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorLockExpired (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) String lockToken org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.io.File fsDir org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorNoUser (org.tmatesoft.svn.core.internal.io.fs.FSFS) org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.io.File fsDir org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorLockOwnerMismatch (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) String username String lockOwner org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.io.File fsDir org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorNotFile (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) String path org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.io.File fsDir org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNErrorMessage errorPathAlreadyLocked (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) String path String owner org.tmatesoft.svn.core.internal.io.fs.FSFS fsfsOwner java.io.File fsDir org.tmatesoft.svn.core.SVNErrorMessage err public static boolean isLockError (org.tmatesoft.svn.core.SVNErrorMessage) org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorCode errCode public static boolean isUnlockError (org.tmatesoft.svn.core.SVNErrorMessage) org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorCode errCode }
org/tmatesoft/svn/core/internal/io/fs/FSOutputStream.class
FSOutputStream.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSOutputStream extends java.io.OutputStream implements org.tmatesoft.svn.core.io.ISVNDeltaConsumer { public static final int SVN_DELTA_WINDOW_SIZE public static final int WRITE_BUFFER_SIZE private boolean isHeaderWritten private org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream myTargetFileOS private java.io.File myTargetFile private long myDeltaStart private long myRepSize private long myRepOffset private java.io.InputStream mySourceStream private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator myDeltaGenerator private org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode myRevNode private java.security.MessageDigest myMD5Digest private java.security.MessageDigest mySHA1Digest private org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot myTxnRoot private long mySourceOffset private java.io.ByteArrayOutputStream myTextBuffer private boolean myIsClosed private boolean myIsCompress private org.tmatesoft.svn.core.internal.io.fs.FSWriteLock myTxnLock private void <init> (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream, java.io.File, java.io.InputStream, long, long, long, org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot, boolean, org.tmatesoft.svn.core.internal.io.fs.FSWriteLock) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.security.NoSuchAlgorithmException nsae org.tmatesoft.svn.core.SVNErrorMessage err java.security.NoSuchAlgorithmException nsae org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream targetFileOS java.io.File targetFile java.io.InputStream source long deltaStart long repSize long repOffset org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot boolean compress org.tmatesoft.svn.core.internal.io.fs.FSWriteLock txnLock private void reset (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream, java.io.File, java.io.InputStream, long, long, long, org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot, org.tmatesoft.svn.core.internal.io.fs.FSWriteLock) org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream targetFileOS java.io.File targetFile java.io.InputStream source long deltaStart long repSize long repOffset org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSWriteLock txnLock public static java.io.OutputStream createStream (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot, java.io.OutputStream, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String header org.tmatesoft.svn.core.internal.io.fs.FSOutputStream fsOS java.io.File targetFile org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream revWriter org.tmatesoft.svn.core.internal.io.fs.FSRepresentation baseRep String header org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot java.io.OutputStream dstStream boolean compress java.io.OutputStream targetOS java.io.InputStream sourceStream long offset long deltaStart org.tmatesoft.svn.core.internal.io.fs.FSWriteLock txnLock public void write (int) throws java.io.IOException int b public void write (byte[]) throws java.io.IOException byte[] b public void write (byte[], int, int) throws java.io.IOException java.io.ByteArrayInputStream target org.tmatesoft.svn.core.SVNException svne byte[] b int off int len int toWrite public void close () throws java.io.IOException java.io.ByteArrayInputStream target org.tmatesoft.svn.core.internal.io.fs.FSRepresentation rep long offset String uniqueSuffix String uniquifier org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager reposCacheManager org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException e long[] truncateToSize public void closeStreams (long) throws java.io.IOException long truncateToSize public org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode getRevisionNode () public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum static synthetic long access$000 (org.tmatesoft.svn.core.internal.io.fs.FSOutputStream) org.tmatesoft.svn.core.internal.io.fs.FSOutputStream x0 static synthetic org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode access$100 (org.tmatesoft.svn.core.internal.io.fs.FSOutputStream) org.tmatesoft.svn.core.internal.io.fs.FSOutputStream x0 }
org/tmatesoft/svn/core/internal/io/fs/FSLocationsFinder.class
FSLocationsFinder.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSLocationsFinder extends java.lang.Object { private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFS) org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public int traceNodeLocations (java.lang.String, long, long[], org.tmatesoft.svn.core.io.ISVNLocationEntryHandler) throws org.tmatesoft.svn.core.SVNException int i long[] appearedRevision org.tmatesoft.svn.core.io.SVNLocationEntry previousLocation String previousPath long previousRevision org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode currentNode String path long pegRevision long[] revisions org.tmatesoft.svn.core.io.ISVNLocationEntryHandler handler java.util.ArrayList locationEntries long[] locationRevs long revision int count boolean isAncestor org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode curNode public long getNodeLocationSegments (java.lang.String, long, long, long, org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long segmentStartRevision long segmentEndRevision String segmentPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.io.SVNLocationEntry previousLocation String path long pegRevision long startRevision long endRevision org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler handler long youngestRevision long count long currentRevision String currentPath long[] appearedRevision protected void reset (org.tmatesoft.svn.core.internal.io.fs.FSFS) org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs private long maybeCropAndSendSegment (long, long, long, long, java.lang.String, org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler) throws org.tmatesoft.svn.core.SVNException long segmentStartRevision long segmentEndRevision long startRevision long endRevision String segmentPath org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler handler }
org/tmatesoft/svn/core/internal/io/fs/FSTransactionInfo.class
FSTransactionInfo.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo extends java.lang.Object { private long myBaseRevision private String myTxnId private org.tmatesoft.svn.core.internal.io.fs.FSID myRootID private org.tmatesoft.svn.core.internal.io.fs.FSID myBaseID public void <init> (long, java.lang.String) long revision String id public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID rootID org.tmatesoft.svn.core.internal.io.fs.FSID baseID public long getBaseRevision () public void setBaseRevision (long) long baseRevision public java.lang.String getTxnId () public void setTxnId (java.lang.String) String txnId public org.tmatesoft.svn.core.internal.io.fs.FSID getBaseID () public org.tmatesoft.svn.core.internal.io.fs.FSID getRootID () }
org/tmatesoft/svn/core/internal/io/fs/FSTransactionRoot$HashRepresentationStream.class
FSTransactionRoot.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot$HashRepresentationStream extends java.io.OutputStream { long mySize java.security.MessageDigest myChecksum java.io.OutputStream myProtoFile public void <init> (java.io.OutputStream, java.security.MessageDigest) java.io.OutputStream protoFile java.security.MessageDigest digest public void write (int) throws java.io.IOException int b public void write (byte[], int, int) throws java.io.IOException byte[] b int off int len public void write (byte[]) throws java.io.IOException byte[] b }
org/tmatesoft/svn/core/internal/io/fs/FSRevisionNode.class
FSRevisionNode.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode extends java.lang.Object { public static final String HEADER_ID public static final String HEADER_TYPE public static final String HEADER_COUNT public static final String HEADER_PROPS public static final String HEADER_TEXT public static final String HEADER_CPATH public static final String HEADER_PRED public static final String HEADER_COPYFROM public static final String HEADER_COPYROOT public static final String HEADER_IS_FRESH_TXN_ROOT public static final String HEADER_MERGE_INFO_COUNT public static final String HEADER_MERGE_INFO_HERE private org.tmatesoft.svn.core.internal.io.fs.FSID myId private org.tmatesoft.svn.core.SVNNodeKind myType private long myCount private org.tmatesoft.svn.core.internal.io.fs.FSID myPredecessorId private org.tmatesoft.svn.core.internal.io.fs.FSRepresentation myTextRepresentation private org.tmatesoft.svn.core.internal.io.fs.FSRepresentation myPropsRepresentation private String myCreatedPath private long myCopyFromRevision private String myCopyFromPath private long myCopyRootRevision private String myCopyRootPath private java.util.Map myDirContents private boolean myIsFreshTxnRoot private org.tmatesoft.svn.core.internal.io.fs.FSID myFreshRootPredecessorId private long myMergeInfoCount private boolean myHasMergeInfo public void <init> () public void setId (org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID revNodeID public void setType (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind nodeKind public void setCount (long) long count public void setPredecessorId (org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID predRevNodeId public void setTextRepresentation (org.tmatesoft.svn.core.internal.io.fs.FSRepresentation) org.tmatesoft.svn.core.internal.io.fs.FSRepresentation textRepr public void setPropsRepresentation (org.tmatesoft.svn.core.internal.io.fs.FSRepresentation) org.tmatesoft.svn.core.internal.io.fs.FSRepresentation propsRepr public void setCreatedPath (java.lang.String) String cpath public void setCopyFromRevision (long) long copyFromRev public void setCopyFromPath (java.lang.String) String copyFromPath public void setCopyRootRevision (long) long copyRootRev public void setCopyRootPath (java.lang.String) String copyRootPath public void setMergeInfoCount (long) long mergeInfoCount public void setHasMergeInfo (boolean) boolean hasMergeInfo public org.tmatesoft.svn.core.internal.io.fs.FSID getId () public org.tmatesoft.svn.core.SVNNodeKind getType () public long getCount () public org.tmatesoft.svn.core.internal.io.fs.FSID getPredecessorId () public org.tmatesoft.svn.core.internal.io.fs.FSRepresentation getTextRepresentation () public org.tmatesoft.svn.core.internal.io.fs.FSRepresentation getPropsRepresentation () public java.lang.String getCreatedPath () public long getCreatedRevision () public long getCopyFromRevision () public java.lang.String getCopyFromPath () public long getCopyRootRevision () public java.lang.String getCopyRootPath () public static org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode dumpRevisionNode (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode) org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode clone protected java.util.Map getDirContents () public void setDirContents (java.util.Map) java.util.Map dirContents public boolean hasMergeInfo () public long getMergeInfoCount () public boolean hasDescendantsWithMergeInfo () public java.lang.String toString () StringBuffer buffer public static org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode fromMap (java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe long cnt org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSID predRevNodeId org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException e java.util.Map headers org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode String revNodeId org.tmatesoft.svn.core.internal.io.fs.FSID revnodeID org.tmatesoft.svn.core.SVNNodeKind nodeKind String countString String propsRepr String textRepr String cpath String predId String copyroot String copyfrom String mergeInfoCountStr public static void parseRepresentationHeader (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String representation org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode String txnId boolean isData boolean mutableRepTuncated org.tmatesoft.svn.core.internal.io.fs.FSRepresentation rep int delimiterInd String revision long rev String repOffset long offset String repSize long size String repExpandedSize long expandedSize String hexMD5Digest String hexSHA1Digest String uniquifier private static void parseCopyFrom (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String copyfrom org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode int delimiterInd String copyfromRev String copyfromPath long rev private static void parseCopyRoot (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String copyroot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode int delimiterInd String copyrootRev String copyrootPath long rev public org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode getChildDirNode (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String childName org.tmatesoft.svn.core.internal.io.fs.FSFS fsfsOwner java.util.Map entries org.tmatesoft.svn.core.internal.io.fs.FSEntry entry public java.util.Map getDirEntries (org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSFS fsfsOwner java.util.Map dirContents public org.tmatesoft.svn.core.SVNProperties getProperties (org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFS fsfsOwner public org.tmatesoft.svn.core.internal.io.fs.FSRepresentation chooseDeltaBase (org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFS fsfsOwner long count org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode baseNode public java.lang.String getFileMD5Checksum () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err public java.lang.String getFileSHA1Checksum () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err public long getFileLength () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err public void setIsFreshTxnRoot (boolean) boolean isFreshTxnRoot public boolean isFreshTxnRoot () public void setFreshRootPredecessorId (org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID freshRootPredecessorId }
org/tmatesoft/svn/core/internal/io/fs/FSInputStream$FSRepresentationState.class
FSInputStream.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSInputStream$FSRepresentationState extends java.lang.Object { org.tmatesoft.svn.core.internal.io.fs.FSFile myFile long myStart long myOffset long myEnd int myVersion int myChunkIndex boolean myIsDelta boolean myIsDeltaVsEmpty long myBaseRevision long myBaseOffset long myBaseLength public void <init> () }
org/tmatesoft/svn/core/internal/io/fs/FSDeltaConsumer.class
FSDeltaConsumer.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSDeltaConsumer extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNDeltaConsumer { private String myBasePath private org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot myTxnRoot private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS private org.tmatesoft.svn.core.internal.io.fs.FSCommitter myCommitter private org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor myDeltaProcessor private org.tmatesoft.svn.core.internal.io.fs.FSOutputStream myTargetStream private String myAuthor private java.util.Collection myLockTokens private org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner myDeltaCombiner private boolean myIsComputeChecksum private String myComputedChecksum public void <init> (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot, org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSCommitter, java.lang.String, java.util.Collection) String basePath org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.FSCommitter committer String author java.util.Collection lockTokens public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String md5HexChecksum org.tmatesoft.svn.core.SVNException svne String path String baseChecksum String fullPath org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node java.io.InputStream sourceStream java.io.OutputStream targetStream int dbFormat public void applyText (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String path String fullPath org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node java.io.InputStream sourceStream java.io.OutputStream targetStream int dbFormat public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public java.lang.String getChecksum () public void close () throws org.tmatesoft.svn.core.SVNException public void abort () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e public void setComputeChecksum (boolean) boolean computeChecksum private org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner getCombiner () }
org/tmatesoft/svn/core/internal/io/fs/FSParentPath.class
FSParentPath.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSParentPath extends java.lang.Object { private org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode myRevNode private String myEntryName private org.tmatesoft.svn.core.internal.io.fs.FSParentPath myParent private org.tmatesoft.svn.core.internal.io.fs.FSCopyInheritance myCopyInheritance public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSParentPath) org.tmatesoft.svn.core.internal.io.fs.FSParentPath newParentPath public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSParentPath) org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode newRevNode String newEntry org.tmatesoft.svn.core.internal.io.fs.FSParentPath newParentPath public org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode getRevNode () public void setRevNode (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode) org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode newRevNode public java.lang.String getEntryName () public org.tmatesoft.svn.core.internal.io.fs.FSParentPath getParent () public int getCopyStyle () public void setCopyStyle (int) int newCopyStyle public java.lang.String getCopySourcePath () public void setCopySourcePath (java.lang.String) String newCopyPath public void setParentPath (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSParentPath) org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode newRevNode String newEntry org.tmatesoft.svn.core.internal.io.fs.FSParentPath newParentPath public java.lang.String getAbsPath () throws org.tmatesoft.svn.core.SVNException String pathSoFar public java.lang.String getRelativePath (org.tmatesoft.svn.core.internal.io.fs.FSParentPath) org.tmatesoft.svn.core.internal.io.fs.FSParentPath ancestor String pathSoFar org.tmatesoft.svn.core.internal.io.fs.FSParentPath thisNode }
org/tmatesoft/svn/core/internal/io/fs/FSRevisionRoot.class
FSRevisionRoot.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot extends org.tmatesoft.svn.core.internal.io.fs.FSRoot { private long myRevision private long myRootOffset private long myChangesOffset public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFS, long) org.tmatesoft.svn.core.internal.io.fs.FSFS owner long revision public long getRevision () public java.util.Map getChangedPaths () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFile file public org.tmatesoft.svn.core.internal.io.fs.FSCopyInheritance getCopyInheritance (org.tmatesoft.svn.core.internal.io.fs.FSParentPath) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSParentPath child public org.tmatesoft.svn.core.internal.io.fs.FSNodeHistory getNodeHistory (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNNodeKind kind public org.tmatesoft.svn.core.internal.io.fs.FSClosestCopy getClosestCopy (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath org.tmatesoft.svn.core.io.SVNLocationEntry copyDstEntry org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot copyDstRoot org.tmatesoft.svn.core.internal.io.fs.FSParentPath copyDstParentPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode copyDstNode long createdRev public org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode getRootRevisionNode () throws org.tmatesoft.svn.core.SVNException java.util.Map headers org.tmatesoft.svn.core.internal.io.fs.FSFile file public org.tmatesoft.svn.core.io.SVNLocationEntry getPreviousLocation (java.lang.String, long[]) throws org.tmatesoft.svn.core.SVNException String path long[] appearedRevision org.tmatesoft.svn.core.internal.io.fs.FSClosestCopy closestCopy org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot copyTargetRoot String copyTargetPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode copyFromNode String copyFromPath long copyFromRevision String remainder String previousPath public long getNodeOriginRevision (java.lang.String) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe org.tmatesoft.svn.core.internal.io.fs.FSID id org.tmatesoft.svn.core.io.SVNLocationEntry previousLocation String path org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node String nodeID org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs int dashIndex String cachedOriginID long lastRev String lastPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot curRoot org.tmatesoft.svn.core.internal.io.fs.FSID predID private void loadOffsets (org.tmatesoft.svn.core.internal.io.fs.FSFile) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFile file long[] rootOffset long[] changesOffset }
org/tmatesoft/svn/core/internal/io/fs/FSLog$2.class
FSLog.java package org.tmatesoft.svn.core.internal.io.fs final org.tmatesoft.svn.core.internal.io.fs.FSLog$2 extends java.lang.Object implements java.util.Comparator { void <init> () public int compare (java.lang.Object, java.lang.Object) Object o1 Object o2 org.tmatesoft.svn.core.internal.io.fs.FSLog$PathListRange plr1 org.tmatesoft.svn.core.internal.io.fs.FSLog$PathListRange plr2 }
org/tmatesoft/svn/core/internal/io/fs/FSHooks.class
FSHooks.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSHooks extends java.lang.Object { public static final String SVN_REPOS_HOOK_START_COMMIT public static final String SVN_REPOS_HOOK_PRE_COMMIT public static final String SVN_REPOS_HOOK_POST_COMMIT public static final String SVN_REPOS_HOOK_PRE_REVPROP_CHANGE public static final String SVN_REPOS_HOOK_POST_REVPROP_CHANGE public static final String SVN_REPOS_HOOK_PRE_LOCK public static final String SVN_REPOS_HOOK_POST_LOCK public static final String SVN_REPOS_HOOK_PRE_UNLOCK public static final String SVN_REPOS_HOOK_POST_UNLOCK public static final String SVN_REPOS_HOOK_READ_SENTINEL public static final String SVN_REPOS_HOOK_WRITE_SENTINEL public static final String SVN_REPOS_HOOK_DESC_EXT public static final String SVN_REPOS_HOOKS_DIR public static final String REVPROP_DELETE public static final String REVPROP_ADD public static final String REVPROP_MODIFY private static final String[] winExtensions private static Boolean ourIsHooksEnabled public void <init> () public static void setHooksEnabled (boolean) boolean enabled public static boolean isHooksEnabled () public static java.lang.String runPreLockHook (java.io.File, java.lang.String, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File reposRootDir String path String username String comment boolean stealLock public static void runPostLockHook (java.io.File, java.lang.String[], java.lang.String) throws org.tmatesoft.svn.core.SVNException int i java.io.File reposRootDir String[] paths String username StringBuffer pathsStr public static void runPreUnlockHook (java.io.File, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File reposRootDir String path String username public static void runPostUnlockHook (java.io.File, java.lang.String[], java.lang.String) throws org.tmatesoft.svn.core.SVNException int i java.io.File reposRootDir String[] paths String username StringBuffer pathsStr private static void runLockHook (java.io.File, java.lang.String, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.UnsupportedEncodingException e java.io.File reposRootDir String hookName String path String username String paths byte[] bytes public static void runPreRevPropChangeHook (java.io.File, java.lang.String, byte[], java.lang.String, long, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File reposRootDir String propName byte[] propNewValue String author long revision String action public static void runPostRevPropChangeHook (java.io.File, java.lang.String, byte[], java.lang.String, long, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File reposRootDir String propName byte[] propOldValue String author long revision String action private static void runChangeRevPropHook (java.io.File, java.lang.String, java.lang.String, byte[], java.lang.String, long, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File reposRootDir String hookName String propName byte[] propValue String author long revision String action boolean isPre java.io.File hookFile public static void runStartCommitHook (java.io.File, java.lang.String, java.util.List) throws org.tmatesoft.svn.core.SVNException java.io.File reposRootDir String author java.util.List capabilities String capsString String[] args public static void runPreCommitHook (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File reposRootDir String txnName public static void runPostCommitHook (java.io.File, long) throws org.tmatesoft.svn.core.SVNException java.io.File reposRootDir long committedRevision private static java.lang.String runHook (java.io.File, java.lang.String, java.lang.String[], byte[]) throws org.tmatesoft.svn.core.SVNException int i int j int i org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe java.io.File reposRootDir String hookName String[] args byte[] input java.io.File hookFile Process hookProc String reposPath String executableName boolean useCmd String[] cmd private static java.lang.String feedHook (java.io.File, java.lang.String, java.lang.Process, byte[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int i java.io.IOException ioe java.io.OutputStream osToStdIn org.tmatesoft.svn.core.SVNErrorMessage err InterruptedException ie org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String actionName String stdErrMessage String errorMessage org.tmatesoft.svn.core.SVNErrorMessage err java.io.File hook String hookName Process hookProcess byte[] stdInValue org.tmatesoft.svn.core.internal.util.SVNStreamGobbler inputGobbler org.tmatesoft.svn.core.internal.util.SVNStreamGobbler errorGobbler int rc private static java.io.File getHookFile (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNFileType type int i org.tmatesoft.svn.core.SVNErrorMessage err java.io.File realFile org.tmatesoft.svn.core.internal.wc.SVNFileType type java.io.File reposRootDir String hookName java.io.File hookFile private static java.io.File getHooksDir (java.io.File) java.io.File reposRootDir private static java.lang.String getCapabilitiesAsString (java.util.List) Object cap int i java.util.List capabilities StringBuffer buffer static void <clinit> () }
org/tmatesoft/svn/core/internal/io/fs/IFSSqlJetTransaction.class
IFSSqlJetTransaction.java package org.tmatesoft.svn.core.internal.io.fs public abstract org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction extends java.lang.Object { public abstract void run () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/io/fs/FSCommitEditor$DirBaton.class
FSCommitEditor.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSCommitEditor$DirBaton extends java.lang.Object { private long myBaseRevision private String myPath private boolean isCopied public void <init> (long, java.lang.String, boolean) long revision String path boolean copied public boolean isCopied () public long getBaseRevision () public java.lang.String getPath () }
org/tmatesoft/svn/core/internal/io/fs/PathInfo.class
PathInfo.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.PathInfo extends java.lang.Object { String myPath String myLinkPath String myLockToken long myRevision boolean startEmpty org.tmatesoft.svn.core.SVNDepth myDepth public void <init> (java.lang.String, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) String path String linkPath String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean empty public java.lang.String getLinkPath () public java.lang.String getLockToken () public java.lang.String getPath () public long getRevision () public boolean isStartEmpty () public static boolean isRelevant (org.tmatesoft.svn.core.internal.io.fs.PathInfo, java.lang.String) org.tmatesoft.svn.core.internal.io.fs.PathInfo pathInfo String prefix public org.tmatesoft.svn.core.SVNDepth getDepth () }
org/tmatesoft/svn/core/internal/io/fs/FSRepresentation.class
FSRepresentation.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSRepresentation extends java.lang.Object { public static final String REP_DELTA public static final String REP_PLAIN public static final String REP_TRAILER private long myRevision private long myOffset private long mySize private long myExpandedSize private String myMD5HexDigest private String mySHA1HexDigest private String myTxnId private String myUniquifier public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSRepresentation) org.tmatesoft.svn.core.internal.io.fs.FSRepresentation representation public void <init> () public void setRevision (long) long rev public void setOffset (long) long offset public void setSize (long) long size public void setExpandedSize (long) long expandedSize public void setMD5HexDigest (java.lang.String) String hexDigest public java.lang.String getSHA1HexDigest () public void setSHA1HexDigest (java.lang.String) String hexDigest public java.lang.String getUniquifier () public void setUniquifier (java.lang.String) String uniquifier public long getRevision () public long getOffset () public long getSize () public long getExpandedSize () public java.lang.String getMD5HexDigest () public static boolean compareRepresentations (org.tmatesoft.svn.core.internal.io.fs.FSRepresentation, org.tmatesoft.svn.core.internal.io.fs.FSRepresentation) org.tmatesoft.svn.core.internal.io.fs.FSRepresentation r1 org.tmatesoft.svn.core.internal.io.fs.FSRepresentation r2 public boolean equals (java.lang.Object) Object obj org.tmatesoft.svn.core.internal.io.fs.FSRepresentation rep public java.lang.String getStringRepresentation (int) int dbFormat public java.lang.String getTxnId () public void setTxnId (java.lang.String) String txnId public boolean isTxn () }
org/tmatesoft/svn/core/internal/io/fs/FSTransactionRoot.class
FSTransactionRoot.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot extends org.tmatesoft.svn.core.internal.io.fs.FSRoot { public static final int SVN_FS_TXN_CHECK_OUT_OF_DATENESS public static final int SVN_FS_TXN_CHECK_LOCKS private String myTxnID private int myTxnFlags private java.io.File myTxnChangesFile private java.io.File myTxnRevFile private long myBaseRevision public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFS, java.lang.String, long, int) org.tmatesoft.svn.core.internal.io.fs.FSFS owner String txnID long baseRevision int flags public long getRevision () public org.tmatesoft.svn.core.internal.io.fs.FSCopyInheritance getCopyInheritance (org.tmatesoft.svn.core.internal.io.fs.FSParentPath) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSParentPath child org.tmatesoft.svn.core.internal.io.fs.FSID childID org.tmatesoft.svn.core.internal.io.fs.FSID parentID String childCopyID String parentCopyID org.tmatesoft.svn.core.internal.io.fs.FSCopyInheritance copyInheritance long copyrootRevision String copyrootPath org.tmatesoft.svn.core.internal.io.fs.FSRoot copyrootRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode copyrootNode org.tmatesoft.svn.core.internal.io.fs.FSID copyrootID String idPath public org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode getRootRevisionNode () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn public org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode getTxnBaseRootNode () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode baseRootNode public org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo getTxn () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSID rootID org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn public java.util.Map getChangedPaths () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFile file public int getTxnFlags () public void setTxnFlags (int) int txnFlags public java.lang.String getTxnID () public org.tmatesoft.svn.core.SVNProperties unparseDirEntries (java.util.Map) String name org.tmatesoft.svn.core.internal.io.fs.FSEntry dirEntry String unparsedVal java.util.Iterator names java.util.Map entries org.tmatesoft.svn.core.SVNProperties unparsedEntries public static org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo beginTransactionForCommit (long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException long baseRevision org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.util.List caps String author org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn public static org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo beginTransaction (long, int, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException long baseRevision int flags org.tmatesoft.svn.core.internal.io.fs.FSFS owner org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn String commitTime private static org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo createTxn (long, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException long baseRevision org.tmatesoft.svn.core.internal.io.fs.FSFS owner String txnId org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode rootNode private static java.lang.String createTxnDir (long, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException long revision org.tmatesoft.svn.core.internal.io.fs.FSFS owner String txnId java.io.File parent java.io.File txnDir private static java.lang.String createPre15TxnDir (long, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException String txnId int i long revision org.tmatesoft.svn.core.internal.io.fs.FSFS owner java.io.File parent java.io.File uniquePath org.tmatesoft.svn.core.SVNErrorMessage err public void deleteEntry (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode parent String entryName java.util.Map entries org.tmatesoft.svn.core.internal.io.fs.FSEntry dirEntry public void incrementMergeInfoCount (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node long increment private void deleteEntryIfMutable (org.tmatesoft.svn.core.internal.io.fs.FSID) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.internal.io.fs.FSEntry entry java.util.Iterator names java.util.Map entries org.tmatesoft.svn.core.internal.io.fs.FSID id org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node private void removeRevisionNode (org.tmatesoft.svn.core.internal.io.fs.FSID) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSID id org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node public void setProplist (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRepresentation mutableRep org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node org.tmatesoft.svn.core.SVNProperties properties java.io.File propsFile public org.tmatesoft.svn.core.internal.io.fs.FSID createSuccessor (org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSID oldId org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode newRevNode String copyId org.tmatesoft.svn.core.internal.io.fs.FSID id public void setEntry (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.util.Map entries org.tmatesoft.svn.core.SVNProperties unparsedEntries String uniqueSuffix String uniquifier java.util.Map dirContents org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode parentRevNode String entryName org.tmatesoft.svn.core.internal.io.fs.FSID entryId org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.io.fs.FSRepresentation textRep java.io.File childrenFile java.io.OutputStream dst public void writeChangeEntry (java.io.OutputStream, org.tmatesoft.svn.core.internal.io.fs.FSPathChange, boolean) throws org.tmatesoft.svn.core.SVNException java.io.IOException org.tmatesoft.svn.core.SVNErrorMessage err String copyfromLine java.io.OutputStream changesFile org.tmatesoft.svn.core.internal.io.fs.FSPathChange pathChange boolean includeNodeKind org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind changeKind String changeString String idString String output String copyfromPath long copyfromRevision public long writeFinalChangedPathInfo (org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream) throws org.tmatesoft.svn.core.SVNException java.io.IOException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode String path org.tmatesoft.svn.core.internal.io.fs.FSPathChange change org.tmatesoft.svn.core.internal.io.fs.FSID id java.util.Iterator paths org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream protoFile long offset java.util.Map changedPaths boolean includeNodeKind public java.lang.String[] readNextIDs () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String[] ids String idsToParse org.tmatesoft.svn.core.internal.io.fs.FSFile idsFile int delimiterInd public void writeFinalCurrentFile (long, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException long newRevision String startNodeId String startCopyId String[] txnIds String txnNodeId String txnCopyId String newNodeId String newCopyId public org.tmatesoft.svn.core.internal.io.fs.FSID writeFinalRevision (org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream, long, org.tmatesoft.svn.core.internal.io.fs.FSID, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException org.tmatesoft.svn.core.internal.io.fs.FSEntry dirEntry java.util.Iterator entries java.security.MessageDigest checksum long size String hexDigest org.tmatesoft.svn.core.SVNErrorMessage err java.security.NoSuchAlgorithmException nsae org.tmatesoft.svn.core.SVNProperties unparsedEntries org.tmatesoft.svn.core.internal.io.fs.FSRepresentation textRep java.util.Map namesToEntries org.tmatesoft.svn.core.internal.io.fs.FSRepresentation textRep java.security.MessageDigest checksum long size String hexDigest org.tmatesoft.svn.core.SVNErrorMessage err java.security.NoSuchAlgorithmException nsae org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.internal.io.fs.FSRepresentation propsRep org.tmatesoft.svn.core.internal.io.fs.FSID newId org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream protoFile long revision org.tmatesoft.svn.core.internal.io.fs.FSID id String startNodeId String startCopyId org.tmatesoft.svn.core.internal.io.fs.FSFS owner org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode long myOffset String myNodeId String nodeId String myCopyId String copyId org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager reposCacheManager public org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode cloneChild (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, java.lang.String, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode parent String parentPath String childName String copyId boolean isParentCopyRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode childNode org.tmatesoft.svn.core.internal.io.fs.FSID newNodeId public java.io.File getTransactionRevNodePropsFile (org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID id public java.io.File getTransactionRevNodeChildrenFile (org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID id public java.io.File getTransactionProtoRevFile () public java.io.File getTransactionChangesFile () public java.lang.String getNewTxnNodeId () throws org.tmatesoft.svn.core.SVNException String[] curIds String curNodeId String curCopyId String nextNodeId private long writeHashRepresentation (org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream, java.security.MessageDigest) throws java.io.IOException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties hashContents java.io.OutputStream protoFile java.security.MessageDigest digest org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot$HashRepresentationStream targetFile String header String trailer private static java.lang.String addKeys (java.lang.String, java.lang.String) char sym int val String key1 String key2 int i1 int i2 int carry StringBuffer result }
org/tmatesoft/svn/core/internal/io/fs/FSRepositoryUtil$1.class
FSRepositoryUtil.java package org.tmatesoft.svn.core.internal.io.fs final org.tmatesoft.svn.core.internal.io.fs.FSRepositoryUtil$1 extends java.lang.ThreadLocal { void <init> () protected byte[] initialValue () protected volatile synthetic java.lang.Object initialValue () }
org/tmatesoft/svn/core/internal/io/fs/FSLock.class
FSLock.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSLock extends org.tmatesoft.svn.core.SVNLock { private boolean myIsDAVComment public void <init> (java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.Date, java.util.Date, boolean) String path String id String owner String comment java.util.Date created java.util.Date expires boolean isDAVComment public boolean isDAVComment () }
org/tmatesoft/svn/core/internal/io/fs/FSHotCopier$1.class
FSHotCopier.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSHotCopier$1 extends java.lang.Object implements org.tmatesoft.sqljet.core.table.ISqlJetTransaction { final synthetic java.io.File val$srcRevPropDb final synthetic java.io.File val$dstRevPropDb final synthetic org.tmatesoft.svn.core.internal.io.fs.FSHotCopier this$0 void <init> (org.tmatesoft.svn.core.internal.io.fs.FSHotCopier, java.io.File, java.io.File) public java.lang.Object run (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException e org.tmatesoft.sqljet.core.table.SqlJetDb db }
org/tmatesoft/svn/core/internal/io/fs/FSLog$PathListRange.class
FSLog.java package org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.io.fs.FSLog$PathListRange extends java.lang.Object { public boolean reverseMerge String[] myPaths org.tmatesoft.svn.core.SVNMergeRange myRange final synthetic org.tmatesoft.svn.core.internal.io.fs.FSLog this$0 private void <init> (org.tmatesoft.svn.core.internal.io.fs.FSLog) synthetic void <init> (org.tmatesoft.svn.core.internal.io.fs.FSLog, org.tmatesoft.svn.core.internal.io.fs.FSLog$1) org.tmatesoft.svn.core.internal.io.fs.FSLog x0 org.tmatesoft.svn.core.internal.io.fs.FSLog$1 x1 }
org/tmatesoft/svn/core/internal/io/fs/FSHotCopier.class
FSHotCopier.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSHotCopier extends java.lang.Object { public void <init> () public void runHotCopy (org.tmatesoft.svn.core.internal.io.fs.FSFS, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.io.File dstReposLocksDir java.io.File dstDBDir org.tmatesoft.svn.core.internal.io.fs.FSFS dstOwner String fsType org.tmatesoft.svn.core.internal.io.fs.FSFS srcOwner java.io.File dstPath org.tmatesoft.svn.core.internal.io.fs.FSWriteLock dbLogsLock java.io.File srcPath private void writeFSType (org.tmatesoft.svn.core.internal.io.fs.FSFS, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.internal.io.fs.FSFS dstOwner String fsType java.io.OutputStream fsTypeStream private void createRepositoryLayout (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File child String childName java.io.File dstChildPath int i java.io.File srcPath java.io.File dstPath java.io.File[] children private void createReposDir (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File[] dstChildren java.io.File dir private void createDBLock (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.io.File dstPath private void createDBLogsLock (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.io.File dstPath private void hotCopy (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException long packedShard String shard java.io.File dstDir org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e java.io.File srcRevPropDb java.io.File dstRevPropDb org.tmatesoft.svn.core.internal.db.SVNSqlJetDb revPropDb String shard java.io.File dstDir org.tmatesoft.svn.core.internal.io.fs.FSFS srcOwner org.tmatesoft.svn.core.internal.io.fs.FSFS dstOwner int format long minUnpackedRevision long youngestRev java.io.File dstRevsDir long maxFilesPerDirectory long rev long min_unpacked_revprop java.io.File dstRevPropsDir java.io.File srcLocksDir java.io.File srcNodeOriginsDir }
org/tmatesoft/svn/core/internal/io/fs/FSRepository.class
FSRepository.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSRepository extends org.tmatesoft.svn.core.io.SVNRepository implements org.tmatesoft.svn.core.io.ISVNReporter { private java.io.File myReposRootDir private org.tmatesoft.svn.core.internal.io.fs.FSUpdateContext myReporterContext private org.tmatesoft.svn.core.internal.io.fs.FSLocationsFinder myLocationsFinder private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS private org.tmatesoft.svn.core.internal.wc.SVNMergeInfoManager myMergeInfoManager private org.tmatesoft.svn.core.internal.io.fs.FSLog myLogDriver private boolean myIsHooksEnabled protected void <init> (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.ISVNSession) org.tmatesoft.svn.core.SVNURL location org.tmatesoft.svn.core.io.ISVNSession options public void setHooksEnabled (boolean) boolean enabled public boolean isHooksEnabled () public org.tmatesoft.svn.core.internal.io.fs.FSFS getFSFS () public void testConnection () throws org.tmatesoft.svn.core.SVNException public java.io.File getRepositoryRootDir () public int getReposFormat () public long getLatestRevision () throws org.tmatesoft.svn.core.SVNException public long getDatedRevision (java.util.Date) throws org.tmatesoft.svn.core.SVNException java.util.Date date public org.tmatesoft.svn.core.SVNProperties getRevisionProperties (long, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException long revision org.tmatesoft.svn.core.SVNProperties properties public void setRevisionPropertyValue (long, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException long revision String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public void setRevisionPropertyValue (long, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean) throws org.tmatesoft.svn.core.SVNException long revision String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue boolean bypassHooks public void setRevisionPropertyValue (long, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean, boolean) throws org.tmatesoft.svn.core.SVNException String userName org.tmatesoft.svn.core.SVNProperties revProps org.tmatesoft.svn.core.SVNPropertyValue oldValue String action byte[] bytes long revision String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue boolean bypassPreRevpropHook boolean bypassPostRevpropHook public org.tmatesoft.svn.core.SVNPropertyValue getRevisionPropertyValue (long, java.lang.String) throws org.tmatesoft.svn.core.SVNException long revision String propertyName public org.tmatesoft.svn.core.SVNNodeKind checkPath (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String repositoryPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.SVNException e String path long revision public long getFile (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException java.io.InputStream fileStream org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode String repositoryPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root String path long revision org.tmatesoft.svn.core.SVNProperties properties java.io.OutputStream contents public long getDir (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.ISVNDirEntryHandler handler public org.tmatesoft.svn.core.SVNDirEntry getDir (java.lang.String, long, boolean, java.util.Collection) throws org.tmatesoft.svn.core.SVNException String repositoryPath org.tmatesoft.svn.core.SVNURL parentURL org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode parent org.tmatesoft.svn.core.SVNDirEntry parentDirEntry String path long revision boolean includeCommitMessages java.util.Collection entries public long getDir (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, int, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDirEntry entry org.tmatesoft.svn.core.SVNURL parentURL java.util.Collection entriesCollection java.util.Iterator entries String repositoryPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode parent String path long revision org.tmatesoft.svn.core.SVNProperties properties int entryFields org.tmatesoft.svn.core.ISVNDirEntryHandler handler protected int getFileRevisionsImpl (java.lang.String, long, long, boolean, org.tmatesoft.svn.core.io.ISVNFileRevisionHandler) throws org.tmatesoft.svn.core.SVNException long latestRevision org.tmatesoft.svn.core.internal.io.fs.FSFileRevisionsFinder finder int fileRevsNumber String path long startRevision long endRevision boolean includeMergedRevisions org.tmatesoft.svn.core.io.ISVNFileRevisionHandler handler protected long logImpl (java.lang.String[], long, long, boolean, boolean, long, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String[] absPaths long youngestRev long histStart long histEnd boolean isDescendingOrder org.tmatesoft.svn.core.internal.io.fs.FSLog logDriver String[] targetPaths long startRevision long endRevision boolean discoverChangedPaths boolean strictNode long limit boolean includeMergedRevisions String[] revPropNames org.tmatesoft.svn.core.ISVNLogEntryHandler handler protected int getLocationsImpl (java.lang.String, long, long[], org.tmatesoft.svn.core.io.ISVNLocationEntryHandler) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.internal.io.fs.FSLocationsFinder locationsFinder String path long pegRevision long[] revisions org.tmatesoft.svn.core.io.ISVNLocationEntryHandler handler protected long getLocationSegmentsImpl (java.lang.String, long, long, long, org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSLocationsFinder locationsFinder String path long pegRevision long startRevision long endRevision org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler handler public void replay (long, long, boolean, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root String basePath long lowRevision long highRevision boolean sendDeltas org.tmatesoft.svn.core.io.ISVNEditor editor public org.tmatesoft.svn.core.SVNDirEntry info (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode String fullPath String parentFullPath org.tmatesoft.svn.core.SVNURL url String name org.tmatesoft.svn.core.internal.io.fs.FSEntry fsEntry org.tmatesoft.svn.core.SVNDirEntry entry String path long revision public org.tmatesoft.svn.core.io.ISVNEditor getCommitEditor (java.lang.String, java.util.Map, boolean, org.tmatesoft.svn.core.io.ISVNWorkspaceMediator) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String logMessage java.util.Map locks boolean keepLocks org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator String author public org.tmatesoft.svn.core.SVNLock getLock (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLock lock String path public org.tmatesoft.svn.core.SVNLock[] getLocks (java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File digestFile java.util.ArrayList locks org.tmatesoft.svn.core.io.ISVNLockHandler handler String path public void lock (java.util.Map, java.lang.String, boolean, org.tmatesoft.svn.core.io.ISVNLockHandler) throws org.tmatesoft.svn.core.SVNException java.util.Map pathsToRevisions String comment boolean force org.tmatesoft.svn.core.io.ISVNLockHandler handler public void lock (java.util.Map, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.io.ISVNLockHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String path Long revision String reposPath long curRevision org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error java.util.Iterator paths java.util.Map pathsToRevisions String comment boolean force boolean isDAVComment org.tmatesoft.svn.core.io.ISVNLockHandler handler public void unlock (java.util.Map, boolean, org.tmatesoft.svn.core.io.ISVNLockHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String path String token String reposPath org.tmatesoft.svn.core.SVNErrorMessage error java.util.Iterator paths java.util.Map pathToTokens boolean force org.tmatesoft.svn.core.io.ISVNLockHandler handler public void finishReport () throws org.tmatesoft.svn.core.SVNException public void abortReport () throws org.tmatesoft.svn.core.SVNException public void closeSession () public static boolean isInvalidRevision (long) long revision public static boolean isValidRevision (long) long revision public void setPath (java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException String path String lockToken long revision boolean startEmpty public void deletePath (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String path String lockToken long revision boolean startEmpty public void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url String path String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty org.tmatesoft.svn.core.SVNURL reposRootURL String reposLinkPath public void setPath (java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException String path String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty public org.tmatesoft.svn.core.internal.io.fs.FSTranslateReporter beginReport (long, org.tmatesoft.svn.core.SVNURL, java.lang.String, boolean, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException long revision org.tmatesoft.svn.core.SVNURL url String target boolean ignoreAncestry boolean sendTextDeltas boolean sendCopyFromArgs org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.io.ISVNEditor editor public void update (long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException long revision String target org.tmatesoft.svn.core.SVNDepth depth boolean sendCopyFromArgs org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public void update (org.tmatesoft.svn.core.SVNURL, long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url long revision String target org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public void diff (org.tmatesoft.svn.core.SVNURL, long, long, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url long targetRevision long revision String target boolean ignoreAncestry org.tmatesoft.svn.core.SVNDepth depth boolean getContents org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public void status (long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException long revision String target org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public boolean hasCapability (org.tmatesoft.svn.core.io.SVNCapability) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.io.SVNCapability capability org.tmatesoft.svn.core.SVNErrorMessage err void closeRepository () throws org.tmatesoft.svn.core.SVNException protected java.util.Map getMergeInfoImpl (java.lang.String[], long, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root String[] absPaths org.tmatesoft.svn.core.internal.wc.SVNMergeInfoManager mergeInfoManager String[] paths long revision org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit boolean includeDescendants protected org.tmatesoft.svn.core.io.ISVNEditor getCommitEditorInternal (java.util.Map, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.io.ISVNWorkspaceMediator) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne java.util.Map locks boolean keepLocks org.tmatesoft.svn.core.SVNProperties revProps org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator protected void replayRangeImpl (long, long, long, boolean, org.tmatesoft.svn.core.io.ISVNReplayHandler) throws org.tmatesoft.svn.core.SVNException long startRevision long endRevision long lowRevision boolean sendDeltas org.tmatesoft.svn.core.io.ISVNReplayHandler handler org.tmatesoft.svn.core.SVNErrorMessage err protected long getDeletedRevisionImpl (java.lang.String, long, long) throws org.tmatesoft.svn.core.SVNException String path long pegRevision long endRevision private void openRepository () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne private void openRepositoryRoot () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String hostName boolean hasCustomHostName String startPath String rootPath String dirPath private java.util.Collection getDirEntries (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, org.tmatesoft.svn.core.SVNURL, int) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.internal.io.fs.FSEntry repEntry org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode parent org.tmatesoft.svn.core.SVNURL parentURL int entryFields java.util.Map entries java.util.Set keys java.util.Iterator dirEntries java.util.Collection dirEntriesList private org.tmatesoft.svn.core.SVNProperties collectProperties (org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.SVNProperties versionedProps org.tmatesoft.svn.core.SVNProperties metaprops private org.tmatesoft.svn.core.SVNDirEntry buildDirEntry (org.tmatesoft.svn.core.internal.io.fs.FSEntry, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props String timeString org.tmatesoft.svn.core.SVNProperties revProps org.tmatesoft.svn.core.internal.io.fs.FSEntry repEntry org.tmatesoft.svn.core.SVNURL parentURL org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode entryNode int entryFields org.tmatesoft.svn.core.SVNNodeKind kind long size boolean hasProps String lastAuthor String log java.util.Date lastCommitDate long revision org.tmatesoft.svn.core.SVNURL entryURL org.tmatesoft.svn.core.SVNDirEntry dirEntry private void makeReporterContext (long, java.lang.String, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL reposRootURL long targetRevision String target org.tmatesoft.svn.core.SVNURL switchURL org.tmatesoft.svn.core.SVNDepth depth boolean ignoreAncestry boolean textDeltas boolean sendCopyFromArgs org.tmatesoft.svn.core.io.ISVNEditor editor String switchPath String anchor String fullTargetPath private java.lang.String getUserName () throws org.tmatesoft.svn.core.SVNException String userName org.tmatesoft.svn.core.SVNErrorMessage err String realm org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.auth.SVNAuthentication auth org.tmatesoft.svn.core.SVNCancelException e org.tmatesoft.svn.core.SVNAuthenticationException e org.tmatesoft.svn.core.SVNException e private org.tmatesoft.svn.core.internal.io.fs.FSLocationsFinder getLocationsFinder () private org.tmatesoft.svn.core.internal.wc.SVNMergeInfoManager getMergeInfoManager () private org.tmatesoft.svn.core.internal.io.fs.FSLog getLogDriver (java.lang.String[], long, long, long, boolean, boolean, boolean, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) String[] absPaths long limit long histStart long histEnd boolean isDescendingOrder boolean discoverChangedPaths boolean strictNode boolean includeMergedRevisions String[] revPropNames org.tmatesoft.svn.core.ISVNLogEntryHandler handler }
org/tmatesoft/svn/core/internal/io/fs/CountingOutputStream.class
CountingOutputStream.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream extends java.io.FilterOutputStream { private long myPosition public void <init> (java.io.OutputStream, long) java.io.OutputStream stream long offset public void write (byte[], int, int) throws java.io.IOException byte[] b int off int len public void write (int) throws java.io.IOException int b public void write (byte[]) throws java.io.IOException byte[] b public long getPosition () }
org/tmatesoft/svn/core/internal/io/fs/FSPacker.class
FSPacker.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSPacker extends java.lang.Object { private org.tmatesoft.svn.core.ISVNCanceller myCanceller private org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler myNotifyHandler public void <init> (org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler) org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler notifyHandler public void pack (org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.FSWriteLock writeLock private void packImpl (org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long i long i org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs int format long maxFilesPerDirectory long minUnpackedRev long youngestRev long completedShards long minUnpackedRevProp private void packShard (org.tmatesoft.svn.core.internal.io.fs.FSFS, long) throws org.tmatesoft.svn.core.SVNException java.io.File path String line java.io.InputStream revIS long rev org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs long shard java.io.File packDir java.io.File packFile java.io.File manifestFile java.io.File shardPath long startRev long endRev long nextOffset java.io.OutputStream packFileOS java.io.OutputStream manifestFileOS java.io.File finalPath java.io.File tmpFile String line private void firePackEvent (long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event long shard boolean start private void packRevPropShard (org.tmatesoft.svn.core.internal.io.fs.FSFS, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties fsRevProp org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement stmt org.tmatesoft.svn.core.internal.io.fs.FSFile fsRevPropFile long rev org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs long shard java.io.File shardPath long startRev long endRev java.io.File finalPath java.io.File tmpFile String line }
org/tmatesoft/svn/core/internal/io/fs/FSFile.class
FSFile.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSFile extends java.lang.Object { private java.io.File myFile private java.nio.channels.FileChannel myChannel private java.io.FileInputStream myInputStream private long myPosition private long myBufferPosition private java.nio.ByteBuffer myBuffer private java.nio.ByteBuffer myReadLineBuffer private java.nio.charset.CharsetDecoder myDecoder private java.security.MessageDigest myDigest public void <init> (java.io.File) java.io.File file public void seek (long) long position public long position () public long size () public void resetDigest () java.security.NoSuchAlgorithmException e public java.lang.String digest () String digest public int readInt () throws org.tmatesoft.svn.core.SVNException java.lang.NumberFormatException org.tmatesoft.svn.core.SVNErrorMessage err String line public long readLong () throws org.tmatesoft.svn.core.SVNException java.lang.NumberFormatException org.tmatesoft.svn.core.SVNErrorMessage err String line public java.lang.String readLine (int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int b org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e int limit public java.lang.String readLine (java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int b org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e StringBuffer buffer boolean endOfLineMet boolean lineStart public org.tmatesoft.svn.core.SVNProperties readProperties (boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err java.nio.charset.MalformedInputException mfi org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err byte[] dst org.tmatesoft.svn.core.SVNErrorMessage error java.nio.charset.CharacterCodingException cce char kind int length int pos int limit String key org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e boolean allowEOF boolean allowBinaryValues org.tmatesoft.svn.core.SVNProperties properties String line public java.util.Map readHeader () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err int colonIndex String key String value java.util.Map map String line public int read () throws java.io.IOException int r public int read (java.nio.ByteBuffer) throws java.io.IOException int couldRead int readFrom java.nio.ByteBuffer target int read public int read (byte[], int, int) throws java.io.IOException int couldRead byte[] buffer int offset int length int read int toRead public java.io.File getFile () public void close () java.io.IOException e private int fill () throws java.io.IOException int read private void allocateReadBuffer (int) int limit private java.nio.channels.FileChannel getChannel () throws java.io.IOException public org.tmatesoft.svn.core.internal.io.fs.PathInfo readPathInfoFromReportFile () throws java.io.IOException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int id int firstByte String path String linkPath long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty String lockToken private java.lang.String readStringFromReportFile () throws java.io.IOException int length byte[] buffer private int readNumberFromReportFile () throws java.io.IOException int b java.io.ByteArrayOutputStream resultStream private long readRevisionFromReportFile () throws java.io.IOException }
org/tmatesoft/svn/core/internal/io/fs/FSPathChangeKind.class
FSPathChangeKind.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind extends java.lang.Object implements java.io.Serializable { private static final long serialVersionUID public static final String ACTION_MODIFY public static final String ACTION_ADD public static final String ACTION_DELETE public static final String ACTION_REPLACE public static final String ACTION_RESET public static final org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind FS_PATH_CHANGE_MODIFY public static final org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind FS_PATH_CHANGE_ADD public static final org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind FS_PATH_CHANGE_DELETE public static final org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind FS_PATH_CHANGE_REPLACE public static final org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind FS_PATH_CHANGE_RESET private String myName private static final java.util.Map ACTIONS_TO_CHANGE_KINDS private void <init> (java.lang.String) String name public java.lang.String toString () public int hashCode () public boolean equals (java.lang.Object) Object o private java.lang.Object readResolve () public static org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind fromString (java.lang.String) String changeKindStr public static char getType (org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind) org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind kind static void <clinit> () }
org/tmatesoft/svn/core/internal/io/fs/FSPathChange.class
FSPathChange.java package org.tmatesoft.svn.core.internal.io.fs public org.tmatesoft.svn.core.internal.io.fs.FSPathChange extends org.tmatesoft.svn.core.SVNLogEntryPath { private static final long serialVersionUID private static final String FLAG_TRUE private static final String FLAG_FALSE private String myPath private org.tmatesoft.svn.core.internal.io.fs.FSID myRevNodeId private org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind myChangeKind boolean isTextModified boolean arePropertiesModified public void <init> (java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSID, org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind, boolean, boolean, java.lang.String, long, org.tmatesoft.svn.core.SVNNodeKind) String path org.tmatesoft.svn.core.internal.io.fs.FSID id org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind kind boolean textModified boolean propsModified String copyfromPath long copyfromRevision org.tmatesoft.svn.core.SVNNodeKind pathKind public java.lang.String getPath () public boolean arePropertiesModified () public void setPropertiesModified (boolean) boolean propertiesModified public boolean isTextModified () public void setTextModified (boolean) boolean textModified public org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind getChangeKind () public void setChangeKind (org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind) org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind changeKind public org.tmatesoft.svn.core.internal.io.fs.FSID getRevNodeId () public void setRevNodeId (org.tmatesoft.svn.core.internal.io.fs.FSID) org.tmatesoft.svn.core.internal.io.fs.FSID revNodeId public void setCopyRevision (long) long revision public void setCopyPath (java.lang.String) String path public void setNodeKind (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind nodeKind public static org.tmatesoft.svn.core.internal.io.fs.FSPathChange fromString (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String nodeKindStr org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String changeLine String copyfromLine int delimiterInd String id org.tmatesoft.svn.core.internal.io.fs.FSID nodeRevID String changesKindStr int dashIndex org.tmatesoft.svn.core.SVNNodeKind nodeKind org.tmatesoft.svn.core.internal.io.fs.FSPathChangeKind changesKind String textModeStr boolean textModeBool String propModeStr boolean propModeBool String pathStr String copyfromPath long copyfromRevision }
org/tmatesoft/svn/core/internal/io/fs/repcache/
org/tmatesoft/svn/core/internal/io/fs/repcache/FSEmptyRepresentationCacheManager.class
FSEmptyRepresentationCacheManager.java package org.tmatesoft.svn.core.internal.io.fs.repcache public org.tmatesoft.svn.core.internal.io.fs.repcache.FSEmptyRepresentationCacheManager extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager { public void <init> () public void close () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.internal.io.fs.FSRepresentation getRepresentationByHash (java.lang.String) throws org.tmatesoft.svn.core.SVNException String hash public void insert (org.tmatesoft.svn.core.internal.io.fs.FSRepresentation, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRepresentation representation boolean rejectDup public void runWriteTransaction (org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction transaction public void runReadTransaction (org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction transaction }
org/tmatesoft/svn/core/internal/io/fs/repcache/FSRepresentationCacheManager$3.class
FSRepresentationCacheManager.java package org.tmatesoft.svn.core.internal.io.fs.repcache org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$3 extends java.lang.Object implements org.tmatesoft.sqljet.core.table.ISqlJetTransaction { final synthetic org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction val$transaction final synthetic org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager this$0 void <init> (org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager, org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction) public java.lang.Object run (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException e org.tmatesoft.sqljet.core.table.SqlJetDb db }
org/tmatesoft/svn/core/internal/io/fs/repcache/IFSRepresentationCacheManagerFactory.class
IFSRepresentationCacheManagerFactory.java package org.tmatesoft.svn.core.internal.io.fs.repcache public abstract org.tmatesoft.svn.core.internal.io.fs.repcache.IFSRepresentationCacheManagerFactory extends java.lang.Object { public abstract org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager openRepresentationCache (org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException public abstract void createRepresentationCache (java.io.File) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/io/fs/repcache/FSRepresentationCacheManager$2.class
FSRepresentationCacheManager.java package org.tmatesoft.svn.core.internal.io.fs.repcache org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$2 extends java.lang.Object implements org.tmatesoft.sqljet.core.table.ISqlJetTransaction { final synthetic org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction val$transaction final synthetic org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager this$0 void <init> (org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager, org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction) public java.lang.Object run (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.SVNException e org.tmatesoft.sqljet.core.table.SqlJetDb db }
org/tmatesoft/svn/core/internal/io/fs/repcache/FSRepresentationCacheRecord.class
FSRepresentationCacheRecord.java package org.tmatesoft.svn.core.internal.io.fs.repcache public org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheRecord extends java.lang.Object { public static int HASH_FIELD public static int REVISION_FIELD public static int OFFSET_FIELD public static int SIZE_FIELD public static int EXPANDED_SIZE_FIELD private String myHash private long myRevision private long myOffset private long mySize private long myExpandedSize public void <init> (java.lang.String, long, long, long, long) String hash long revision long offset long size long expandedSize void <init> (org.tmatesoft.sqljet.core.table.ISqlJetCursor) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.ISqlJetCursor cursor int fieldsCount public java.lang.String toString () StringBuffer b public java.lang.String getHash () public void setHash (java.lang.String) String hash public long getRevision () public void setRevision (long) long revision public long getOffset () public void setOffset (long) long offset public long getSize () public void setSize (long) long size public long getExpandedSize () public void setExpandedSize (long) long expandedSize static void <clinit> () }
org/tmatesoft/svn/core/internal/io/fs/repcache/FSEmptyRepresentationCacheManagerFactory.class
FSEmptyRepresentationCacheManagerFactory.java package org.tmatesoft.svn.core.internal.io.fs.repcache public org.tmatesoft.svn.core.internal.io.fs.repcache.FSEmptyRepresentationCacheManagerFactory extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.fs.repcache.IFSRepresentationCacheManagerFactory { public void <init> () public void createRepresentationCache (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path public org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager openRepresentationCache (org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs }
org/tmatesoft/svn/core/internal/io/fs/repcache/FSRepresentationCacheManager$1$1.class
FSRepresentationCacheManager.java package org.tmatesoft.svn.core.internal.io.fs.repcache org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$1$1 extends java.lang.Object implements org.tmatesoft.sqljet.core.table.ISqlJetTransaction { final synthetic org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$1 this$0 void <init> (org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$1) public java.lang.Object run (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.SqlJetDb db }
org/tmatesoft/svn/core/internal/io/fs/repcache/FSRepresentationCacheManager.class
FSRepresentationCacheManager.java package org.tmatesoft.svn.core.internal.io.fs.repcache public org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager { public static final String REP_CACHE_TABLE private static final int REP_CACHE_DB_FORMAT private static final String REP_CACHE_DB_SQL private org.tmatesoft.sqljet.core.table.SqlJetDb myRepCacheDB private org.tmatesoft.sqljet.core.table.ISqlJetTable myTable private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS public void <init> () public static org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager openRepresentationCache (org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager cacheObj public static void createRepresentationCache (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException e java.io.File path org.tmatesoft.sqljet.core.table.SqlJetDb db private static void checkFormat (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.SqlJetDb db public void insert (org.tmatesoft.svn.core.internal.io.fs.FSRepresentation, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.io.fs.FSRepresentation representation boolean rejectDup org.tmatesoft.svn.core.internal.io.fs.FSRepresentation oldRep public void close () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e public org.tmatesoft.svn.core.internal.io.fs.FSRepresentation getRepresentationByHash (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRepresentation representation String hash org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheRecord cache private org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheRecord getByHash (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetException e String hash org.tmatesoft.sqljet.core.table.ISqlJetCursor lookup private static org.tmatesoft.svn.core.SVNErrorMessage convertError (org.tmatesoft.sqljet.core.SqlJetException) org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.SVNErrorMessage err private static org.tmatesoft.svn.core.SVNErrorCode convertErrorCode (org.tmatesoft.sqljet.core.SqlJetException) org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.sqljet.core.SqlJetErrorCode sqlCode public void runWriteTransaction (org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction transaction public void runReadTransaction (org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.sqljet.core.SqlJetException e org.tmatesoft.svn.core.internal.io.fs.IFSSqlJetTransaction transaction }
org/tmatesoft/svn/core/internal/io/fs/repcache/FSRepresentationCacheManager$1.class
FSRepresentationCacheManager.java package org.tmatesoft.svn.core.internal.io.fs.repcache final org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$1 extends java.lang.Object implements org.tmatesoft.sqljet.core.table.ISqlJetRunnableWithLock { void <init> () public java.lang.Object runWithLock (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.SqlJetDb db int version }
org/tmatesoft/svn/core/internal/io/fs/repcache/FSRepresentationCacheManagerFactory.class
FSRepresentationCacheManagerFactory.java package org.tmatesoft.svn.core.internal.io.fs.repcache public org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManagerFactory extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.fs.repcache.IFSRepresentationCacheManagerFactory { public void <init> () public void createRepresentationCache (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path public org.tmatesoft.svn.core.internal.io.fs.IFSRepresentationCacheManager openRepresentationCache (org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs }
org/tmatesoft/svn/core/internal/io/fs/revprop/
org/tmatesoft/svn/core/internal/io/fs/revprop/SVNFSFSRevPropCreateSchema.class
SVNFSFSRevPropCreateSchema.java package org.tmatesoft.svn.core.internal.io.fs.revprop public org.tmatesoft.svn.core.internal.io.fs.revprop.SVNFSFSRevPropCreateSchema extends org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public long exec () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e }
org/tmatesoft/svn/core/internal/io/fs/revprop/SVNFSFSRevPropSet.class
SVNFSFSRevPropSet.java package org.tmatesoft.svn.core.internal.io.fs.revprop public org.tmatesoft.svn.core.internal.io.fs.revprop.SVNFSFSRevPropSet extends org.tmatesoft.svn.core.internal.db.SVNSqlJetStatement { private final org.tmatesoft.sqljet.core.table.ISqlJetTable table public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb public transient long insert (java.lang.Object[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.sqljet.core.SqlJetException e Object[] data }
org/tmatesoft/svn/core/internal/io/fs/revprop/SVNFSFSRevPropCreateSchema$1.class
SVNFSFSRevPropCreateSchema.java package org.tmatesoft.svn.core.internal.io.fs.revprop org.tmatesoft.svn.core.internal.io.fs.revprop.SVNFSFSRevPropCreateSchema$1 extends java.lang.Object implements org.tmatesoft.sqljet.core.table.ISqlJetTransaction { final synthetic org.tmatesoft.svn.core.internal.io.fs.revprop.SVNFSFSRevPropCreateSchema this$0 void <init> (org.tmatesoft.svn.core.internal.io.fs.revprop.SVNFSFSRevPropCreateSchema) public java.lang.Object run (org.tmatesoft.sqljet.core.table.SqlJetDb) throws org.tmatesoft.sqljet.core.SqlJetException org.tmatesoft.sqljet.core.table.SqlJetDb db }
org/tmatesoft/svn/core/internal/io/fs/revprop/SVNFSFSRevPropGet.class
SVNFSFSRevPropGet.java package org.tmatesoft.svn.core.internal.io.fs.revprop public org.tmatesoft.svn.core.internal.io.fs.revprop.SVNFSFSRevPropGet extends org.tmatesoft.svn.core.internal.db.SVNSqlJetSelectStatement { public void <init> (org.tmatesoft.svn.core.internal.db.SVNSqlJetDb) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.db.SVNSqlJetDb sDb }
org/tmatesoft/svn/core/internal/io/dav/
org/tmatesoft/svn/core/internal/io/dav/DAVRepositoryFactory.class
DAVRepositoryFactory.java package org.tmatesoft.svn.core.internal.io.dav public org.tmatesoft.svn.core.internal.io.dav.DAVRepositoryFactory extends org.tmatesoft.svn.core.io.SVNRepositoryFactory { private org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory myConnectionFactory public static void setup () public static void setup (org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory) org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory connectionFactory org.tmatesoft.svn.core.internal.io.dav.DAVRepositoryFactory factory private void <init> (org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory) org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory connectionFactory public org.tmatesoft.svn.core.io.SVNRepository createRepositoryImpl (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.ISVNSession) org.tmatesoft.svn.core.SVNURL location org.tmatesoft.svn.core.io.ISVNSession options }
org/tmatesoft/svn/core/internal/io/dav/DAVResource.class
DAVResource.java package org.tmatesoft.svn.core.internal.io.dav org.tmatesoft.svn.core.internal.io.dav.DAVResource extends java.lang.Object { private String myWURL private String myVURL private String myURL private String myPath private org.tmatesoft.svn.core.io.ISVNWorkspaceMediator myMediator private long myRevision private boolean myIsCopy private org.tmatesoft.svn.core.internal.io.dav.DAVConnection myConnection private org.tmatesoft.svn.core.SVNProperties myProperties private boolean myIsAdded public void <init> (org.tmatesoft.svn.core.io.ISVNWorkspaceMediator, org.tmatesoft.svn.core.internal.io.dav.DAVConnection, java.lang.String, long) org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String path long revision public void <init> (org.tmatesoft.svn.core.io.ISVNWorkspaceMediator, org.tmatesoft.svn.core.internal.io.dav.DAVConnection, java.lang.String, long, boolean) org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String path long revision boolean isCopy String locationPath public void setAdded (boolean) boolean added public boolean isAdded () public boolean isCopy () public java.lang.String getURL () public java.lang.String getPath () public java.lang.String getVersionURL () public void fetchVersionURL (org.tmatesoft.svn.core.internal.io.dav.DAVResource, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNPropertyValue urlPropertyValue org.tmatesoft.svn.core.internal.io.dav.DAVResource parent boolean force String path public java.lang.String getWorkingURL () public void dispose () public void setWorkingURL (java.lang.String) String location public void putProperty (java.lang.String, java.lang.String) String name String value public void putProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) String name org.tmatesoft.svn.core.SVNPropertyValue value public org.tmatesoft.svn.core.SVNProperties getProperties () public java.lang.String toString () StringBuffer sb }
org/tmatesoft/svn/core/internal/io/dav/DAVRepository$2.class
DAVRepository.java package org.tmatesoft.svn.core.internal.io.dav org.tmatesoft.svn.core.internal.io.dav.DAVRepository$2 extends java.lang.Object implements java.lang.Runnable { final synthetic org.tmatesoft.svn.core.internal.io.dav.DAVRepository this$0 void <init> (org.tmatesoft.svn.core.internal.io.dav.DAVRepository) public void run () }
org/tmatesoft/svn/core/internal/io/dav/DAVRepository$1.class
DAVRepository.java package org.tmatesoft.svn.core.internal.io.dav org.tmatesoft.svn.core.internal.io.dav.DAVRepository$1 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { final synthetic org.tmatesoft.svn.core.ISVNLogEntryHandler val$handler final synthetic org.tmatesoft.svn.core.internal.io.dav.DAVRepository this$0 void <init> (org.tmatesoft.svn.core.internal.io.dav.DAVRepository, org.tmatesoft.svn.core.ISVNLogEntryHandler) public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry }
org/tmatesoft/svn/core/internal/io/dav/DAVElement.class
DAVElement.java package org.tmatesoft.svn.core.internal.io.dav public org.tmatesoft.svn.core.internal.io.dav.DAVElement extends java.lang.Object { private static java.util.Map ourProperties public static final String SVN_DAV_PROPERTY_NAMESPACE public static final String SVN_CUSTOM_PROPERTY_NAMESPACE public static final String SVN_SVN_PROPERTY_NAMESPACE public static final String SVN_APACHE_PROPERTY_NAMESPACE public static final String SVN_DAV_ERROR_NAMESPACE public static final String DAV_NAMESPACE public static final String SVN_NAMESPACE public static final String DEPTH_OPTION public static final String MERGE_INFO_OPTION public static final String LOG_REVPROPS_OPTION public static final String PARTIAL_REPLAY_OPTION public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement ACTIVITY public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement VERSION_HISTORY public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement DISPLAY_NAME public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SUPPORTED_LIVE_PROPERTY public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement MERGE_RESPONSE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement UPDATE_SET public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement NO_AUTO_MERGE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement NO_CHECKOUT public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SOURCE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement MULTISTATUS public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement RESPONSE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement RESPONSE_DESCRIPTION public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement HREF public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement PROPSTAT public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement PROP public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement STATUS public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement BASELINE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement BASELINE_COLLECTION public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement CHECKED_IN public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement COLLECTION public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement RESOURCE_TYPE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement VERSION_CONTROLLED_CONFIGURATION public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement VERSION_NAME public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement GET_CONTENT_LENGTH public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement CREATION_DATE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement CREATOR_DISPLAY_NAME public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement COMMENT public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement DATE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement POST_COMMIT_ERROR public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement PROPFIND public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement ALLPROP public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement PROPNAME public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement ACTIVE_LOCK public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOCK_TYPE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOCK_SCOPE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement WRITE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement EXCLUSIVE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SHARED public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement DEPTH public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SUPPORTED_LOCK public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOCK_DISCOVERY public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOCK_OWNER public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOCK_TIMEOUT public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOCK_TOKEN public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOCK_ENTRY public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SVN_LOCK_TOKEN_LIST public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SVN_LOCK public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SVN_LOCK_PATH public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SVN_LOCK_TOKEN public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SVN_LOCK_COMMENT public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SVN_LOCK_OWNER public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SVN_LOCK_CREATION_DATE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SVN_LOCK_EXPIRATION_DATE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement PATH public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement REVISION public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement START_REVISION public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement END_REVISION public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement PEG_REVISION public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement INCLUDE_MERGED_REVISIONS public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement BASELINE_RELATIVE_PATH public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement REPOSITORY_UUID public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement MD5_CHECKSUM public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement DEADPROP_COUNT public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement AUTO_VERSION public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement MERGE_INFO_ITEM public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement MERGE_INFO_PATH public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement MERGE_INFO_INFO public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement GET_CONTENT_LANGUAGE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement GET_CONTENT_TYPE public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement GET_ETAG public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement GET_LAST_MODIFIED public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement[] STARTING_PROPERTIES public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement[] BASELINE_PROPERTIES private String myPropertyName private String myNamespace public static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOG public static org.tmatesoft.svn.core.internal.io.dav.DAVElement getElement (java.lang.String, java.lang.String) String namespace String name java.util.Map properties org.tmatesoft.svn.core.internal.io.dav.DAVElement property private void <init> (java.lang.String, java.lang.String) String namespace String propertyName public java.lang.String getNamespace () public java.lang.String getName () public java.lang.String toString () StringBuffer sb public int hashCode () int prime int result public boolean equals (java.lang.Object) Object obj org.tmatesoft.svn.core.internal.io.dav.DAVElement other static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/DAVRepository.class
DAVRepository.java package org.tmatesoft.svn.core.internal.io.dav public org.tmatesoft.svn.core.internal.io.dav.DAVRepository extends org.tmatesoft.svn.core.io.SVNRepository { private org.tmatesoft.svn.core.internal.io.dav.DAVConnection myConnection private org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory myConnectionFactory private boolean myIsSpoolResponse private static boolean ourIsKeepCredentials public static void setKeepCredentials (boolean) boolean keepCredentials protected void <init> (org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.ISVNSession) org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory connectionFactory org.tmatesoft.svn.core.SVNURL location org.tmatesoft.svn.core.io.ISVNSession options public void testConnection () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection public boolean hasRepositoryUUID () public void setRepositoryUUID (java.lang.String) String uuid public boolean hasRepositoryRoot () public void setRepositoryRoot (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL root public org.tmatesoft.svn.core.SVNURL getRepositoryRoot (boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection boolean forceConnection public java.lang.String getRepositoryUUID (boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection boolean forceConnection public void setSpoolResponse (boolean) boolean spool org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection public boolean isSpoolResponse () public void setAuthenticationManager (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection public long getLatestRevision () throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info public long getDatedRevision (java.util.Date) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err2 String path org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status java.util.Date date org.tmatesoft.svn.core.internal.io.dav.handlers.DAVDateRevisionHandler handler StringBuffer request public org.tmatesoft.svn.core.SVNNodeKind checkPath (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNException e String path long revision org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info org.tmatesoft.svn.core.SVNNodeKind kind public org.tmatesoft.svn.core.SVNProperties getRevisionProperties (long, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String commitMessage String path org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.DAVProperties source long revision org.tmatesoft.svn.core.SVNProperties properties public org.tmatesoft.svn.core.SVNPropertyValue getRevisionPropertyValue (long, java.lang.String) throws org.tmatesoft.svn.core.SVNException long revision String propertyName org.tmatesoft.svn.core.SVNProperties properties public long getFile (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info org.tmatesoft.svn.core.internal.io.dav.DAVElement property java.util.Iterator names org.tmatesoft.svn.core.internal.io.dav.DAVProperties props org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String path long revision org.tmatesoft.svn.core.SVNProperties properties java.io.OutputStream contents long fileRevision public long getDir (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.ISVNDirEntryHandler handler public long getDir (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, int, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info java.util.List individualProps NumberFormatException nfe org.tmatesoft.svn.core.SVNPropertyValue sizeValue org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe long propCount org.tmatesoft.svn.core.SVNPropertyValue propVal org.tmatesoft.svn.core.internal.io.dav.DAVElement property java.util.Iterator props org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe Object revisionStr org.tmatesoft.svn.core.SVNPropertyValue dateValue org.tmatesoft.svn.core.SVNPropertyValue authorValue String url org.tmatesoft.svn.core.internal.io.dav.DAVProperties child String href String name org.tmatesoft.svn.core.SVNNodeKind kind long size boolean hasProperties long lastRevision java.util.Date date String author org.tmatesoft.svn.core.SVNURL childURL org.tmatesoft.svn.core.SVNDirEntry dirEntry java.util.Iterator dirEnts org.tmatesoft.svn.core.internal.io.dav.DAVElement[] whichProps int parentPathSegments java.util.Map dirEntsMap org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status org.tmatesoft.svn.core.SVNURL repositryRoot org.tmatesoft.svn.core.internal.io.dav.DAVElement property java.util.Iterator props org.tmatesoft.svn.core.internal.io.dav.DAVProperties dirProps String fullPath org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.DAVProperties deadProp boolean supportsDeadPropCount String path long revision org.tmatesoft.svn.core.SVNProperties properties int entryFields org.tmatesoft.svn.core.ISVNDirEntryHandler handler long dirRevision public org.tmatesoft.svn.core.SVNDirEntry getDir (java.lang.String, long, boolean, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info NumberFormatException nfe NumberFormatException nfe org.tmatesoft.svn.core.SVNPropertyValue vcc org.tmatesoft.svn.core.SVNPropertyValue vccValue String url org.tmatesoft.svn.core.internal.io.dav.DAVProperties child String href String name org.tmatesoft.svn.core.SVNNodeKind kind Object revisionStr long lastRevision org.tmatesoft.svn.core.SVNPropertyValue sizeValue long size org.tmatesoft.svn.core.SVNPropertyValue authorValue String author org.tmatesoft.svn.core.SVNPropertyValue dateValue java.util.Date date org.tmatesoft.svn.core.SVNURL repositoryRoot org.tmatesoft.svn.core.SVNURL childURL java.util.Iterator dirEnts String message org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNDirEntry currentEntry String commitMessage String label org.tmatesoft.svn.core.SVNPropertyValue vccValue org.tmatesoft.svn.core.internal.io.dav.DAVElement logProperty java.util.Iterator ents org.tmatesoft.svn.core.SVNDirEntry entry String vcc int index String fullPath org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection int parentPathSegments java.util.List vccs org.tmatesoft.svn.core.internal.io.dav.DAVElement[] dirProperties java.util.Map dirEntsMap org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status String path long revision boolean includeComments java.util.Collection entries org.tmatesoft.svn.core.SVNDirEntry[] parent String[] parentVCC public void replay (long, long, boolean, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err StringBuffer request org.tmatesoft.svn.core.internal.io.dav.handlers.DAVReplayHandler handler String bcPath org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status long lowRevision long highRevision boolean sendDeltas org.tmatesoft.svn.core.io.ISVNEditor editor public void setRevisionPropertyValue (long, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info String path org.tmatesoft.svn.core.internal.io.dav.handlers.DAVProppatchHandler handler org.tmatesoft.svn.core.SVNErrorMessage requestError long revision String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue StringBuffer request public org.tmatesoft.svn.core.io.ISVNEditor getCommitEditor (java.lang.String, java.util.Map, boolean, org.tmatesoft.svn.core.io.ISVNWorkspaceMediator) throws org.tmatesoft.svn.core.SVNException String logMessage java.util.Map locks boolean keepLocks org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator public org.tmatesoft.svn.core.SVNLock getLock (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String path public org.tmatesoft.svn.core.SVNLock[] getLocks (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String path public void lock (java.util.Map, java.lang.String, boolean, org.tmatesoft.svn.core.io.ISVNLockHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e String path Long revision String repositoryPath org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error long revisionNumber java.util.Iterator paths org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection java.util.Map pathsToRevisions String comment boolean force org.tmatesoft.svn.core.io.ISVNLockHandler handler public void unlock (java.util.Map, boolean, org.tmatesoft.svn.core.io.ISVNLockHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e String path String shortPath String id String repositoryPath org.tmatesoft.svn.core.SVNErrorMessage error java.util.Iterator paths org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection java.util.Map pathToTokens boolean force org.tmatesoft.svn.core.io.ISVNLockHandler handler public org.tmatesoft.svn.core.SVNDirEntry info (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.io.dav.DAVProperties props String fullPath org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.DAVElement[] elements java.util.Map propsMap org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status String path long revision public void closeSession () public java.lang.String doGetFullPath (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String fullPath String relativeOrRepositoryPath String fullPath public void diff (org.tmatesoft.svn.core.SVNURL, long, long, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url long targetRevision long revision String target boolean ignoreAncestry org.tmatesoft.svn.core.SVNDepth depth boolean getContents org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor boolean sendAll public void status (long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException long revision String target org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public void update (org.tmatesoft.svn.core.SVNURL, long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url long revision String target org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public void update (long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException long revision String target org.tmatesoft.svn.core.SVNDepth depth boolean sendCopyFromArgs org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public boolean hasCapability (org.tmatesoft.svn.core.io.SVNCapability) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException error org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String result org.tmatesoft.svn.core.io.SVNCapability capability protected int getFileRevisionsImpl (java.lang.String, long, long, boolean, org.tmatesoft.svn.core.io.ISVNFileRevisionHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.handlers.DAVFileRevisionHandler davHandler StringBuffer request long revision org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status String path long startRevision long endRevision boolean includeMergedRevisions org.tmatesoft.svn.core.io.ISVNFileRevisionHandler handler String bcPath protected long logImpl (java.lang.String[], long, long, boolean, boolean, long, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNErrorMessage err String capability org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String[] fullPaths java.util.Collection relativePaths String path StringBuffer request long revision org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info String[] targetPaths long startRevision long endRevision boolean changedPath boolean strictNode long limit boolean includeMergedRevisions String[] revPropNames org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.internal.io.dav.handlers.DAVLogHandler davHandler org.tmatesoft.svn.core.ISVNLogEntryHandler cachingHandler long latestRev protected void openConnection () throws org.tmatesoft.svn.core.SVNException protected org.tmatesoft.svn.core.internal.io.dav.DAVConnection createDAVConnection (org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory, org.tmatesoft.svn.core.internal.io.dav.DAVRepository) org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory connectionFactory org.tmatesoft.svn.core.internal.io.dav.DAVRepository repo protected void closeConnection () org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection protected int getLocationsImpl (java.lang.String, long, long[], org.tmatesoft.svn.core.io.ISVNLocationEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection StringBuffer request org.tmatesoft.svn.core.internal.io.dav.handlers.DAVLocationsHandler davHandler String root org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status String path long pegRevision long[] revisions org.tmatesoft.svn.core.io.ISVNLocationEntryHandler handler protected long getLocationSegmentsImpl (java.lang.String, long, long, long, org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection boolean absolutePath StringBuffer request org.tmatesoft.svn.core.internal.io.dav.handlers.DAVLocationSegmentsHandler davHandler String root org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status String path long pegRevision long startRevision long endRevision org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler handler protected java.lang.String doGetRepositoryPath (java.lang.String) throws org.tmatesoft.svn.core.SVNException String relativePath String fullPath org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String repositoryPath protected java.util.Map getMergeInfoImpl (java.lang.String[], long, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean) throws org.tmatesoft.svn.core.SVNException String[] paths long revision org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit boolean includeDescendants protected void replayRangeImpl (long, long, long, boolean, org.tmatesoft.svn.core.io.ISVNReplayHandler) throws org.tmatesoft.svn.core.SVNException long startRevision long endRevision long lowRevision boolean sendDeltas org.tmatesoft.svn.core.io.ISVNReplayHandler handler org.tmatesoft.svn.core.SVNErrorMessage err protected org.tmatesoft.svn.core.io.ISVNEditor getCommitEditorInternal (java.util.Map, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.io.ISVNWorkspaceMediator) throws org.tmatesoft.svn.core.SVNException String path String lock java.util.Iterator paths String root org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection java.util.Map translatedLocks org.tmatesoft.svn.core.SVNErrorMessage err Throwable th java.util.Map locks boolean keepLocks org.tmatesoft.svn.core.SVNProperties revProps org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator protected long getDeletedRevisionImpl (java.lang.String, long, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String thisSessionPath org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info String finalBCPath StringBuffer requestBody org.tmatesoft.svn.core.internal.io.dav.handlers.DAVDeletedRevisionHandler handler org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status String path long pegRevision long endRevision protected org.tmatesoft.svn.core.internal.io.dav.DAVConnection getConnection () protected org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory getConnectionFactory () private java.util.Map doGetMergeInfo (java.lang.String[], long, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNErrorMessage err String repositoryPath java.util.Map$Entry item org.tmatesoft.svn.core.SVNMergeInfo value java.util.Iterator items String[] paths long revision org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit boolean includeDescendants String path org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info String[] repositoryPaths StringBuffer request org.tmatesoft.svn.core.internal.io.dav.handlers.DAVMergeInfoHandler handler org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status java.util.Map mergeInfo java.util.Map mergeInfoWithPath private void runReport (org.tmatesoft.svn.core.SVNURL, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean, boolean, boolean, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection java.util.Map lockTokens StringBuffer request String bcPath org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status org.tmatesoft.svn.core.SVNURL url long targetRevision String target String dstPath org.tmatesoft.svn.core.SVNDepth depth boolean ignoreAncestry boolean resourceWalk boolean fetchContents boolean sendCopyFromArgs boolean sendAll boolean closeEditorOnException boolean spool org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor boolean serverSupportsDepth org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler handler private org.tmatesoft.svn.core.SVNDirEntry createDirEntry (java.lang.String, org.tmatesoft.svn.core.internal.io.dav.DAVProperties) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe NumberFormatException nfe org.tmatesoft.svn.core.internal.io.dav.DAVElement property java.util.Iterator props String fullPath org.tmatesoft.svn.core.internal.io.dav.DAVProperties child String href org.tmatesoft.svn.core.SVNNodeKind kind Object revisionStr long lastRevision org.tmatesoft.svn.core.SVNPropertyValue sizeValue long size org.tmatesoft.svn.core.SVNPropertyValue authorValue String author org.tmatesoft.svn.core.SVNPropertyValue dateValue java.util.Date date boolean hasProperties org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.SVNURL repositoryRoot org.tmatesoft.svn.core.SVNURL url String name static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/DAVUtil.class
DAVUtil.java package org.tmatesoft.svn.core.internal.io.dav public org.tmatesoft.svn.core.internal.io.dav.DAVUtil extends java.lang.Object { public static int DEPTH_ZERO public static int DEPTH_ONE public static int DEPTH_INFINITE private static boolean ourIsUseDAVWCURL public void <init> () public static synchronized boolean isUseDAVWCURL () public static synchronized void setUseDAVWCURL (boolean) boolean useDAVWCURL public static org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus getProperties (org.tmatesoft.svn.core.internal.io.dav.DAVConnection, java.lang.String, int, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.DAVElement[], java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String path int depth String label org.tmatesoft.svn.core.internal.io.dav.DAVElement[] properties java.util.Map result org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header StringBuffer body org.tmatesoft.svn.core.internal.io.dav.handlers.DAVPropertiesHandler davHandler public static org.tmatesoft.svn.core.internal.io.dav.DAVProperties getResourceProperties (org.tmatesoft.svn.core.internal.io.dav.DAVConnection, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.DAVElement[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String path String label org.tmatesoft.svn.core.internal.io.dav.DAVElement[] properties java.util.Map resultMap org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status org.tmatesoft.svn.core.SVNErrorMessage err public static java.lang.String getPropertyValue (org.tmatesoft.svn.core.internal.io.dav.DAVConnection, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.DAVElement) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String path String label org.tmatesoft.svn.core.internal.io.dav.DAVElement property org.tmatesoft.svn.core.internal.io.dav.DAVProperties props org.tmatesoft.svn.core.SVNPropertyValue value public static org.tmatesoft.svn.core.internal.io.dav.DAVProperties getStartingProperties (org.tmatesoft.svn.core.internal.io.dav.DAVConnection, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String path String label public static org.tmatesoft.svn.core.internal.io.dav.DAVProperties findStartingProperties (org.tmatesoft.svn.core.internal.io.dav.DAVConnection, org.tmatesoft.svn.core.internal.io.dav.DAVRepository, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err2 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException nested int length org.tmatesoft.svn.core.SVNErrorMessage err String relativePath String rootPath org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.DAVRepository repos String fullPath org.tmatesoft.svn.core.internal.io.dav.DAVProperties props String originalPath String loppedPath public static java.lang.String getVCCPath (org.tmatesoft.svn.core.internal.io.dav.DAVConnection, org.tmatesoft.svn.core.internal.io.dav.DAVRepository, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.DAVRepository repository String path org.tmatesoft.svn.core.internal.io.dav.DAVProperties properties org.tmatesoft.svn.core.SVNPropertyValue vcc public static org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo getBaselineInfo (org.tmatesoft.svn.core.internal.io.dav.DAVConnection, org.tmatesoft.svn.core.internal.io.dav.DAVRepository, java.lang.String, long, boolean, boolean, org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNPropertyValue version org.tmatesoft.svn.core.internal.io.dav.DAVProperties props java.util.Map propsMap org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.DAVRepository repos String path long revision boolean includeType boolean includeRevision org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info org.tmatesoft.svn.core.internal.io.dav.DAVElement[] properties org.tmatesoft.svn.core.internal.io.dav.DAVProperties baselineProperties org.tmatesoft.svn.core.SVNPropertyValue baseValue public static org.tmatesoft.svn.core.internal.io.dav.DAVProperties getBaselineProperties (org.tmatesoft.svn.core.internal.io.dav.DAVConnection, org.tmatesoft.svn.core.internal.io.dav.DAVRepository, java.lang.String, long, org.tmatesoft.svn.core.internal.io.dav.DAVElement[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.internal.io.dav.DAVRepository repos String path long revision org.tmatesoft.svn.core.internal.io.dav.DAVElement[] elements org.tmatesoft.svn.core.internal.io.dav.DAVProperties properties String loppedPath org.tmatesoft.svn.core.SVNPropertyValue vccValue org.tmatesoft.svn.core.SVNPropertyValue baselineRelativePathValue String baselineRelativePath String label String vcc public static org.tmatesoft.svn.core.SVNProperties filterProperties (org.tmatesoft.svn.core.internal.io.dav.DAVProperties, org.tmatesoft.svn.core.SVNProperties) java.util.Map$Entry entry org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.tmatesoft.svn.core.SVNPropertyValue value String propertyName java.util.Iterator props org.tmatesoft.svn.core.internal.io.dav.DAVProperties source org.tmatesoft.svn.core.SVNProperties target public static java.lang.String getPropertyNameByElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement) org.tmatesoft.svn.core.internal.io.dav.DAVElement element String namespace String name public static void setSpecialWCProperties (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.SVNPropertyValue) org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.internal.io.dav.DAVElement property org.tmatesoft.svn.core.SVNPropertyValue propValue String propName public static void setSpecialWCProperties (org.tmatesoft.svn.core.io.ISVNEditor, boolean, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNEditor editor boolean isDir String path org.tmatesoft.svn.core.internal.io.dav.DAVElement property org.tmatesoft.svn.core.SVNPropertyValue propValue String propName public static java.lang.String getPathFromURL (java.lang.String) char currentChar int i String url String schemeEnd int ind private static java.lang.String convertDAVElementToPropName (org.tmatesoft.svn.core.internal.io.dav.DAVElement) org.tmatesoft.svn.core.internal.io.dav.DAVElement property String propName static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/DAVCommitEditor.class
DAVCommitEditor.java package org.tmatesoft.svn.core.internal.io.dav org.tmatesoft.svn.core.internal.io.dav.DAVCommitEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private org.tmatesoft.svn.core.internal.io.dav.DAVConnection myConnection private org.tmatesoft.svn.core.SVNURL myLocation private org.tmatesoft.svn.core.internal.io.dav.DAVRepository myRepository private Runnable myCloseCallback private String myActivity private java.util.Stack myDirsStack private org.tmatesoft.svn.core.io.ISVNWorkspaceMediator myCommitMediator private java.util.Map myPathsMap private java.util.Map myFilesMap private String myBaseChecksum private org.tmatesoft.svn.core.SVNProperties myRevProps private java.io.OutputStream myCurrentDelta private java.io.File myDeltaFile private boolean myIsAborted private boolean myIsFirstWindow public void <init> (org.tmatesoft.svn.core.internal.io.dav.DAVRepository, org.tmatesoft.svn.core.internal.io.dav.DAVConnection, java.lang.String, org.tmatesoft.svn.core.io.ISVNWorkspaceMediator, java.lang.Runnable) org.tmatesoft.svn.core.internal.io.dav.DAVRepository repository org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String message org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator Runnable closeCallback public void <init> (org.tmatesoft.svn.core.internal.io.dav.DAVRepository, org.tmatesoft.svn.core.internal.io.dav.DAVConnection, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.io.ISVNWorkspaceMediator, java.lang.Runnable) org.tmatesoft.svn.core.internal.io.dav.DAVRepository repository org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.SVNProperties revProps org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator Runnable closeCallback public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision org.tmatesoft.svn.core.internal.io.dav.DAVResource root public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String url String path long revision org.tmatesoft.svn.core.internal.io.dav.DAVResource parentResource String wPath String url public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info org.tmatesoft.svn.core.SVNException inner org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e String path String copyPath long copyRevision org.tmatesoft.svn.core.internal.io.dav.DAVResource parentResource String wPath org.tmatesoft.svn.core.internal.io.dav.DAVResource newDir public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.io.dav.DAVResource parent org.tmatesoft.svn.core.internal.io.dav.DAVResource directory public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.internal.io.dav.DAVResource directory public void closeDir () throws org.tmatesoft.svn.core.SVNException StringBuffer request org.tmatesoft.svn.core.internal.io.dav.DAVResource resource public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e String filePath org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.SVNErrorMessage err2 org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info String path String copyPath long copyRevision String originalPath org.tmatesoft.svn.core.internal.io.dav.DAVResource parentResource String wPath org.tmatesoft.svn.core.internal.io.dav.DAVResource newFile public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision String originalPath org.tmatesoft.svn.core.internal.io.dav.DAVResource file org.tmatesoft.svn.core.internal.io.dav.DAVResource parent public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.internal.io.dav.DAVResource currentFile public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus httpStatus org.tmatesoft.svn.core.SVNException e java.io.InputStream combinedData StringBuffer request String path String textChecksum org.tmatesoft.svn.core.internal.io.dav.DAVResource currentFile public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException StringBuffer request org.tmatesoft.svn.core.internal.io.dav.DAVResource resource org.tmatesoft.svn.core.internal.io.dav.handlers.DAVMergeHandler handler org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status public void abortEdit () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVResource file java.util.Iterator files org.tmatesoft.svn.core.internal.io.dav.DAVResource resource java.util.Iterator files org.tmatesoft.svn.core.internal.io.dav.DAVResource file java.util.Iterator files org.tmatesoft.svn.core.internal.io.dav.DAVResource resource java.util.Iterator files private void runCloseCallback () private java.lang.String createActivity () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String head int i org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e StringBuffer request org.tmatesoft.svn.core.SVNErrorMessage context String activity String path String vcc org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status String location private void checkoutResource (org.tmatesoft.svn.core.internal.io.dav.DAVResource, boolean) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.DAVResource resource boolean allow404 org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status String location }
org/tmatesoft/svn/core/internal/io/dav/DAVBaselineInfo.class
DAVBaselineInfo.java package org.tmatesoft.svn.core.internal.io.dav public org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo extends java.lang.Object { public String baselinePath public String baselineBase public long revision public boolean isDirectory public String baseline public void <init> () }
org/tmatesoft/svn/core/internal/io/dav/DAVProperties.class
DAVProperties.java package org.tmatesoft.svn.core.internal.io.dav public org.tmatesoft.svn.core.internal.io.dav.DAVProperties extends java.lang.Object { private java.util.Map myProperties private boolean myIsCollection private String myURL private String myLoppedPath private String myOriginalURL public void <init> () public java.lang.String getURL () public boolean isCollection () public java.util.Map getProperties () public org.tmatesoft.svn.core.SVNPropertyValue getPropertyValue (org.tmatesoft.svn.core.internal.io.dav.DAVElement) org.tmatesoft.svn.core.internal.io.dav.DAVElement name public void setLoppedPath (java.lang.String) String loppedPath public java.lang.String getLoppedPath () public void setProperty (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.SVNPropertyValue) org.tmatesoft.svn.core.internal.io.dav.DAVElement name org.tmatesoft.svn.core.SVNPropertyValue value public void setURL (java.lang.String) String url public java.lang.String getOriginalURL () public void setCollection (boolean) boolean collection }
org/tmatesoft/svn/core/internal/io/dav/DAVConnection.class
DAVConnection.java package org.tmatesoft.svn.core.internal.io.dav public org.tmatesoft.svn.core.internal.io.dav.DAVConnection extends java.lang.Object { protected static final String DAV_CAPABILITY_YES protected static final String DAV_CAPABILITY_NO protected static final String DAV_CAPABILITY_SERVER_YES private org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection myHttpConnection private String myActivityCollectionURL private org.tmatesoft.svn.core.io.SVNRepository myRepository private boolean myIsSpoolReport protected boolean myKeepLocks protected java.util.Map myLocks protected java.util.Map myCapabilities protected org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory myConnectionFactory private org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus myLastStatus public void <init> (org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory, org.tmatesoft.svn.core.io.SVNRepository) org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory connectionFactory org.tmatesoft.svn.core.io.SVNRepository repository public boolean isReportResponseSpooled () public void setReportResponseSpooled (boolean) boolean spool public org.tmatesoft.svn.core.SVNURL getLocation () public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus getLastStatus () public void updateLocation () public void open (org.tmatesoft.svn.core.internal.io.dav.DAVRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVRepository repository public void fetchRepositoryRoot (org.tmatesoft.svn.core.internal.io.dav.DAVRepository) throws org.tmatesoft.svn.core.SVNException String rootPath org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info org.tmatesoft.svn.core.SVNURL location org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.internal.io.dav.DAVRepository repository public void fetchRepositoryUUID (org.tmatesoft.svn.core.internal.io.dav.DAVRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.DAVRepository repository public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus doPropfind (java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.lang.StringBuffer, org.xml.sax.helpers.DefaultHandler) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header StringBuffer body org.xml.sax.helpers.DefaultHandler handler org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection public org.tmatesoft.svn.core.SVNLock doGetLock (java.lang.String, org.tmatesoft.svn.core.internal.io.dav.DAVRepository) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.internal.io.dav.DAVRepository repos org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info StringBuffer body org.tmatesoft.svn.core.internal.io.dav.handlers.DAVLockHandler handler org.tmatesoft.svn.core.SVNErrorMessage context org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus rc String id String comment String owner String created java.util.Date createdDate public org.tmatesoft.svn.core.SVNLock[] doGetLocks (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.internal.io.dav.handlers.DAVGetLocksHandler handler org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status public org.tmatesoft.svn.core.SVNLock doLock (java.lang.String, org.tmatesoft.svn.core.internal.io.dav.DAVRepository, java.lang.String, boolean, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String userName String created java.util.Date createdDate String path org.tmatesoft.svn.core.internal.io.dav.DAVRepository repos String comment boolean force long revision org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info StringBuffer body org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header org.tmatesoft.svn.core.internal.io.dav.handlers.DAVLockHandler handler org.tmatesoft.svn.core.SVNErrorMessage context org.tmatesoft.svn.core.SVNException exception org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection public void doUnlock (java.lang.String, org.tmatesoft.svn.core.internal.io.dav.DAVRepository, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage error String path org.tmatesoft.svn.core.internal.io.dav.DAVRepository repos String id boolean force org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header org.tmatesoft.svn.core.SVNErrorMessage context org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection org.tmatesoft.svn.core.SVNException exception public void doGet (java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException String path java.io.OutputStream os org.tmatesoft.svn.core.SVNErrorMessage context org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection public void doGet (java.lang.String, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException String path String deltaBaseVersionURL java.io.OutputStream os org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header org.tmatesoft.svn.core.SVNErrorMessage context org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus doReport (java.lang.String, java.lang.StringBuffer, org.xml.sax.helpers.DefaultHandler) throws org.tmatesoft.svn.core.SVNException String path StringBuffer requestBody org.xml.sax.helpers.DefaultHandler handler public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus doReport (java.lang.String, java.lang.StringBuffer, org.xml.sax.helpers.DefaultHandler, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header String path StringBuffer requestBody org.xml.sax.helpers.DefaultHandler handler boolean spool org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection public void doProppatch (java.lang.String, java.lang.String, java.lang.StringBuffer, org.xml.sax.helpers.DefaultHandler, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e String repositoryPath String path StringBuffer requestBody org.xml.sax.helpers.DefaultHandler handler org.tmatesoft.svn.core.SVNErrorMessage context org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection public java.lang.String doMakeActivity (org.tmatesoft.svn.core.io.ISVNWorkspaceMediator) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue property org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator String url String locationPath org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection String activityURL org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus doDelete (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus doDelete (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String locationPath org.tmatesoft.svn.core.SVNException e String lockPath java.util.Iterator locksIter org.tmatesoft.svn.core.SVNException e java.util.Map childTokens String token String locationPath org.tmatesoft.svn.core.SVNErrorCode errCode String repositoryPath String path long revision org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header StringBuffer request org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection org.tmatesoft.svn.core.SVNException exception public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus doMakeCollection (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus doPutDiff (java.lang.String, java.lang.String, java.io.InputStream, long, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String repositoryPath String path java.io.InputStream data long size String baseChecksum String textChecksum org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader headers org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus doMerge (java.lang.String, boolean, org.xml.sax.helpers.DefaultHandler) throws org.tmatesoft.svn.core.SVNException String value String activityURL boolean response org.xml.sax.helpers.DefaultHandler handler String locationPath StringBuffer request org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus doCheckout (java.lang.String, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String location String locationHeaderValue String activityPath String repositoryPath String path boolean allow404 StringBuffer request java.util.Collection namespaces org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status public void doCopy (java.lang.String, java.lang.String, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String src String dst int depth org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header org.tmatesoft.svn.core.SVNErrorMessage context org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status public void close () public void setLocks (java.util.Map, boolean) java.util.Map locks boolean keepLocks public void clearAuthenticationCache () public java.lang.String getCapabilityResponse (org.tmatesoft.svn.core.io.SVNCapability) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNCapability capability public void setCapability (org.tmatesoft.svn.core.io.SVNCapability, java.lang.String) org.tmatesoft.svn.core.io.SVNCapability capability String capResult protected org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection getConnection () protected void exchangeCapabilities () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status protected org.tmatesoft.svn.core.io.SVNRepository getRepository () private void parseCapabilities (org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus) String value java.util.Iterator valuesIter org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status java.util.Collection capValues private java.lang.String getActivityCollectionURL (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path boolean force org.tmatesoft.svn.core.internal.io.dav.handlers.DAVOptionsHandler handler org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection private static java.lang.String generateUUID () int i long time String uuid int zeroes org.tmatesoft.svn.core.SVNException svne private void beforeCall () private org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus performHttpRequest (org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.lang.StringBuffer, int, int, java.io.OutputStream, org.xml.sax.helpers.DefaultHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection String method String path org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header StringBuffer body int ok1 int ok2 java.io.OutputStream dst org.xml.sax.helpers.DefaultHandler handler private org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus performHttpRequest (org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.lang.StringBuffer, int, int, java.io.OutputStream, org.xml.sax.helpers.DefaultHandler, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection String method String src org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header StringBuffer body int ok1 int ok2 java.io.OutputStream dst org.xml.sax.helpers.DefaultHandler handler org.tmatesoft.svn.core.SVNErrorMessage context private org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus performHttpRequest (org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.io.InputStream, int, int, java.io.OutputStream, org.xml.sax.helpers.DefaultHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection httpConnection String method String path org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader headers java.io.InputStream data int ok1 int ok2 java.io.OutputStream dst org.xml.sax.helpers.DefaultHandler handler }
org/tmatesoft/svn/core/internal/io/dav/DAVKeyManager.class
DAVKeyManager.java package org.tmatesoft.svn.core.internal.io.dav org.tmatesoft.svn.core.internal.io.dav.DAVKeyManager extends java.lang.Object { private static final String CERTIFICATE_FILE private static final String CERTIFICATE_PASSPHRASE private static final String OLD_CERTIFICATE_FILE private static final String OLD_CERTIFICATE_PASSPHRASE private static javax.net.ssl.KeyManager[] ourKeyManagers private static boolean ourIsInitialized void <init> () public static javax.net.ssl.KeyManager[] getKeyManagers () java.io.IOException e Throwable th java.io.IOException e java.io.IOException e Throwable e String certFileName char[] passphrase String pph java.security.KeyStore keyStore java.io.InputStream is javax.net.ssl.KeyManagerFactory kmf }
org/tmatesoft/svn/core/internal/io/dav/http/
org/tmatesoft/svn/core/internal/io/dav/http/DefaultHTTPNegotiateAuthentication.class
DefaultHTTPNegotiateAuthentication.java package org.tmatesoft.svn.core.internal.io.dav.http public org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication extends org.tmatesoft.svn.core.internal.io.dav.http.HTTPNegotiateAuthentication { private static final String NEGOTIATE_TYPE_PROPERTY private static final String NEGOTIATE_TYPE_SPNEGO private static final String NEGOTIATE_TYPE_KERBEROS private static java.util.Map ourOids private static volatile Boolean ourIsNegotiateSupported private org.ietf.jgss.GSSManager myGSSManager private org.ietf.jgss.GSSContext myGSSContext private org.ietf.jgss.Oid mySpnegoOid private javax.security.auth.Subject mySubject private byte[] myToken private int myTokenLength private static org.ietf.jgss.Oid getDefaultOID () String defaultOid org.ietf.jgss.Oid oid public void <init> (org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication) org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication prevAuth public void <init> () public static synchronized boolean isSupported () int i org.ietf.jgss.Oid spnegoOid org.ietf.jgss.Oid[] supportedOids public void respondTo (java.lang.String) String challenge private void initializeSubject () javax.security.auth.login.LoginContext ctx SecurityException rethrown javax.security.auth.login.LoginException e private void initializeContext () throws org.ietf.jgss.GSSException org.ietf.jgss.GSSCredential credentials org.ietf.jgss.GSSName serverName public java.lang.String authenticate () throws org.tmatesoft.svn.core.SVNException String result Throwable cause java.security.PrivilegedActionException e String result Exception cause java.security.PrivilegedExceptionAction action public boolean isStarted () public boolean needsLogin () static synthetic void access$100 (org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication) throws org.ietf.jgss.GSSException org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication x0 static synthetic org.ietf.jgss.GSSContext access$200 (org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication) org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication x0 static synthetic byte[] access$300 (org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication) org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication x0 static synthetic int access$400 (org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication) org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication x0 static void <clinit> () org.ietf.jgss.GSSException e org.ietf.jgss.GSSException e }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPNTLMAuthentication.class
HTTPNTLMAuthentication.java package org.tmatesoft.svn.core.internal.io.dav.http org.tmatesoft.svn.core.internal.io.dav.http.HTTPNTLMAuthentication extends org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication { private static final String NTLM_CASE_CONVERTION_PROPERTY private static final String OLD_NTLM_CASE_CONVERTION_PROPERTY private static final String DEFAULT_CHARSET private static final String PROTOCOL_NAME private static final int LM_RESPONSE_LENGTH private static final int UNINITIATED protected static final int TYPE1 protected static final int TYPE3 private static byte[] ourMagicBytes private static final long NEGOTIATE_UNICODE private static final long NEGOTIATE_OEM private static final long REQUEST_TARGET private static final long NEGOTIATE_SIGN private static final long NEGOTIATE_SEAL private static final long NEGOTIATE_DATAGRAM_STYLE private static final long NEGOTIATE_LAN_MANAGER_KEY private static final long NEGOTIATE_NETWARE private static final long NEGOTIATE_NTLM private static final long NEGOTIATE_DOMAIN_SUPPLIED private static final long NEGOTIATE_WORKSTATION_SUPPLIED private static final long NEGOTIATE_LOCAL_CALL private static final long NEGOTIATE_ALWAYS_SIGN private static final long TARGET_TYPE_DOMAIN private static final long TARGET_TYPE_SERVER private static final long TARGET_TYPE_SHARE private static final long NEGOTIATE_NTLM2_KEY private static final long REQUEST_INIT_RESPONSE private static final long REQUEST_ACCEPT_RESPONSE private static final long REQUEST_NON_NT_SESSION_KEY private static final long NEGOTIATE_TARGET_INFO private static final long NEGOTIATE_128 private static final long NEGOTIATE_KEY_EXCHANGE private static final long NEGOTIATE_56 private static java.util.Map ourFlags private static java.util.Map ourTargetInfoTypes protected int myState private String myCharset private byte[] myResponse private int myPosition private byte[] myNonce private boolean myIsNegotiateLocalCall protected void <init> (java.lang.String) String charset public void setType1State () public void setType3State () public boolean isInType3State () private void initResponse (int) int bufferSize private void addByte (byte) byte b private void addBytes (byte[]) int i byte[] bytes private byte[] convertToShortValue (int) int num byte[] val private java.lang.String getResponse () int i byte[] response byte[] response public void parseChallenge (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.UnsupportedEncodingException e java.io.UnsupportedEncodingException e int i org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err int i int i java.io.UnsupportedEncodingException e Long curFlag java.util.Iterator flagsIter int i int i int i java.io.UnsupportedEncodingException e String targetName int i byte[] contextHBytes byte[] contextLBytes int i int i int i int i int i int i java.io.UnsupportedEncodingException e String info int targetInfoType int subblockLength String typeDescription int tgtInfoSecurityBufferOffset byte[] targetInfoLengthBytes int targetInfoLength byte[] targetInfoAllocatedBytes int targetInfoAllocated byte[] targetInfoOffsetBytes long targetInfoOffset byte[] targetInfoTypeBytes byte[] subblockLengthBytes int read String challenge byte[] challengeBase64Bytes byte[] resultBuffer int resultLength String proto byte[] typeBytes long type byte[] flagBytes long flags StringBuffer log String base64DecodedMessage byte[] targetNameLengthBytes int targetNameLength byte[] targetNameAllocatedBytes int targetNameAllocated byte[] targetNameOffsetBytes long targetNameOffset long contextH long contextL boolean containsContext private static int toInt (byte[]) int b int i byte[] num int l public java.lang.String authenticate () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.net.InetAddress localhost java.net.UnknownHostException uhe Long curFlag java.util.Iterator flagsIter int responseLength byte[] domainOffset byte[] hostOffset Long curFlag java.util.Iterator flagsIter int i int responseLength byte[] lmResponseLength byte[] ntlmResponseLength byte[] responseLengthShortBytes byte[] usernameLength String password byte[] hash int i int responseLength byte[] responseLengthShortBytes byte[] userBytes java.io.UnsupportedEncodingException e String username String domain String hostName byte[] protocol byte[] domainBytes byte[] hostNameBytes byte[] domLen byte[] hostLen StringBuffer sublog long flags StringBuffer log String message public java.lang.String getAuthenticationScheme () public boolean isNative () public java.lang.String getUserName () int lastInd String login String userName int slashInd public java.lang.String getDomain () String login String domain int slashInd private long toLong (byte[]) long b int i byte[] num long l private boolean isUpperCase () String upperCase private byte[] hashPassword (java.lang.String) throws org.tmatesoft.svn.core.SVNException int i int i int i String password byte[] passw byte[] lmPw1 byte[] lmPw2 int len int idx byte[] lmHpw1 byte[] lmHpw2 byte[] lmHpw byte[] lmResp private void calcResp (byte[], byte[]) throws org.tmatesoft.svn.core.SVNException int i int i int i int i int i int i byte[] keys byte[] results byte[] keys1 byte[] keys2 byte[] keys3 byte[] results1 byte[] results2 byte[] results3 private byte[] encrypt (byte[], byte[]) throws org.tmatesoft.svn.core.SVNException byte[] enc org.tmatesoft.svn.core.SVNErrorMessage err javax.crypto.IllegalBlockSizeException e org.tmatesoft.svn.core.SVNErrorMessage err javax.crypto.BadPaddingException e byte[] key byte[] bytes javax.crypto.Cipher ecipher private javax.crypto.Cipher getCipher (byte[]) throws org.tmatesoft.svn.core.SVNException javax.crypto.Cipher ecipher org.tmatesoft.svn.core.SVNErrorMessage err java.security.NoSuchAlgorithmException e org.tmatesoft.svn.core.SVNErrorMessage err java.security.InvalidKeyException e org.tmatesoft.svn.core.SVNErrorMessage err javax.crypto.NoSuchPaddingException e byte[] key private byte[] setupKey (byte[]) int i byte[] key56 byte[] key static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPDigestAuthentication.class
HTTPDigestAuthentication.java package org.tmatesoft.svn.core.internal.io.dav.http org.tmatesoft.svn.core.internal.io.dav.http.HTTPDigestAuthentication extends org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication { private static final char[] HEXADECIMAL private String myCnonce private String myQop private String myLastNonce private int myNC protected void <init> () public void init () throws org.tmatesoft.svn.core.SVNException java.util.StringTokenizer tok org.tmatesoft.svn.core.SVNErrorMessage err String qop String selectedQop public java.lang.String authenticate () throws org.tmatesoft.svn.core.SVNException String uname String nonce String digest String uri String realm String opaque String algorithm StringBuffer sb String nc public java.lang.String getAuthenticationScheme () private java.lang.String createDigest (java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err Exception e String tmp2 StringBuffer tmp3 StringBuffer tmp2 String qopOption String nc String uname String pwd String charset String digAlg String uri String realm String nonce String method String algorithm java.security.MessageDigest md5Helper StringBuffer tmp String a1 String md5a1 String a2 String md5a2 StringBuffer tmp2 private java.lang.String getParameter (java.lang.String) String name private java.lang.String getParameter (java.lang.String, java.lang.String) String name String defaultValue String value private static java.lang.String createCnonce () java.security.NoSuchAlgorithmException e String cnonce String digAlg java.security.MessageDigest md5Helper private static java.lang.String encode (byte[]) int low int high int i byte[] binaryData char[] buffer private static java.lang.String formatNC (int) int i int nc String value int count static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPSSLKeyManager.class
HTTPSSLKeyManager.java package org.tmatesoft.svn.core.internal.io.dav.http public final org.tmatesoft.svn.core.internal.io.dav.http.HTTPSSLKeyManager extends java.lang.Object implements javax.net.ssl.X509KeyManager { private final org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authenticationManager private final String realm private final org.tmatesoft.svn.core.SVNURL url private javax.net.ssl.KeyManager[] myKeyManagers private org.tmatesoft.svn.core.auth.SVNSSLAuthentication myAuthentication private Exception myException private String chooseAlias private boolean myIsFirstRequest public static javax.net.ssl.KeyManager[] loadClientCertificate () throws org.tmatesoft.svn.core.SVNException Throwable th Throwable th java.security.Provider pjacapi java.security.Provider pmscapi javax.net.ssl.KeyManager[] result java.security.KeyStore keyStore javax.net.ssl.KeyManagerFactory kmf public static javax.net.ssl.KeyManager[] loadClientCertificate (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException javax.net.ssl.KeyManagerFactory kmf Throwable th Throwable th Throwable th java.io.File clientCertFile String clientCertPassword char[] passphrase javax.net.ssl.KeyManager[] result java.security.KeyStore keyStore java.io.InputStream is javax.net.ssl.KeyManagerFactory kmf public javax.net.ssl.KeyManager[] loadClientCertificate (org.tmatesoft.svn.core.auth.SVNSSLAuthentication) throws org.tmatesoft.svn.core.SVNException javax.net.ssl.KeyManagerFactory kmf Throwable th java.io.InputStream is java.io.IOException io Throwable th Throwable th org.tmatesoft.svn.core.auth.SVNSSLAuthentication sslAuthentication String clientCertPassword String clientCertPath java.io.File clientCertFile char[] passphrase String realm org.tmatesoft.svn.core.auth.SVNAuthentication auth javax.net.ssl.KeyManager[] result java.security.KeyStore keyStore javax.net.ssl.KeyManagerFactory kmf public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, java.lang.String, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authenticationManager String realm org.tmatesoft.svn.core.SVNURL url public java.lang.String[] getClientAliases (java.lang.String, java.security.Principal[]) javax.net.ssl.X509KeyManager keyManager String[] clientAliases java.util.Iterator it String location java.security.Principal[] principals public java.lang.String chooseClientAlias (java.lang.String[], java.security.Principal[], java.net.Socket) javax.net.ssl.X509KeyManager keyManager String clientAlias java.util.Iterator it String[] strings java.security.Principal[] principals java.net.Socket socket public java.lang.String[] getServerAliases (java.lang.String, java.security.Principal[]) javax.net.ssl.X509KeyManager keyManager String[] serverAliases java.util.Iterator it String location java.security.Principal[] principals public java.lang.String chooseServerAlias (java.lang.String, java.security.Principal[], java.net.Socket) javax.net.ssl.X509KeyManager keyManager String serverAlias java.util.Iterator it String location java.security.Principal[] principals java.net.Socket socket public java.security.cert.X509Certificate[] getCertificateChain (java.lang.String) javax.net.ssl.X509KeyManager keyManager java.security.cert.X509Certificate[] certificateChain java.util.Iterator it String location public java.security.PrivateKey getPrivateKey (java.lang.String) javax.net.ssl.X509KeyManager keyManager java.security.PrivateKey privateKey java.util.Iterator it String string public java.lang.Exception getException () public void acknowledgeAndClearAuthentication (org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage errorMessage Exception exception private boolean initializeNoException () boolean result Exception exception private boolean initialize () throws org.tmatesoft.svn.core.SVNException javax.net.ssl.KeyManager[] keyManagers javax.net.ssl.KeyManager[] keyManagers org.tmatesoft.svn.core.SVNAuthenticationException authenticationException org.tmatesoft.svn.core.SVNCancelException cancel org.tmatesoft.svn.core.SVNErrorMessage sslErr org.tmatesoft.svn.core.SVNException ex javax.net.ssl.KeyManager[] keyManagers private static java.util.List getX509KeyManagers (javax.net.ssl.KeyManager[]) javax.net.ssl.KeyManager keyManager int index javax.net.ssl.KeyManager[] keyManagers java.util.List x509KeyManagers private static boolean isMSCAPI (org.tmatesoft.svn.core.auth.SVNSSLAuthentication) org.tmatesoft.svn.core.auth.SVNSSLAuthentication sslAuthentication }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPParser.class
HTTPParser.java package org.tmatesoft.svn.core.internal.io.dav.http org.tmatesoft.svn.core.internal.io.dav.http.HTTPParser extends java.lang.Object { private static ThreadLocal ourLocalReadBuffer void <init> () public static org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus parseStatus (java.io.InputStream, java.lang.String) throws java.io.IOException java.text.ParseException java.io.InputStream is String charset String line int limit public static java.lang.String readLine (java.io.InputStream, java.lang.String) throws java.io.IOException java.io.InputStream is String charset int length byte[] buffer private static int readPlainLine (java.io.InputStream) throws java.io.IOException int ch java.io.InputStream is int i byte[] buffer public static java.lang.StringBuffer getCanonicalPath (java.lang.String, java.lang.StringBuffer) char ch int i String path StringBuffer target int end static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/http/IHTTPConnectionFactory.class
IHTTPConnectionFactory.java package org.tmatesoft.svn.core.internal.io.dav.http public abstract org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory extends java.lang.Object { public static final org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory DEFAULT public abstract org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection createHTTPConnection (org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException public abstract boolean useSendAllForDiff (org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPConnection.class
HTTPConnection.java package org.tmatesoft.svn.core.internal.io.dav.http org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection { private static final org.xml.sax.helpers.DefaultHandler DEFAULT_SAX_HANDLER private static org.xml.sax.EntityResolver NO_ENTITY_RESOLVER private static final int requestAttempts private static final int DEFAULT_HTTP_TIMEOUT private static javax.xml.parsers.SAXParserFactory ourSAXParserFactory private byte[] myBuffer private javax.xml.parsers.SAXParser mySAXParser private org.tmatesoft.svn.core.SVNURL myHost private java.io.OutputStream myOutputStream private java.io.InputStream myInputStream private java.net.Socket mySocket private org.tmatesoft.svn.core.io.SVNRepository myRepository private boolean myIsSecured private boolean myIsProxied private org.tmatesoft.svn.core.auth.SVNAuthentication myLastValidAuth private org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication myChallengeCredentials private org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication myProxyAuthentication private boolean myIsSpoolResponse private javax.net.ssl.TrustManager myTrustManager private org.tmatesoft.svn.core.internal.io.dav.http.HTTPSSLKeyManager myKeyManager private String myCharset private boolean myIsSpoolAll private java.io.File mySpoolDirectory private long myNextRequestTimeout private java.util.Collection myCookies private int myRequestCount private org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus myLastStatus public void <init> (org.tmatesoft.svn.core.io.SVNRepository, java.lang.String, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repository String charset java.io.File spoolDirectory boolean spoolAll public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus getLastStatus () public org.tmatesoft.svn.core.SVNURL getHost () private void connect (org.tmatesoft.svn.core.internal.io.dav.http.HTTPSSLKeyManager, javax.net.ssl.TrustManager, org.tmatesoft.svn.core.auth.ISVNProxyManager) throws java.io.IOException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest connectRequest org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status org.tmatesoft.svn.core.SVNURL proxyURL org.tmatesoft.svn.core.SVNErrorMessage err String host int port org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager int connectTimeout int readTimeout org.tmatesoft.svn.core.internal.io.dav.http.HTTPSSLKeyManager keyManager javax.net.ssl.TrustManager trustManager org.tmatesoft.svn.core.auth.ISVNProxyManager proxyManager org.tmatesoft.svn.core.SVNURL location public void readHeader (org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest) throws java.io.IOException org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header String line java.text.ParseException e org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest request java.io.InputStream is public org.tmatesoft.svn.core.SVNErrorMessage readError (org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest, java.lang.String, java.lang.String) java.io.IOException e org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest request String method String path org.tmatesoft.svn.core.internal.io.dav.handlers.DAVErrorHandler errorHandler public void sendData (byte[]) throws java.io.IOException byte[] body public void sendData (java.io.InputStream, long) throws java.io.IOException int read byte[] buffer java.io.InputStream source long length public org.tmatesoft.svn.core.auth.SVNAuthentication getLastValidCredentials () public void clearAuthenticationCache () public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus request (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.lang.StringBuffer, int, int, java.io.OutputStream, org.xml.sax.helpers.DefaultHandler) throws org.tmatesoft.svn.core.SVNException String method String path org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header StringBuffer body int ok1 int ok2 java.io.OutputStream dst org.xml.sax.helpers.DefaultHandler handler public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus request (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.lang.StringBuffer, int, int, java.io.OutputStream, org.xml.sax.helpers.DefaultHandler, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.UnsupportedEncodingException e String method String path org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header StringBuffer body int ok1 int ok2 java.io.OutputStream dst org.xml.sax.helpers.DefaultHandler handler org.tmatesoft.svn.core.SVNErrorMessage context byte[] buffer public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus request (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.io.InputStream, int, int, java.io.OutputStream, org.xml.sax.helpers.DefaultHandler) throws org.tmatesoft.svn.core.SVNException String method String path org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header java.io.InputStream body int ok1 int ok2 java.io.OutputStream dst org.xml.sax.helpers.DefaultHandler handler public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus request (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.io.InputStream, int, int, java.io.OutputStream, org.xml.sax.helpers.DefaultHandler, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.EOFException pe String httpAuthResponse String proxyAuthResponse org.tmatesoft.svn.core.SVNErrorMessage sslErr javax.net.ssl.SSLHandshakeException ssl java.io.IOException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager defaultAuthManager org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.dav.http.HTTPNTLMAuthentication ntlmProxyAuth java.util.Collection proxyAuthHeaders java.util.Collection authTypes org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager defaultAuthManager org.tmatesoft.svn.core.SVNException svne java.util.Collection authHeaderValues boolean skip java.util.Collection authTypes org.tmatesoft.svn.core.internal.io.dav.http.HTTPNTLMAuthentication ntlmAuth org.tmatesoft.svn.core.internal.io.dav.http.HTTPNegotiateAuthentication negoAuth String newPath String newLocation int hostIndex int retryCount String method String path org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header java.io.InputStream body int ok1 int ok2 java.io.OutputStream dst org.xml.sax.helpers.DefaultHandler handler org.tmatesoft.svn.core.SVNErrorMessage context org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.internal.io.dav.http.HTTPSSLKeyManager keyManager javax.net.ssl.TrustManager trustManager org.tmatesoft.svn.core.auth.ISVNProxyManager proxyManager String sslRealm org.tmatesoft.svn.core.auth.SVNAuthentication httpAuth boolean isAuthForced String realm org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest request org.tmatesoft.svn.core.SVNErrorMessage err boolean ntlmAuthIsRequired boolean ntlmProxyAuthIsRequired boolean negoAuthIsRequired int authAttempts org.tmatesoft.svn.core.SVNErrorMessage err2 private boolean isClearCredentialsOnClose (org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication) org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication auth private org.tmatesoft.svn.core.internal.io.dav.http.HTTPSSLKeyManager createKeyManager () org.tmatesoft.svn.core.SVNURL location org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager String sslRealm public org.tmatesoft.svn.core.SVNErrorMessage readData (org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest, java.io.OutputStream) throws java.io.IOException int count org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper wrappedException java.io.IOException e org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest request java.io.OutputStream dst java.io.InputStream stream byte[] buffer boolean willCloseConnection public org.tmatesoft.svn.core.SVNErrorMessage readData (org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest, java.lang.String, java.lang.String, org.xml.sax.helpers.DefaultHandler) throws java.io.IOException org.tmatesoft.svn.core.SVNException e java.io.OutputStream dst org.tmatesoft.svn.core.SVNException e java.io.IOException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest request String method String path org.xml.sax.helpers.DefaultHandler handler java.io.InputStream is org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile tmpFile org.tmatesoft.svn.core.SVNErrorMessage err private org.tmatesoft.svn.core.SVNErrorMessage readData (java.io.InputStream, java.lang.String, java.lang.String, org.xml.sax.helpers.DefaultHandler) throws javax.xml.parsers.FactoryConfigurationError java.io.UnsupportedEncodingException java.io.IOException org.xml.sax.XMLReader xmlReader org.tmatesoft.svn.core.internal.io.dav.http.XMLReader reader org.xml.sax.SAXException e org.xml.sax.XMLReader xmlReader org.xml.sax.SAXException e org.xml.sax.XMLReader xmlReader org.xml.sax.SAXException e org.xml.sax.XMLReader xmlReader org.xml.sax.SAXException e org.xml.sax.XMLReader xmlReader org.xml.sax.SAXException e org.xml.sax.XMLReader xmlReader org.xml.sax.SAXException e org.xml.sax.SAXException e org.xml.sax.XMLReader xmlReader javax.xml.parsers.ParserConfigurationException e java.io.EOFException e org.xml.sax.SAXException e org.xml.sax.XMLReader xmlReader org.xml.sax.SAXException e org.xml.sax.XMLReader xmlReader java.io.InputStream is String method String path org.xml.sax.helpers.DefaultHandler handler public void skipData (org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest) throws java.io.IOException org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest request java.io.InputStream is public void close () java.io.IOException e java.io.IOException e java.io.IOException e java.io.IOException e private byte[] getBuffer () private java.io.InputStream getInputStream () throws java.io.IOException private java.io.OutputStream getOutputStream () throws java.io.IOException private void finishResponse (org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest) java.io.IOException ex org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest request org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header private static boolean hasToCloseConnection (org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader) org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header String connectionHeader String proxyHeader private java.io.InputStream createInputStream (org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.io.InputStream) throws java.io.IOException NumberFormatException nfe String lengthStr long length org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader readHeader java.io.InputStream is private static synchronized javax.xml.parsers.SAXParserFactory getSAXParserFactory () throws javax.xml.parsers.FactoryConfigurationError org.xml.sax.SAXNotRecognizedException e org.xml.sax.SAXNotSupportedException e javax.xml.parsers.ParserConfigurationException e org.xml.sax.SAXNotRecognizedException e org.xml.sax.SAXNotSupportedException e javax.xml.parsers.ParserConfigurationException e org.xml.sax.SAXNotRecognizedException e org.xml.sax.SAXNotSupportedException e javax.xml.parsers.ParserConfigurationException e org.xml.sax.SAXNotRecognizedException e org.xml.sax.SAXNotSupportedException e javax.xml.parsers.ParserConfigurationException e String name java.util.Iterator names java.util.Map supportedFeatures public static javax.xml.parsers.SAXParserFactory createSAXParserFactory () Object factory Class clazz ClassNotFoundException e InstantiationException e IllegalAccessException e String className ClassLoader loader int i String legacy String[] parsers public void setSpoolResponse (boolean) boolean spoolResponse static void <clinit> () NumberFormatException nfe String attemptsString int attempts }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPBodyInputStream.class
HTTPBodyInputStream.java package org.tmatesoft.svn.core.internal.io.dav.http public org.tmatesoft.svn.core.internal.io.dav.http.HTTPBodyInputStream extends java.io.InputStream { private java.io.File myFile private java.io.InputStream myDelegate public void <init> (java.io.File) java.io.File file public int read (byte[], int, int) throws java.io.IOException byte[] b int off int len public int read (byte[]) throws java.io.IOException byte[] b public int read () throws java.io.IOException public void close () throws java.io.IOException public synchronized void reset () throws java.io.IOException private java.io.InputStream getDelegate () throws java.io.IOException org.tmatesoft.svn.core.SVNException e }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPAuthentication.class
HTTPAuthentication.java package org.tmatesoft.svn.core.internal.io.dav.http abstract org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication extends java.lang.Object { private java.util.Map myChallengeParameters private String myUserName private String myPassword private static final String AUTH_METHODS_PROPERTY private static final String OLD_AUTH_METHODS_PROPERTY protected void <init> (org.tmatesoft.svn.core.auth.SVNPasswordAuthentication) org.tmatesoft.svn.core.auth.SVNPasswordAuthentication credentials protected void <init> (java.lang.String, java.lang.String) String name String password protected void <init> () public void setChallengeParameter (java.lang.String, java.lang.String) String name String value java.util.Map params public java.lang.String getChallengeParameter (java.lang.String) String name protected java.util.Map getChallengeParameters () public void setCredentials (org.tmatesoft.svn.core.auth.SVNPasswordAuthentication) org.tmatesoft.svn.core.auth.SVNPasswordAuthentication credentials public java.lang.String getUserName () public java.lang.String getPassword () public void setUserName (java.lang.String) String name public void setPassword (java.lang.String) String password public static org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication parseAuthParameters (java.util.Collection, org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication, java.lang.String, java.util.Collection, org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String value int i char[] chars int tokenIndex boolean parsingToken String name int quotesCount org.tmatesoft.svn.core.internal.io.dav.http.HTTPDigestAuthentication digestAuth org.tmatesoft.svn.core.internal.io.dav.http.HTTPNTLMAuthentication ntlmAuth Throwable th org.tmatesoft.svn.core.internal.io.dav.http.HTTPNegotiateAuthentication negoAuth String source int index String method java.util.Iterator authSchemes org.tmatesoft.svn.core.SVNErrorMessage err java.util.Collection authHeaderValues org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication prevResponse String charset java.util.Collection authTypes org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager int requestID org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication auth String authHeader public static boolean isSchemeSupportedByServer (java.lang.String, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String source int index String method java.util.Iterator authSchemes String scheme java.util.Collection authHeaderValues String authHeader private static java.util.Collection sortSchemes (java.util.Collection, java.util.Collection) String scheme java.util.StringTokenizer tokens java.util.Collection authHeaders java.util.Collection authTypes String priorities java.util.List schemes java.util.List ordered private static java.lang.String getSchemeName (java.lang.String) String header String source int index public abstract java.lang.String getAuthenticationScheme () public abstract java.lang.String authenticate () throws org.tmatesoft.svn.core.SVNException protected static byte[] getASCIIBytes (java.lang.String) String data protected static byte[] getBytes (java.lang.String, java.lang.String) java.io.UnsupportedEncodingException e String data String charset static synthetic java.lang.String access$000 (java.lang.String) String x0 }
org/tmatesoft/svn/core/internal/io/dav/http/IHTTPConnectionFactory$1.class
IHTTPConnectionFactory.java package org.tmatesoft.svn.core.internal.io.dav.http final org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory { void <init> () public org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection createHTTPConnection (org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repository String charset public boolean useSendAllForDiff (org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repository }
org/tmatesoft/svn/core/internal/io/dav/http/SpoolFile.class
SpoolFile.java package org.tmatesoft.svn.core.internal.io.dav.http public org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile extends java.lang.Object { private static final long LIMIT private static final long MEMORY_TRESHOLD private java.io.File myDirectory private java.util.LinkedList myFiles private java.io.ByteArrayOutputStream myBuffer public void <init> (java.io.File) java.io.File directory public java.io.OutputStream openForWriting () public java.io.InputStream openForReading () public void delete () throws org.tmatesoft.svn.core.SVNException java.io.File file java.util.Iterator files static synthetic java.io.ByteArrayOutputStream access$200 (org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile) org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile x0 static synthetic java.util.LinkedList access$300 (org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile) org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile x0 static synthetic java.io.ByteArrayOutputStream access$202 (org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile, java.io.ByteArrayOutputStream) org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile x0 java.io.ByteArrayOutputStream x1 static synthetic java.io.File access$400 (org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile) org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile x0 }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPStatus.class
HTTPStatus.java package org.tmatesoft.svn.core.internal.io.dav.http public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus extends java.lang.Object { private String myStatusLine private String myVersion private int myCode private String myReason private org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader myHeader private org.tmatesoft.svn.core.SVNErrorMessage myError public static boolean isHTTPStatusLine (java.lang.String) org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status java.text.ParseException pe String statusLine public static org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus createHTTPStatus (java.lang.String) throws java.text.ParseException NumberFormatException e int to StringIndexOutOfBoundsException e String statusLine int length int at int start String reason String version int code private void <init> (java.lang.String, java.lang.String, int, java.lang.String) String version String reason int code String statusLine public java.lang.String getReason () public int getCode () public int getCodeClass () public java.lang.String getStatusLine () public java.lang.String getVersion () public boolean isHTTP11 () public void setHeader (org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader) org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header public org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader getHeader () public void setError (org.tmatesoft.svn.core.SVNErrorMessage) org.tmatesoft.svn.core.SVNErrorMessage error public org.tmatesoft.svn.core.SVNErrorMessage getError () }
org/tmatesoft/svn/core/internal/io/dav/http/SpoolFile$SpoolInputStream.class
SpoolFile.java package org.tmatesoft.svn.core.internal.io.dav.http org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile$SpoolInputStream extends java.io.InputStream { private java.io.File myCurrentFile private long myCurrentSize private int myBufferOffset private java.io.InputStream myCurrentInput final synthetic org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile this$0 private void <init> (org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile) public int read () throws java.io.IOException byte[] buffer int read public int read (byte[]) throws java.io.IOException byte[] b public int read (byte[], int, int) throws java.io.IOException int bufferSize int toRead byte[] buffer int toRead int wasRead byte[] b int off int len int read private void openNextFile () throws java.io.IOException org.tmatesoft.svn.core.SVNException e public long skip (long) throws java.io.IOException int bufferSize long toSkip long toSkip long wasSkipped long n int skipped private void closeCurrentFile () throws java.io.IOException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e public void close () throws java.io.IOException synthetic void <init> (org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile, org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile$1) org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile x0 org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile$1 x1 }
org/tmatesoft/svn/core/internal/io/dav/http/XMLReader.class
XMLReader.java package org.tmatesoft.svn.core.internal.io.dav.http public org.tmatesoft.svn.core.internal.io.dav.http.XMLReader extends java.io.Reader { public static final char COLON_REPLACEMENT private java.io.Reader mySource private boolean myIsEscaping private int myColonCount private boolean myIsClosed public void <init> (java.io.InputStream) throws java.io.UnsupportedEncodingException java.io.InputStream is public int read (char[], int, int) throws java.io.IOException char ch int i char[] b int off int len int read public boolean isClosed () public void close () throws java.io.IOException }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPAuthentication$1.class
HTTPAuthentication.java package org.tmatesoft.svn.core.internal.io.dav.http final org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication$1 extends java.lang.Object implements java.util.Comparator { final synthetic java.util.List val$schemes void <init> (java.util.List) public int compare (java.lang.Object, java.lang.Object) Object o1 Object o2 String header1 String header2 String scheme1 String scheme2 int index1 int index2 }
org/tmatesoft/svn/core/internal/io/dav/http/SpoolFile$1.class
SpoolFile.java package org.tmatesoft.svn.core.internal.io.dav.http synthetic org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPNegotiateAuthentication.class
HTTPNegotiateAuthentication.java package org.tmatesoft.svn.core.internal.io.dav.http public abstract org.tmatesoft.svn.core.internal.io.dav.http.HTTPNegotiateAuthentication extends org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication { protected void <init> () public java.lang.String getAuthenticationScheme () protected java.lang.String getServerPrincipalName () public abstract void respondTo (java.lang.String) public abstract boolean isStarted () public abstract boolean needsLogin () public volatile synthetic void setPassword (java.lang.String) String x0 public volatile synthetic void setUserName (java.lang.String) String x0 public volatile synthetic java.lang.String getPassword () public volatile synthetic java.lang.String getUserName () public volatile synthetic void setCredentials (org.tmatesoft.svn.core.auth.SVNPasswordAuthentication) org.tmatesoft.svn.core.auth.SVNPasswordAuthentication x0 public volatile synthetic java.lang.String getChallengeParameter (java.lang.String) String x0 public volatile synthetic void setChallengeParameter (java.lang.String, java.lang.String) String x0 String x1 }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPHeader.class
HTTPHeader.java package org.tmatesoft.svn.core.internal.io.dav.http public org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader extends java.lang.Object { public static final String CONNECTION_HEADER public static final String PROXY_CONNECTION_HEADER public static final String TRANSFER_ENCODING_HEADER public static final String CONTENT_LENGTH_HEADER public static final String CONTENT_ENCODING_HEADER public static final String CONTENT_TYPE_HEADER public static final String AUTHENTICATE_HEADER public static final String PROXY_AUTHENTICATE_HEADER public static final String LOCATION_HEADER public static final String LOCK_OWNER_HEADER public static final String CREATION_DATE_HEADER public static final String SVN_VERSION_NAME_HEADER public static final String SVN_OPTIONS_HEADER public static final String TEXT_MD5 public static final String BASE_MD5 public static final String LOCK_TOKEN_HEADER public static final String IF_HEADER public static final String DEPTH_HEADER public static final String LABEL_HEADER public static final String DESTINATION_HEADER public static final String TIMEOUT_HEADER public static final String DAV_HEADER public static final String SVN_DELTA_BASE_HEADER public static final String ACCEPT_ENCODING_HEADER public static final String CONTENT_RANGE_HEADER public static final String HOST_HEADER public static final String NEW_URI_HEADER public static final String OVERWRITE_HEADER public static final String SVNDIFF_MIME_TYPE public static final String SET_COOKIE public static final String COOKIE private java.util.Map myHeaders public void <init> () public java.lang.String toString () String value java.util.Iterator values String headerName java.util.Collection headerValues java.util.Iterator headers StringBuffer representation public void addHeaderValue (java.lang.String, java.lang.String) String name String value java.util.Map headers java.util.Collection values public java.util.Map getRawHeaders () public java.util.Collection getHeaderValues (java.lang.String) String headerName java.util.Iterator names String name java.util.List values public java.lang.String getFirstHeaderValue (java.lang.String) String name java.util.LinkedList values public boolean hasHeader (java.lang.String) String name java.util.LinkedList values public void setHeaderValue (java.lang.String, java.lang.String) String name String value java.util.Map headers java.util.Collection values private java.util.Map getHeaders () public static org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader parseHeader (java.io.InputStream, java.lang.String) throws java.io.IOException java.text.ParseException int colon String line java.io.InputStream is String charset org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader headers String name StringBuffer value }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPConnection$1.class
HTTPConnection.java package org.tmatesoft.svn.core.internal.io.dav.http final org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection$1 extends java.lang.Object implements org.xml.sax.EntityResolver { void <init> () public org.xml.sax.InputSource resolveEntity (java.lang.String, java.lang.String) throws org.xml.sax.SAXException java.io.IOException String publicId String systemId }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPRequest.class
HTTPRequest.java package org.tmatesoft.svn.core.internal.io.dav.http org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest extends java.lang.Object { public static final char[] CRLF private boolean myIsSecured private boolean myIsProxied private org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection myConnection private String myAuthentication private String myProxyAuthentication private org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader myResponseHeader private org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus myStatus private org.tmatesoft.svn.core.SVNErrorMessage myErrorMessage private org.xml.sax.helpers.DefaultHandler myResponseHandler private java.io.OutputStream myResponseStream private byte[] myRequestBody private java.io.InputStream myRequestStream private boolean myIsProxyAuthForced private boolean myIsKeepAlive private String myCharset private long myTimeout private java.util.Collection myCookies public void <init> (java.lang.String) String charset public void reset () java.io.IOException e public void setProxied (boolean) boolean proxied public void setSecured (boolean) boolean secured public void setConnection (org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection) org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection connection public void initCredentials (org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication, java.lang.String, java.lang.String) org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication authentication String method String path public void setAuthentication (java.lang.String) String auth public void setProxyAuthentication (java.lang.String) String auth public void setForceProxyAuth (boolean) boolean force public void setResponseHandler (org.xml.sax.helpers.DefaultHandler) org.xml.sax.helpers.DefaultHandler handler public void setResponseStream (java.io.OutputStream) java.io.OutputStream os public void setRequestBody (byte[]) byte[] body public void setRequestBody (java.lang.StringBuffer) java.io.UnsupportedEncodingException e StringBuffer sb public void setRequestBody (java.io.InputStream) java.io.InputStream is public void dispatch (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, int, int, org.tmatesoft.svn.core.SVNErrorMessage) throws java.io.IOException NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage error String request String path org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header int ok1 int ok2 org.tmatesoft.svn.core.SVNErrorMessage context long length StringBuffer headerText boolean notExpected private static long computeTimeout (org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader) java.util.Iterator headers String value java.util.Collection connectionHeaders int seconds NumberFormatException nfe int index String name String value int i org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header String keepAlive String[] fields private org.tmatesoft.svn.core.SVNErrorMessage readError (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNErrorMessage) String request String path org.tmatesoft.svn.core.SVNErrorMessage context String contextMessage Object[] contextObjects org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage davError public org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader getResponseHeader () public long getNextRequestTimeout () public org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus getStatus () public void setStatus (org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus) org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status public void setResponseHeader (org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader) org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header public org.tmatesoft.svn.core.SVNErrorMessage getErrorMessage () private java.lang.StringBuffer composeHTTPHeader (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, long, boolean) String cookie java.util.Iterator cookies String request String path org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader header long length boolean keepAlive StringBuffer sb int defaultPort private java.lang.String composeRequestURI (java.lang.String, java.lang.String) String request String path StringBuffer sb public static org.tmatesoft.svn.core.SVNErrorMessage createDefaultErrorMessage (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus, java.lang.String, java.lang.Object[]) org.tmatesoft.svn.core.SVNURL host String path org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status String context Object[] contextObjects org.tmatesoft.svn.core.SVNErrorCode errorCode String message Object[] messageObjects int index public void setKeepAlive (boolean) boolean isKeepAlive public void setCookies (java.util.Collection) java.util.Collection cookie static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/http/DefaultHTTPNegotiateAuthentication$1.class
DefaultHTTPNegotiateAuthentication.java package org.tmatesoft.svn.core.internal.io.dav.http org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication$1 extends java.lang.Object implements java.security.PrivilegedExceptionAction { final synthetic org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication this$0 void <init> (org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication) public java.lang.Object run () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.ietf.jgss.GSSException gsse org.tmatesoft.svn.core.SVNErrorMessage err org.ietf.jgss.GSSException gsse byte[] outtoken }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPNativeNTLMAuthentication.class
HTTPNativeNTLMAuthentication.java package org.tmatesoft.svn.core.internal.io.dav.http public org.tmatesoft.svn.core.internal.io.dav.http.HTTPNativeNTLMAuthentication extends org.tmatesoft.svn.core.internal.io.dav.http.HTTPNTLMAuthentication { private org.tmatesoft.svn.core.internal.util.jna.SVNWinSecurity$SVNNTSecurityParameters myNTSecurityParameters private String myLastToken protected void <init> (java.lang.String) String charset public static org.tmatesoft.svn.core.internal.io.dav.http.HTTPNativeNTLMAuthentication newInstance (java.lang.String) String charset public java.lang.String authenticate () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String response public void parseChallenge (java.lang.String) throws org.tmatesoft.svn.core.SVNException String challenge public boolean isNative () public volatile synthetic java.lang.String getDomain () public volatile synthetic java.lang.String getUserName () public volatile synthetic java.lang.String getAuthenticationScheme () public volatile synthetic boolean isInType3State () public volatile synthetic void setType3State () public volatile synthetic void setType1State () public volatile synthetic void setPassword (java.lang.String) String x0 public volatile synthetic void setUserName (java.lang.String) String x0 public volatile synthetic java.lang.String getPassword () public volatile synthetic void setCredentials (org.tmatesoft.svn.core.auth.SVNPasswordAuthentication) org.tmatesoft.svn.core.auth.SVNPasswordAuthentication x0 public volatile synthetic java.lang.String getChallengeParameter (java.lang.String) String x0 public volatile synthetic void setChallengeParameter (java.lang.String, java.lang.String) String x0 String x1 }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPParser$1.class
HTTPParser.java package org.tmatesoft.svn.core.internal.io.dav.http final org.tmatesoft.svn.core.internal.io.dav.http.HTTPParser$1 extends java.lang.ThreadLocal { void <init> () protected java.lang.Object initialValue () }
org/tmatesoft/svn/core/internal/io/dav/http/IHTTPNegotiateAuthenticationFactory.class
IHTTPNegotiateAuthenticationFactory.java package org.tmatesoft.svn.core.internal.io.dav.http public abstract org.tmatesoft.svn.core.internal.io.dav.http.IHTTPNegotiateAuthenticationFactory extends java.lang.Object { public abstract org.tmatesoft.svn.core.internal.io.dav.http.HTTPNegotiateAuthentication createNegotiateAuthentication (org.tmatesoft.svn.core.internal.io.dav.http.HTTPNegotiateAuthentication, int) }
org/tmatesoft/svn/core/internal/io/dav/http/DefaultHTTPConnectionFactory.class
DefaultHTTPConnectionFactory.java package org.tmatesoft.svn.core.internal.io.dav.http public org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPConnectionFactory extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory { private java.io.File mySpoolDirectory private String myHTTPCharset private boolean myIsSpoolAll private boolean myIsUseSendAll public void <init> (java.io.File, boolean, java.lang.String) java.io.File spoolDirectory boolean spoolAll String httpCharset public void <init> (java.io.File, boolean, boolean, java.lang.String) java.io.File spoolDirectory boolean spoolAll boolean useSendAllForDiff String httpCharset public org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection createHTTPConnection (org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repository String charset java.io.File spoolLocation public boolean useSendAllForDiff (org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repository }
org/tmatesoft/svn/core/internal/io/dav/http/DefaultHTTPNegotiateAuthentication$SVNKitCallbackHandler.class
DefaultHTTPNegotiateAuthentication.java package org.tmatesoft.svn.core.internal.io.dav.http org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication$SVNKitCallbackHandler extends java.lang.Object implements javax.security.auth.callback.CallbackHandler { final synthetic org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication this$0 private void <init> (org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication) public void handle (javax.security.auth.callback.Callback[]) throws java.io.IOException javax.security.auth.callback.UnsupportedCallbackException int i javax.security.auth.callback.Callback[] callbacks synthetic void <init> (org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication, org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication$1) org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication x0 org.tmatesoft.svn.core.internal.io.dav.http.DefaultHTTPNegotiateAuthentication$1 x1 }
org/tmatesoft/svn/core/internal/io/dav/http/HTTPBasicAuthentication.class
HTTPBasicAuthentication.java package org.tmatesoft.svn.core.internal.io.dav.http org.tmatesoft.svn.core.internal.io.dav.http.HTTPBasicAuthentication extends org.tmatesoft.svn.core.internal.io.dav.http.HTTPAuthentication { private String myCharset public void <init> (org.tmatesoft.svn.core.auth.SVNPasswordAuthentication, java.lang.String) org.tmatesoft.svn.core.auth.SVNPasswordAuthentication credentials String charset protected void <init> (java.lang.String, java.lang.String, java.lang.String) String name String password String charset protected void <init> (java.lang.String) String charset public java.lang.String authenticate () java.io.UnsupportedEncodingException e StringBuffer result String authStr public java.lang.String getAuthenticationScheme () }
org/tmatesoft/svn/core/internal/io/dav/http/SpoolFile$SpoolOutputStream.class
SpoolFile.java package org.tmatesoft.svn.core.internal.io.dav.http org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile$SpoolOutputStream extends java.io.OutputStream { private java.io.OutputStream myCurrentOutput private long myCurrentSize final synthetic org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile this$0 private void <init> (org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile) public void write (int) throws java.io.IOException int b public void write (byte[]) throws java.io.IOException byte[] b public void write (byte[], int, int) throws java.io.IOException org.tmatesoft.svn.core.SVNException e java.io.File file byte[] b int off int len public void close () throws java.io.IOException public void flush () throws java.io.IOException private java.io.File createNextFile () throws java.io.IOException java.io.File file synthetic void <init> (org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile, org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile$1) org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile x0 org.tmatesoft.svn.core.internal.io.dav.http.SpoolFile$1 x1 }
org/tmatesoft/svn/core/internal/io/dav/http/IHTTPConnection.class
IHTTPConnection.java package org.tmatesoft.svn.core.internal.io.dav.http public abstract org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnection extends java.lang.Object { public abstract void setSpoolResponse (boolean) public abstract org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus request (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.lang.StringBuffer, int, int, java.io.OutputStream, org.xml.sax.helpers.DefaultHandler) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus request (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.lang.StringBuffer, int, int, java.io.OutputStream, org.xml.sax.helpers.DefaultHandler, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus request (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.io.InputStream, int, int, java.io.OutputStream, org.xml.sax.helpers.DefaultHandler) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus request (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.dav.http.HTTPHeader, java.io.InputStream, int, int, java.io.OutputStream, org.xml.sax.helpers.DefaultHandler, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus getLastStatus () public abstract org.tmatesoft.svn.core.auth.SVNAuthentication getLastValidCredentials () public abstract void clearAuthenticationCache () public abstract void close () }
org/tmatesoft/svn/core/internal/io/dav/handlers/
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVProppatchHandler.class
DAVProppatchHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVProppatchHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { private static final java.util.Collection NAMESPACES private StringBuffer myPropertyName private StringBuffer myPropstatDescription private StringBuffer myDescription private boolean myPropstatContainsError private boolean myResponseContainsError private org.tmatesoft.svn.core.SVNErrorMessage myError public static java.lang.StringBuffer generatePropertyRequest (java.lang.StringBuffer, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) StringBuffer buffer String name org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.SVNProperties props public static java.lang.StringBuffer generatePropertyRequest (java.lang.StringBuffer, java.lang.String, byte[]) StringBuffer buffer String name byte[] value org.tmatesoft.svn.core.SVNProperties props public static java.lang.StringBuffer generatePropertyRequest (java.lang.StringBuffer, org.tmatesoft.svn.core.SVNProperties) String name org.tmatesoft.svn.core.SVNPropertyValue value java.util.Iterator names String name org.tmatesoft.svn.core.SVNPropertyValue value java.util.Iterator names StringBuffer xmlBuffer org.tmatesoft.svn.core.SVNProperties properties private static java.lang.StringBuffer appendProperty (java.lang.StringBuffer, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) java.nio.charset.CharacterCodingException e java.nio.charset.CharsetDecoder decoder java.io.UnsupportedEncodingException e String attrPrefix byte[] toDecode StringBuffer xmlBuffer String name org.tmatesoft.svn.core.SVNPropertyValue value String prefix String tagName java.util.Map attrs String stringValue boolean isXMLSafe private static boolean hasNullValues (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties props private static boolean hasNotNullValues (org.tmatesoft.svn.core.SVNProperties) String propName java.util.Iterator entries org.tmatesoft.svn.core.SVNProperties props public void <init> () public org.tmatesoft.svn.core.SVNErrorMessage getError () private java.lang.StringBuffer getPropertyName () private java.lang.StringBuffer getPropstatDescription () private java.lang.StringBuffer getDescription () protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException String description org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status java.text.ParseException e org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVGetLocksHandler.class
DAVGetLocksHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVGetLocksHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { private static final String LOCK_COMMENT_SUFFIX private static final String LOCK_COMMENT_PREFIX private static final String EMPTY_LOCK_COMMENT private java.util.Collection myLocks private String myPath private String myToken private String myComment private String myOwner private java.util.Date myExpirationDate private java.util.Date myCreationDate private boolean myIsBase64 public static java.lang.StringBuffer generateGetLocksRequest (java.lang.StringBuffer) StringBuffer xmlBuffer public void <init> () public org.tmatesoft.svn.core.SVNLock[] getLocks () protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLock lock java.io.UnsupportedEncodingException e StringBuffer sb byte[] buffer int length java.io.UnsupportedEncodingException e StringBuffer sb byte[] buffer int length org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVEditorHandler.class
DAVEditorHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVDeltaHandler { public static final String PLACEHOLDER_PROPERTY_NAME protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement TARGET_REVISION protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement UPDATE_REPORT protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement RESOURCE protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement OPEN_DIRECTORY protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement ADD_DIRECTORY protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement ABSENT_DIRECTORY protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement OPEN_FILE protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement ADD_FILE protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement ABSENT_FILE protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement DELETE_ENTRY protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement FETCH_PROPS protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SET_PROP protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement REMOVE_PROP protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement FETCH_FILE protected static final String REVISION_ATTR protected static final String NAME_ATTR protected static final String ENCODING_ATTR protected static final String COPYFROM_REV_ATTR protected static final String COPYFROM_PATH_ATTR protected static final String SEND_ALL_ATTR protected static final String BC_URL_ATTR protected static final String BASE_CHECKSUM_ATTR protected static final String PATH_ATTR protected org.tmatesoft.svn.core.io.ISVNEditor myEditor protected String myPath protected String myPropertyName protected boolean myIsDirectory protected java.util.Stack myDirs protected java.util.Map myLockTokens protected org.tmatesoft.svn.core.internal.io.dav.DAVRepository myOwner protected boolean myIsFetchContent private String myChecksum private String myEncoding private org.tmatesoft.svn.core.io.ISVNDeltaConsumer myDeltaConsumer private boolean myIsReceiveAll private org.tmatesoft.svn.core.internal.io.dav.DAVConnection myConnection private org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory myConnectionFactory private String myHref private String myCurrentWCPath private boolean myIsInResource private boolean myIsFetchProps private boolean myHasTarget private java.util.Map myVersionURLs public static java.lang.StringBuffer generateEditorRequest (org.tmatesoft.svn.core.internal.io.dav.DAVConnection, java.lang.StringBuffer, java.lang.String, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNDepth, java.util.Map, boolean, boolean, boolean, boolean, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection StringBuffer xmlBuffer String url long targetRevision String target String dstPath org.tmatesoft.svn.core.SVNDepth depth java.util.Map lockTokens boolean ignoreAncestry boolean resourceWalk boolean fetchContents boolean sendCopyFromArgs boolean sendAll org.tmatesoft.svn.core.io.ISVNReporterBaton reporterBaton java.util.Map attrs StringBuffer report public void <init> (org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory, org.tmatesoft.svn.core.internal.io.dav.DAVRepository, org.tmatesoft.svn.core.io.ISVNEditor, java.util.Map, boolean, boolean) org.tmatesoft.svn.core.internal.io.dav.http.IHTTPConnectionFactory connectionFactory org.tmatesoft.svn.core.internal.io.dav.DAVRepository owner org.tmatesoft.svn.core.io.ISVNEditor editor java.util.Map lockTokens boolean fetchContent boolean hasTarget public void closeConnection () protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException String receiveAll NumberFormatException nfe long revision String name String name org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err String name String revAttr long revision org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo dirInfo org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String copyFromRevString org.tmatesoft.svn.core.internal.io.dav.DAVProperties props org.tmatesoft.svn.core.SVNPropertyValue vcURL java.util.Iterator propsIter org.tmatesoft.svn.core.internal.io.dav.DAVElement[] elements java.util.Map propsMap String name String copyFromPath long copyFromRev org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo dirInfo String bcURL org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err String revAttr long revision String name org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String copyFromRevisionAttr String name String copyFromPath long copyFromRev org.tmatesoft.svn.core.SVNErrorMessage err String name org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String name String baseChecksum org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo dirInfo String baseChecksum org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue davWCURL org.tmatesoft.svn.core.SVNCancelException ce org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo topDirInfo org.tmatesoft.svn.core.SVNPropertyValue davWCURL org.tmatesoft.svn.core.SVNCancelException ce org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata protected java.lang.String getCurrentPath () protected org.tmatesoft.svn.core.io.ISVNDeltaConsumer getDeltaConsumer () protected void fetchFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNCancelException ce org.tmatesoft.svn.core.SVNException svne String deltaBaseVersionURL org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DeltaOutputStreamWrapper osWrapper org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection String baseChecksum protected void addNodeProperties (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String fullPath org.tmatesoft.svn.core.internal.io.dav.DAVConnection connection org.tmatesoft.svn.core.SVNLock lock String lockToken org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo topDirInfo org.tmatesoft.svn.core.internal.io.dav.DAVProperties props org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo topDirInfo org.tmatesoft.svn.core.internal.io.dav.DAVProperties props String path boolean isDir private void addProps (org.tmatesoft.svn.core.internal.io.dav.DAVProperties, boolean) throws org.tmatesoft.svn.core.SVNException String propName String propName org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.tmatesoft.svn.core.SVNPropertyValue propValue String elementNamespace java.util.Iterator propsIter org.tmatesoft.svn.core.internal.io.dav.DAVProperties props boolean isDir java.util.Map propsMap private org.tmatesoft.svn.core.internal.io.dav.DAVConnection getConnection () throws org.tmatesoft.svn.core.SVNException private static java.lang.String computeWCPropertyName (org.tmatesoft.svn.core.internal.io.dav.DAVElement) org.tmatesoft.svn.core.internal.io.dav.DAVElement element static synthetic org.tmatesoft.svn.core.io.ISVNDeltaConsumer access$400 (org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler) org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler x0 static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVDateRevisionHandler.class
DAVDateRevisionHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVDateRevisionHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { private long myRevisionNumber public static java.lang.StringBuffer generateDateRevisionRequest (java.lang.StringBuffer, java.util.Date) StringBuffer xmlBuffer java.util.Date date public void <init> () public long getRevisionNumber () protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVEditorHandler$DirInfo.class
DAVEditorHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo extends java.lang.Object { private boolean myIsFetchProps private java.util.Map myChildren private String myVSNURL final synthetic org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler this$0 private void <init> (org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler) synthetic void <init> (org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler, org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$1) org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler x0 org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$1 x1 static synthetic boolean access$102 (org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo, boolean) org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo x0 boolean x1 static synthetic java.util.Map access$202 (org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo, java.util.Map) org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo x0 java.util.Map x1 static synthetic java.util.Map access$200 (org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo) org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo x0 static synthetic java.lang.String access$302 (org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo, java.lang.String) org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo x0 String x1 static synthetic boolean access$100 (org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo) org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo x0 static synthetic java.lang.String access$300 (org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo) org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DirInfo x0 }
org/tmatesoft/svn/core/internal/io/dav/handlers/BasicDAVDeltaHandler.class
BasicDAVDeltaHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public abstract org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVDeltaHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement TX_DELTA private boolean myIsDeltaProcessing private org.tmatesoft.svn.core.internal.delta.SVNDeltaReader myDeltaReader private StringBuffer myDeltaOutputStream public void <init> () protected void setDeltaProcessing (boolean) throws org.tmatesoft.svn.core.SVNException boolean processing protected void init () public void characters (char[], int, int) throws org.xml.sax.SAXException int i int decodedLength IllegalArgumentException e org.tmatesoft.svn.core.SVNException e int offset int stored int segmentsCount int remains StringBuffer toDecode int index byte[] buffer char[] ch int start int length protected abstract java.lang.String getCurrentPath () protected abstract org.tmatesoft.svn.core.io.ISVNDeltaConsumer getDeltaConsumer () static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVDeletedRevisionHandler.class
DAVDeletedRevisionHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVDeletedRevisionHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { private long myRevision public static java.lang.StringBuffer generateGetDeletedRevisionRequest (java.lang.StringBuffer, java.lang.String, long, long) StringBuffer xmlBuffer String path long pegRevision long endRevision public void <init> () protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs public long getRevision () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVOptionsHandler.class
DAVOptionsHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVOptionsHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { public static final StringBuffer OPTIONS_REQUEST private String myActivityCollectionURL public void <init> () public java.lang.String getActivityCollectionURL () protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVPropertiesHandler.class
DAVPropertiesHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVPropertiesHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { private static final java.util.Set PROP_ELEMENTS private org.tmatesoft.svn.core.internal.io.dav.DAVProperties myCurrentResource private int myStatusCode private String myEncoding private java.util.Map myResources private java.util.Map myCurrentProperties public static java.lang.StringBuffer generatePropertiesRequest (java.lang.StringBuffer, org.tmatesoft.svn.core.internal.io.dav.DAVElement[]) int i StringBuffer xmlBuffer org.tmatesoft.svn.core.internal.io.dav.DAVElement[] properties public void <init> () public java.util.Map getDAVProperties () protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException java.util.Map$Entry entry org.tmatesoft.svn.core.internal.io.dav.DAVElement propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator entries org.tmatesoft.svn.core.internal.io.dav.http.HTTPStatus status java.text.ParseException e String path String propertyName org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata org.tmatesoft.svn.core.internal.io.dav.DAVElement name org.tmatesoft.svn.core.SVNPropertyValue value public void setDAVProperties (java.util.Map) java.util.Map result static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVReplayHandler.class
DAVReplayHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVReplayHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler { protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement EDITOR_REPORT protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement OPEN_ROOT protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement APPLY_TEXT_DELTA protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement CLOSE_FILE protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement CLOSE_DIRECTORY protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement CHANGE_FILE_PROPERTY protected static final org.tmatesoft.svn.core.internal.io.dav.DAVElement CHANGE_DIR_PROPERTY protected static final String CHECKSUM_ATTR protected static final String DEL_ATTR public static java.lang.StringBuffer generateReplayRequest (long, long, boolean) long highRevision long lowRevision boolean sendDeltas StringBuffer xmlBuffer public void <init> (org.tmatesoft.svn.core.io.ISVNEditor, boolean) org.tmatesoft.svn.core.io.ISVNEditor editor boolean fetchContent protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String rev org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String rev org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String path String rev org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe NumberFormatException nfe String copyFromPath String cfRevision long copyFromRevision long revision String path String rev org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String copyFromPath String cfRevision long copyFromRevision NumberFormatException nfe String rev long revision String path org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String checksum org.tmatesoft.svn.core.SVNErrorMessage err String checksum org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String name org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNPropertyValue propertyValue org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVLogHandler.class
DAVLogHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVLogHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOG_ITEM private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement ADDED_PATH private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement DELETED_PATH private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement MODIFIED_PATH private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement REPLACED_PATH private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement HAS_CHILDREN private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement REVPROP private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SUBTRACTIVE_MERGE private org.tmatesoft.svn.core.ISVNLogEntryHandler myLogEntryHandler private long myRevision private java.util.Map myPaths private String myAuthor private java.util.Date myDate private String myComment private org.tmatesoft.svn.core.SVNLogEntryPath myPath private long myCount private long myLimit private int myNestLevel private boolean myIsCompatibleMode private boolean myHasChildren private boolean myIsWantAuthor private boolean myIsWantDate private boolean myIsWantComment private boolean myIsWantCustomRevProps private String myRevPropName private org.tmatesoft.svn.core.SVNProperties myRevProps private boolean myIsSubtractiveMerge public static java.lang.StringBuffer generateLogRequest (java.lang.StringBuffer, long, long, boolean, boolean, boolean, java.lang.String[], long, java.lang.String[]) String revPropName int i int i StringBuffer xmlBuffer long startRevision long endRevision boolean includeChangedPaths boolean strictNodes boolean includeMergedRevisions String[] revPropNames long limit String[] paths public void <init> (org.tmatesoft.svn.core.ISVNLogEntryHandler, long, java.lang.String[]) String revPropName int i org.tmatesoft.svn.core.ISVNLogEntryHandler handler long limit String[] revPropNames public boolean isWantCustomRevprops () public boolean isCompatibleMode () protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException e String copyRevisionStr org.tmatesoft.svn.core.SVNNodeKind nodeKind String nodeKindStr org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs char type String copyPath long copyRevision protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNLogEntry logEntry NumberFormatException nfe String path org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata public long getEntriesCount () static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVLocationSegmentsHandler.class
DAVLocationSegmentsHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVLocationSegmentsHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOCATION_SEGMENTS_REPORT private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOCATION_SEGMENT private org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler myLocationSegmentHandler private long myCount public static java.lang.StringBuffer generateGetLocationSegmentsRequest (java.lang.StringBuffer, java.lang.String, long, long, long) StringBuffer xmlBuffer String path long pegRevision long startRevision long endRevision public void <init> (org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler) org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler handler public long getTotalRevisions () protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err long rangeStart long rangeEnd String path String revStr org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVLocationsHandler.class
DAVLocationsHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVLocationsHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOCATION_REPORT private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement LOCATION private org.tmatesoft.svn.core.io.ISVNLocationEntryHandler myLocationEntryHandler private int myCount public static java.lang.StringBuffer generateLocationsRequest (java.lang.StringBuffer, java.lang.String, long, long[]) int i StringBuffer xmlBuffer String path long pegRevision long[] revisions public void <init> (org.tmatesoft.svn.core.io.ISVNLocationEntryHandler) org.tmatesoft.svn.core.io.ISVNLocationEntryHandler handler protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe String path String revStr org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata public int getEntriesCount () static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVMergeHandler.class
DAVMergeHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVMergeHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { private org.tmatesoft.svn.core.io.ISVNWorkspaceMediator myMediator private java.util.Map myPathsMap private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement RESPONSE private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement POST_COMMIT_ERROR private String myAuthor private java.util.Date myCommitDate private long myRevision private String myRepositoryPath private String myVersionPath private org.tmatesoft.svn.core.internal.io.dav.DAVElement myResourceType private org.tmatesoft.svn.core.SVNCommitInfo myCommitInfo private org.tmatesoft.svn.core.SVNErrorMessage myPostCommitError public static java.lang.StringBuffer generateMergeRequest (java.lang.StringBuffer, java.lang.String, java.lang.String, java.util.Map) StringBuffer xmlBuffer String path String activityURL java.util.Map locks public static java.lang.StringBuffer generateLockDataRequest (java.lang.StringBuffer, java.lang.String, java.lang.String, java.util.Map) String relativePath String token String lockPath java.util.Iterator paths StringBuffer target String root String path java.util.Map locks public static boolean hasChildPaths (java.lang.String, java.util.Map) String lockPath java.util.Iterator paths String path java.util.Map locks public void <init> (org.tmatesoft.svn.core.io.ISVNWorkspaceMediator, java.util.Map) org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator java.util.Map pathsMap public org.tmatesoft.svn.core.SVNCommitInfo getCommitInfo () protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException String versionURLPropName org.tmatesoft.svn.core.SVNPropertyValue urlPropertyValue String reposPath String path NumberFormatException nfe org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVLockHandler.class
DAVLockHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVLockHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { private boolean myIsHandlingToken private String myID private String myComment private String myExpiration public static java.lang.StringBuffer generateGetLockRequest (java.lang.StringBuffer) StringBuffer body public static java.lang.StringBuffer generateSetLockRequest (java.lang.StringBuffer, java.lang.String) StringBuffer xmlBuffer String comment public void <init> () public java.lang.String getComment () public java.lang.String getExpiration () public java.lang.String getID () protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVEditorHandler$DeltaOutputStreamWrapper.class
DAVEditorHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$DeltaOutputStreamWrapper extends java.io.OutputStream { private boolean myIsDelta private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator myDeltaGenerator private String myPath final synthetic org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler this$0 public void <init> (org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler, boolean, java.lang.String) boolean isDelta String path public void write (int) throws java.io.IOException org.xml.sax.SAXException saxe org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ioeWrapper org.tmatesoft.svn.core.SVNException svne int b public void write (byte[], int, int) throws java.io.IOException int i org.xml.sax.SAXException saxe char[] chars byte[] target org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ioeWrapper org.tmatesoft.svn.core.SVNException svne byte[] b int off int len public void write (byte[]) throws java.io.IOException int i org.xml.sax.SAXException saxe char[] chars org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ioeWrapper org.tmatesoft.svn.core.SVNException svne byte[] b private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator getDeltaGenerator () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVFileRevisionHandler.class
DAVFileRevisionHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVFileRevisionHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVDeltaHandler { private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement REVISION_PROPERTY private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement FILE_REVISION private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SET_PROPERTY private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement DELETE_PROPERTY private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement MERGED_REVISION private org.tmatesoft.svn.core.io.ISVNFileRevisionHandler myFileRevisionsHandler private String myPath private long myRevision private org.tmatesoft.svn.core.SVNProperties myProperties private org.tmatesoft.svn.core.SVNProperties myPropertiesDelta private String myPropertyName private String myPropertyEncoding private boolean myIsMergedRevision private int myCount public static java.lang.StringBuffer generateFileRevisionsRequest (java.lang.StringBuffer, long, long, java.lang.String, boolean) StringBuffer xmlBuffer long startRevision long endRevision String path boolean includeMergedRevisions public void <init> (org.tmatesoft.svn.core.io.ISVNFileRevisionHandler) org.tmatesoft.svn.core.io.ISVNFileRevisionHandler handler protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe String revString org.tmatesoft.svn.core.io.SVNFileRevision revision org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNFileRevision revision org.tmatesoft.svn.core.SVNPropertyValue propertyValue org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata public int getEntriesCount () protected org.tmatesoft.svn.core.io.ISVNDeltaConsumer getDeltaConsumer () protected java.lang.String getCurrentPath () private void missingAttributeError (org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVElement element String attr org.tmatesoft.svn.core.SVNErrorMessage err static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/BasicDAVHandler.class
BasicDAVHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public abstract org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler extends org.xml.sax.helpers.DefaultHandler { protected static final java.util.Collection SVN_DAV_NAMESPACES_LIST protected static final java.util.Collection SVN_NAMESPACES_LIST protected static final java.util.Collection DAV_NAMESPACES_LIST private static final Object ROOT private java.util.Map myPrefixesMap private java.util.List myNamespacesCollection private String myNamespace private StringBuffer myCDATA private java.util.Stack myParent private byte[] myDeltaBuffer protected void <init> () private void setNamespace (java.lang.String) String uri protected void init () public void startElement (java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes) throws org.xml.sax.SAXException org.tmatesoft.svn.core.SVNException e String uri String localName String qName org.xml.sax.Attributes attributes org.tmatesoft.svn.core.internal.io.dav.DAVElement element public void endElement (java.lang.String, java.lang.String, java.lang.String) throws org.xml.sax.SAXException org.tmatesoft.svn.core.SVNException e String uri String localName String qName String namespace org.tmatesoft.svn.core.internal.io.dav.DAVElement element public void characters (char[], int, int) throws org.xml.sax.SAXException char[] ch int start int length public void startPrefixMapping (java.lang.String, java.lang.String) throws org.xml.sax.SAXException String prefix String uri java.util.Stack mappings public void endPrefixMapping (java.lang.String) throws org.xml.sax.SAXException String prefix java.util.Stack mappings protected abstract void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException protected abstract void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException protected void invalidXML () throws org.tmatesoft.svn.core.SVNException protected java.util.List getNamespaces () private org.tmatesoft.svn.core.internal.io.dav.DAVElement getParent () Object parent private org.tmatesoft.svn.core.internal.io.dav.DAVElement getDAVElement (java.lang.String, java.lang.String, java.lang.String) java.util.Stack prefixes String qName String localName String namespace String prefix int index protected org.tmatesoft.svn.core.SVNPropertyValue createPropertyValue (org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.String, java.lang.StringBuffer, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.UnsupportedEncodingException e org.tmatesoft.svn.core.internal.io.dav.DAVElement element String propertyName StringBuffer cdata String encoding byte[] rawValue protected org.tmatesoft.svn.core.SVNPropertyValue createPropertyValueFromBase64 (org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.String, java.lang.StringBuffer) java.io.UnsupportedEncodingException e String str org.tmatesoft.svn.core.internal.io.dav.DAVElement element String propertyName StringBuffer cdata StringBuffer sb byte[] buffer int length private boolean useStringProperty (org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.String) org.tmatesoft.svn.core.internal.io.dav.DAVElement element String propertyName String namespace protected byte[] allocateBuffer (int) int length static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVEditorHandler$1.class
DAVEditorHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers final org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$1 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporter { final synthetic StringBuffer val$report final synthetic java.util.Map val$lockTokens final synthetic org.tmatesoft.svn.core.internal.io.dav.DAVConnection val$connection void <init> (java.lang.StringBuffer, java.util.Map, org.tmatesoft.svn.core.internal.io.dav.DAVConnection) public void setPath (java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException String path String lockToken long revision boolean startEmpty public void deletePath (java.lang.String) String path public void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String path String lockToken long revision boolean startEmpty public void finishReport () public void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String path String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty java.util.Map attrs String linkedPath org.tmatesoft.svn.core.internal.io.dav.DAVBaselineInfo info public void setPath (java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException String path String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty java.util.Map attrs public void abortReport () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVErrorHandler.class
DAVErrorHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVErrorHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement SVN_ERROR private static final org.tmatesoft.svn.core.internal.io.dav.DAVElement ERROR_DATA private org.tmatesoft.svn.core.SVNErrorMessage myError private org.tmatesoft.svn.core.SVNErrorCode myErrorCode private String myErrorMessage public void <init> () public org.tmatesoft.svn.core.SVNErrorMessage getErrorMessage () protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe String errCode org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException String errorMessage org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata static void <clinit> () }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVMergeInfoHandler.class
DAVMergeInfoHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers public org.tmatesoft.svn.core.internal.io.dav.handlers.DAVMergeInfoHandler extends org.tmatesoft.svn.core.internal.io.dav.handlers.BasicDAVHandler { private String myPath private StringBuffer myCurrentInfo private java.util.Map myPathsToMergeInfos public static java.lang.StringBuffer generateMergeInfoRequest (java.lang.StringBuffer, long, java.lang.String[], org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean) int i StringBuffer xmlBuffer long revision String[] paths org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit boolean includeDescendants public void <init> () public java.util.Map getMergeInfo () protected void startElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.xml.sax.Attributes) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element org.xml.sax.Attributes attrs protected void endElement (org.tmatesoft.svn.core.internal.io.dav.DAVElement, org.tmatesoft.svn.core.internal.io.dav.DAVElement, java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException java.util.Map srcPathsToRangeLists org.tmatesoft.svn.core.internal.io.dav.DAVElement parent org.tmatesoft.svn.core.internal.io.dav.DAVElement element StringBuffer cdata }
org/tmatesoft/svn/core/internal/io/dav/handlers/DAVEditorHandler$2.class
DAVEditorHandler.java package org.tmatesoft.svn.core.internal.io.dav.handlers org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler$2 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNDeltaConsumer { final synthetic org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler this$0 void <init> (org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler) public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path }
org/tmatesoft/svn/core/internal/io/svn/
org/tmatesoft/svn/core/internal/io/svn/SVNItem.class
SVNItem.java package org.tmatesoft.svn.core.internal.io.svn public org.tmatesoft.svn.core.internal.io.svn.SVNItem extends java.lang.Object { public static final int WORD public static final int BYTES public static final int LIST public static final int NUMBER private int myKind private long myNumber private String myWord private byte[] myLine private java.util.Collection myItems public void <init> () public int getKind () public void setKind (int) int kind public long getNumber () public void setNumber (long) long number public java.lang.String getWord () public void setWord (java.lang.String) String word public byte[] getBytes () public void setLine (byte[]) byte[] line public java.util.Collection getItems () public void setItems (java.util.Collection) java.util.Collection items public java.lang.String toString () java.io.UnsupportedEncodingException e org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.Iterator elemenets StringBuffer result public boolean equals (java.lang.Object) long value long value Object o }
org/tmatesoft/svn/core/internal/io/svn/SVNTunnelConnector.class
SVNTunnelConnector.java package org.tmatesoft.svn.core.internal.io.svn public org.tmatesoft.svn.core.internal.io.svn.SVNTunnelConnector extends org.tmatesoft.svn.core.internal.io.svn.SVNAbstractTunnelConnector { private static final String TUNNEL_COMMAND private String myTunnelSpec private String myName public void <init> (java.lang.String, java.lang.String) String name String tunnelSpec public void open (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException String username org.tmatesoft.svn.core.auth.SVNAuthentication auth String userName org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository String expandedTunnel String host org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager private static java.lang.String expandTunnelSpec (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String name String tunnelSpec int spaceIndex String firstSegment String lastSegment public void handleExceptionOnOpen (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl, org.tmatesoft.svn.core.SVNException) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository org.tmatesoft.svn.core.SVNException exception }
org/tmatesoft/svn/core/internal/io/svn/SVNRepositoryImpl.class
SVNRepositoryImpl.java package org.tmatesoft.svn.core.internal.io.svn public org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl extends org.tmatesoft.svn.core.io.SVNRepository implements org.tmatesoft.svn.core.io.ISVNReporter { private static final String DIRENT_KIND private static final String DIRENT_SIZE private static final String DIRENT_HAS_PROPS private static final String DIRENT_CREATED_REV private static final String DIRENT_TIME private static final String DIRENT_LAST_AUTHOR private org.tmatesoft.svn.core.internal.io.svn.SVNConnection myConnection private String myRealm private String myExternalUserName protected void <init> (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.ISVNSession) org.tmatesoft.svn.core.SVNURL location org.tmatesoft.svn.core.io.ISVNSession options public void testConnection () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e public void setLocation (org.tmatesoft.svn.core.SVNURL, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL url boolean forceReconnect private boolean reparent (org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException Object[] buffer String newLocation String rootLocation org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL url public long getLatestRevision () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e Object[] buffer java.util.List values public long getDatedRevision (java.util.Date) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.util.Date date Object[] buffer java.util.List values public org.tmatesoft.svn.core.SVNProperties getRevisionProperties (long, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException java.util.List items org.tmatesoft.svn.core.SVNException e long revision org.tmatesoft.svn.core.SVNProperties properties Object[] buffer public org.tmatesoft.svn.core.SVNPropertyValue getRevisionPropertyValue (long, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e long revision String propertyName Object[] buffer java.util.List values byte[] bytes public org.tmatesoft.svn.core.SVNNodeKind checkPath (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException Object[] buffer java.util.List values org.tmatesoft.svn.core.SVNException e String path long revision protected int getLocationsImpl (java.lang.String, long, long[], org.tmatesoft.svn.core.io.ISVNLocationEntryHandler) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNErrorMessage err long revision String locationPath java.util.List values org.tmatesoft.svn.core.internal.io.svn.SVNItem item Object[] buffer org.tmatesoft.svn.core.SVNException e String path long pegRevision long[] revisions org.tmatesoft.svn.core.io.ISVNLocationEntryHandler handler int count protected long getLocationSegmentsImpl (java.lang.String, long, long, long, org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.util.List segmentAttrs long rangeStartRevision long rangeEndRevision String rangePath org.tmatesoft.svn.core.internal.io.svn.SVNItem item Object[] buffer boolean isDone org.tmatesoft.svn.core.SVNException e String path long pegRevision long startRevision long endRevision org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler handler long count public long getFile (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.security.NoSuchAlgorithmException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.io.svn.SVNItem item org.tmatesoft.svn.core.SVNErrorMessage err String resultChecksum Object[] buffer java.util.List values java.security.MessageDigest digest String expectedChecksum org.tmatesoft.svn.core.SVNException e String path long revision org.tmatesoft.svn.core.SVNProperties properties java.io.OutputStream contents Long rev public long getDir (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.ISVNDirEntryHandler handler public long getDir (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, int, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.List direntProps String name org.tmatesoft.svn.core.SVNNodeKind kind long size boolean hasProps long createdRevision java.util.Date createdDate String lastAuthor java.util.Iterator iterator org.tmatesoft.svn.core.SVNURL repositoryRoot java.util.List dirents String fullPath org.tmatesoft.svn.core.SVNURL url java.util.List individualProps Object[] buffer java.util.List values org.tmatesoft.svn.core.SVNException e String path long revision org.tmatesoft.svn.core.SVNProperties properties int entryFields org.tmatesoft.svn.core.ISVNDirEntryHandler handler Long rev public org.tmatesoft.svn.core.SVNDirEntry getDir (java.lang.String, long, boolean, java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.util.List direntProps org.tmatesoft.svn.core.SVNNodeKind kind long size boolean hasProps long createdRevision java.util.Date createdDate String lastAuthor org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.List direntProps String name org.tmatesoft.svn.core.SVNNodeKind kind long size boolean hasProps long createdRevision java.util.Date createdDate String lastAuthor java.util.Iterator iterator java.util.List dirents org.tmatesoft.svn.core.SVNDirEntry entry Long key String msg java.util.Iterator ents java.util.Map messages org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL repositoryRoot org.tmatesoft.svn.core.ISVNDirEntryHandler handler Object[] buffer java.util.List values org.tmatesoft.svn.core.SVNException e String path long revision boolean includeComment java.util.Collection entries Long rev org.tmatesoft.svn.core.SVNDirEntry parentEntry protected int getFileRevisionsImpl (java.lang.String, long, long, boolean, org.tmatesoft.svn.core.io.ISVNFileRevisionHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long revision org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.SVNProperties propertiesDelta boolean isMergedRevision org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err byte[] line org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.List items String name org.tmatesoft.svn.core.io.SVNFileRevision fileRevision org.tmatesoft.svn.core.internal.io.svn.SVNItem chunkItem boolean hasDelta org.tmatesoft.svn.core.SVNErrorMessage err Object[] buffer boolean hasRevision int count org.tmatesoft.svn.core.SVNException e String path long startRevision long endRevision boolean includeMergedRevisions org.tmatesoft.svn.core.io.ISVNFileRevisionHandler handler Long srev Long erev org.tmatesoft.svn.core.internal.delta.SVNDeltaReader deltaReader protected long logImpl (java.lang.String[], long, long, boolean, boolean, long, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException String propName int i Object[] realBuffer Object[] buffer org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem pathItem java.util.List pathItems String path String action String copyPath long copyRevision String kind java.util.Iterator iterator org.tmatesoft.svn.core.SVNErrorMessage err String name java.util.Iterator iterator String revPropName int i String author java.util.Date date String message boolean invalidRevision org.tmatesoft.svn.core.SVNLogEntry logEntry org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.List items java.util.List changedPathsList java.util.Map changedPathsMap long revision org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.SVNProperties logEntryProperties boolean hasChildren boolean isSubtractiveMerge String[] repositoryPaths Object[] buffer boolean wantCustomRevProps org.tmatesoft.svn.core.SVNException e String[] targetPaths long startRevision long endRevision boolean changedPaths boolean strictNode long limit boolean includeMergedRevisions String[] revisionPropertyNames org.tmatesoft.svn.core.ISVNLogEntryHandler handler long count int nestLevel long latestRev public void replay (long, long, boolean, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNEditModeReader editReader org.tmatesoft.svn.core.SVNException e long lowRevision long highRevision boolean sendDeltas org.tmatesoft.svn.core.io.ISVNEditor editor Object[] buffer public void setRevisionPropertyValue (long, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e long revision String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue byte[] bytes Object[] buffer public org.tmatesoft.svn.core.io.ISVNEditor getCommitEditor (java.lang.String, java.util.Map, boolean, org.tmatesoft.svn.core.io.ISVNWorkspaceMediator) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e String logMessage java.util.Map locks boolean keepLocks org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator public org.tmatesoft.svn.core.SVNLock getLock (java.lang.String) throws org.tmatesoft.svn.core.SVNException Object[] buffer java.util.List items org.tmatesoft.svn.core.SVNException e String path public org.tmatesoft.svn.core.SVNLock[] getLocks (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem item org.tmatesoft.svn.core.SVNLock lock java.util.Iterator iterator Object[] buffer java.util.List items java.util.Collection locks org.tmatesoft.svn.core.SVNException e String path public void lock (java.util.Map, java.lang.String, boolean, org.tmatesoft.svn.core.io.ISVNLockHandler) throws org.tmatesoft.svn.core.SVNException java.util.Iterator paths org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.util.List values String status java.util.List items org.tmatesoft.svn.core.SVNException e String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.Iterator paths org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem item Object[] buffer boolean done org.tmatesoft.svn.core.SVNException e java.util.Map pathsToRevisions String comment boolean force org.tmatesoft.svn.core.io.ISVNLockHandler handler private void lock12 (java.util.Map, java.lang.String, boolean, org.tmatesoft.svn.core.io.ISVNLockHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNLock lock String path Long revision Object[] buffer org.tmatesoft.svn.core.SVNErrorMessage error java.util.List items java.util.Iterator paths java.util.Map pathsToRevisions String comment boolean force org.tmatesoft.svn.core.io.ISVNLockHandler handler public void unlock (java.util.Map, boolean, org.tmatesoft.svn.core.io.ISVNLockHandler) throws org.tmatesoft.svn.core.SVNException java.util.Iterator paths org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.List values String status java.util.List items org.tmatesoft.svn.core.SVNException e String path String id org.tmatesoft.svn.core.SVNErrorMessage error java.util.Iterator paths org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem item Object[] buffer boolean done org.tmatesoft.svn.core.SVNException e java.util.Map pathToTokens boolean force org.tmatesoft.svn.core.io.ISVNLockHandler handler private void unlock12 (java.util.Map, boolean, org.tmatesoft.svn.core.io.ISVNLockHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err Object[] buffer java.util.List items org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNLock lock String path String id Object[] buffer org.tmatesoft.svn.core.SVNErrorMessage error java.util.Iterator paths java.util.Map pathToTokens boolean force org.tmatesoft.svn.core.io.ISVNLockHandler handler public org.tmatesoft.svn.core.SVNDirEntry info (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL repositoryRoot java.util.List values org.tmatesoft.svn.core.SVNNodeKind kind long size boolean hasProperties long createdRevision java.util.Date createdDate String lastAuthor String fullPath org.tmatesoft.svn.core.SVNURL url Object[] buffer org.tmatesoft.svn.core.SVNDirEntry entry java.util.List items org.tmatesoft.svn.core.SVNException e String path long revision void updateCredentials (java.lang.String, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException String uuid org.tmatesoft.svn.core.SVNURL rootURL protected void openConnection () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.ISVNConnector connector protected void closeConnection () public java.lang.String getRealm () void authenticate () throws org.tmatesoft.svn.core.SVNException private void write (java.lang.String, java.lang.Object[]) throws org.tmatesoft.svn.core.SVNException String template Object[] values private java.util.List read (java.lang.String, java.util.List, boolean) throws org.tmatesoft.svn.core.SVNException String template java.util.List values boolean readMalformedData private org.tmatesoft.svn.core.internal.io.svn.SVNItem readItem (boolean) throws org.tmatesoft.svn.core.SVNException boolean readMalformedData private java.util.List readTuple (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String template boolean readMalformedData public void setPath (java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException String path String lockToken long revision boolean startEmpty public void deletePath (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String path String lockToken long revision boolean startEmpty public void finishReport () throws org.tmatesoft.svn.core.SVNException public void abortReport () throws org.tmatesoft.svn.core.SVNException private java.lang.String[] getRepositoryPaths (java.lang.String[]) throws org.tmatesoft.svn.core.SVNException int i String[] paths String[] fullPaths public void setExternalUserName (java.lang.String) String userName public java.lang.String getExternalUserName () public void closeSession () org.tmatesoft.svn.core.SVNException e private void handleUnsupportedCommand (org.tmatesoft.svn.core.SVNException, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e String message public void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String path String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty public void setPath (java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException String path String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty public void diff (org.tmatesoft.svn.core.SVNURL, long, long, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNEditModeReader editReader org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL url long targetRevision long revision String target boolean ignoreAncestry org.tmatesoft.svn.core.SVNDepth depth boolean getContents org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor boolean recursive boolean hasTarget Object[] buffer public void status (long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNEditModeReader editReader org.tmatesoft.svn.core.SVNException e long revision String target org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor boolean recursive boolean hasTarget Object[] buffer public void update (org.tmatesoft.svn.core.SVNURL, long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNEditModeReader editReader org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL url long revision String target org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor boolean recursive boolean hasTarget Object[] buffer public void update (long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNEditModeReader editReader org.tmatesoft.svn.core.SVNException e long revision String target org.tmatesoft.svn.core.SVNDepth depth boolean sendCopyFromArgs org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor boolean hasTarget boolean recursive Object[] buffer protected java.util.Map getMergeInfoImpl (java.lang.String[], long, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.List values String path String mergeInfoToParse java.util.Map srcsToRangeLists org.tmatesoft.svn.core.SVNMergeInfo mergeInfo java.util.Iterator iterator String[] repositoryPaths Object[] buffer java.util.List items java.util.Map pathsToMergeInfos org.tmatesoft.svn.core.SVNException e String[] paths long revision org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit boolean includeDescendants public boolean hasCapability (org.tmatesoft.svn.core.io.SVNCapability) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.io.SVNCapability capability protected org.tmatesoft.svn.core.io.ISVNEditor getCommitEditorInternal (java.util.Map, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.io.ISVNWorkspaceMediator) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String logMessage org.tmatesoft.svn.core.SVNException e java.util.Map locks boolean keepLocks org.tmatesoft.svn.core.SVNProperties revProps org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator protected void replayRangeImpl (long, long, long, boolean, org.tmatesoft.svn.core.io.ISVNReplayHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.util.List items String word org.tmatesoft.svn.core.SVNProperties revProps org.tmatesoft.svn.core.io.ISVNEditor editor org.tmatesoft.svn.core.internal.io.svn.SVNEditModeReader editReader long rev org.tmatesoft.svn.core.SVNException svne long startRevision long endRevision long lowRevision boolean sendDeltas org.tmatesoft.svn.core.io.ISVNReplayHandler handler Object[] buffer protected long getDeletedRevisionImpl (java.lang.String, long, long) throws org.tmatesoft.svn.core.SVNException Long srev Long erev Object[] buffer java.util.List values org.tmatesoft.svn.core.SVNException e String path long pegRevision long endRevision private static boolean getRecurseFromDepth (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth private static java.lang.String ensureAbsolutePath (java.lang.String) String path private org.tmatesoft.svn.core.io.ISVNEditor getDepthFilterEditor (org.tmatesoft.svn.core.io.ISVNEditor, org.tmatesoft.svn.core.SVNDepth, boolean) org.tmatesoft.svn.core.io.ISVNEditor editor org.tmatesoft.svn.core.SVNDepth depth boolean hasTarget }
org/tmatesoft/svn/core/internal/io/svn/SVNPlainAuthenticator.class
SVNPlainAuthenticator.java package org.tmatesoft.svn.core.internal.io.svn public org.tmatesoft.svn.core.internal.io.svn.SVNPlainAuthenticator extends org.tmatesoft.svn.core.internal.io.svn.SVNAuthenticator { public void <init> (org.tmatesoft.svn.core.internal.io.svn.SVNConnection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNConnection connection public org.tmatesoft.svn.core.auth.SVNAuthentication authenticate (java.util.List, java.lang.String, org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e String message byte[] response java.io.IOException e java.util.List items String status org.tmatesoft.svn.core.internal.io.svn.CramMD5 authenticator java.util.List mechs String realm org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repos org.tmatesoft.svn.core.SVNErrorMessage failureReason org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.SVNURL location org.tmatesoft.svn.core.auth.SVNPasswordAuthentication auth protected org.tmatesoft.svn.core.SVNErrorMessage readAuthResponse () throws org.tmatesoft.svn.core.SVNException java.util.List items }
org/tmatesoft/svn/core/internal/io/svn/SVNSSHConnector.class
SVNSSHConnector.java package org.tmatesoft.svn.core.internal.io.svn public org.tmatesoft.svn.core.internal.io.svn.SVNSSHConnector extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.svn.ISVNConnector { private static final String SVNSERVE_COMMAND private static final String SVNSERVE_COMMAND_WITH_USER_NAME private static final boolean ourIsUseSessionPing private static org.tmatesoft.svn.core.internal.io.svn.ssh.SshSessionPool ourSessionPool private org.tmatesoft.svn.core.internal.io.svn.ssh.SshSession mySession private java.io.InputStream myInputStream private java.io.OutputStream myOutputStream private boolean myIsUseSessionPing public void <init> () public void <init> (boolean, boolean) boolean useConnectionPing boolean useSessionPing public void open (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.auth.ISVNSSHHostVerifier verifier String host int port String userName char[] privateKey char[] passphrase char[] password int connectTimeout com.trilead.ssh2.ServerHostKeyVerifier v org.tmatesoft.svn.core.SVNAuthenticationException e org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.io.svn.ssh.SshAuthenticationException auth org.tmatesoft.svn.core.SVNErrorMessage error java.io.IOException e org.tmatesoft.svn.core.auth.SVNAuthentication author String userName org.tmatesoft.svn.core.SVNErrorMessage err java.net.SocketTimeoutException e org.tmatesoft.svn.core.SVNErrorMessage err java.net.UnknownHostException e org.tmatesoft.svn.core.SVNErrorMessage err java.net.ConnectException e org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.auth.SVNSSHAuthentication authentication org.tmatesoft.svn.core.internal.io.svn.ssh.SshSession connection org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager String realm int reconnect public void close (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository public java.io.InputStream getInputStream () throws java.io.IOException public java.io.OutputStream getOutputStream () throws java.io.IOException public boolean isConnected (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repos public boolean isStale () java.io.IOException e public static void shutdown () public void handleExceptionOnOpen (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl, org.tmatesoft.svn.core.SVNException) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository org.tmatesoft.svn.core.SVNException exception static void <clinit> () }
org/tmatesoft/svn/core/internal/io/svn/SVNCommitEditor$ISVNCommitCallback.class
SVNCommitEditor.java package org.tmatesoft.svn.core.internal.io.svn public abstract org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$ISVNCommitCallback extends java.lang.Object { public abstract void run (org.tmatesoft.svn.core.SVNException) }
org/tmatesoft/svn/core/internal/io/svn/SVNCommitEditor$DirBaton.class
SVNCommitEditor.java package org.tmatesoft.svn.core.internal.io.svn final org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$DirBaton extends java.lang.Object { private String myToken public void <init> (int) int token public java.lang.String getToken () }
org/tmatesoft/svn/core/internal/io/svn/SVNConnection.class
SVNConnection.java package org.tmatesoft.svn.core.internal.io.svn public org.tmatesoft.svn.core.internal.io.svn.SVNConnection extends java.lang.Object { private final org.tmatesoft.svn.core.internal.io.svn.ISVNConnector myConnector private String myRealm private String myRoot private java.io.OutputStream myOutputStream private java.io.InputStream myInputStream private org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl myRepository private boolean myIsSVNDiff1 private boolean myIsCommitRevprops private boolean myIsReopening private boolean myIsCredentialsReceived private java.io.InputStream myLoggingInputStream private java.util.Set myCapabilities private byte[] myHandshakeBuffer private org.tmatesoft.svn.core.internal.io.svn.SVNAuthenticator myEncryptor private org.tmatesoft.svn.core.auth.SVNAuthentication myAuthentication private static final String EDIT_PIPELINE private static final String SVNDIFF1 private static final String ABSENT_ENTRIES private static final String COMMIT_REVPROPS private static final String MERGE_INFO private static final String DEPTH private static final String LOG_REVPROPS public void <init> (org.tmatesoft.svn.core.internal.io.svn.ISVNConnector, org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) org.tmatesoft.svn.core.internal.io.svn.ISVNConnector connector org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository public void open (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException th org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository public java.lang.String getRealm () public boolean isSVNDiff1 () public boolean isCommitRevprops () private java.io.InputStream skipLeadingGrabage (int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e int i int attempt byte[] bytes int r org.tmatesoft.svn.core.SVNErrorMessage err protected void handshake (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository java.io.InputStream is java.util.List items Long minVer Long maxVer java.util.List capabilities protected boolean hasCapability (java.lang.String) String capability public void authenticate (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.SVNException ex org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager java.util.List items java.util.List mechs org.tmatesoft.svn.core.internal.io.svn.SVNAuthenticator authenticator private org.tmatesoft.svn.core.internal.io.svn.SVNAuthenticator createSASLAuthenticator () throws org.tmatesoft.svn.core.SVNException private void addCapabilities (java.util.List) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.Iterator caps java.util.List capabilities private void receiveRepositoryCredentials (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException java.util.List capabilities org.tmatesoft.svn.core.SVNURL rootURL org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository java.util.List creds public void setEncrypted (org.tmatesoft.svn.core.internal.io.svn.SVNAuthenticator) org.tmatesoft.svn.core.internal.io.svn.SVNAuthenticator encryptor public boolean isEncrypted () public void close () throws org.tmatesoft.svn.core.SVNException public java.util.List read (java.lang.String, java.util.List, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e String template java.util.List items boolean readMalformedData public java.util.List readTuple (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e String template boolean readMalformedData public org.tmatesoft.svn.core.internal.io.svn.SVNItem readItem (boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e boolean readMalformedData private void handleIOError (org.tmatesoft.svn.core.SVNException, boolean) throws org.tmatesoft.svn.core.SVNException java.io.IOException e1 byte[] malfored org.tmatesoft.svn.core.SVNException e boolean readMalformedData public void writeError (org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String message org.tmatesoft.svn.core.SVNErrorMessage error Object[] buffer public void write (java.lang.String, java.lang.Object[]) throws org.tmatesoft.svn.core.SVNException java.io.IOException e org.tmatesoft.svn.core.SVNException e java.io.IOException e org.tmatesoft.svn.core.SVNException e String template Object[] items public boolean isConnectionStale () private void checkConnection () throws org.tmatesoft.svn.core.SVNException public java.io.OutputStream getDeltaStream (java.lang.String) String token java.io.OutputStream getOutputStream () throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.InputStream getInputStream () throws org.tmatesoft.svn.core.SVNException java.io.InputStream is java.io.IOException e void setOutputStream (java.io.OutputStream) java.io.OutputStream os void setInputStream (java.io.InputStream) java.io.InputStream is org.tmatesoft.svn.core.internal.io.svn.ISVNConnector getConnector () }
org/tmatesoft/svn/core/internal/io/svn/SVNDataSource.class
SVNDataSource.java package org.tmatesoft.svn.core.internal.io.svn org.tmatesoft.svn.core.internal.io.svn.SVNDataSource extends java.lang.Object { private java.io.InputStream myInputStream private long myLenght public void <init> (java.io.InputStream, long) java.io.InputStream is long length public java.io.InputStream getInputStream () public long lenght () }
org/tmatesoft/svn/core/internal/io/svn/SVNEditModeReader.class
SVNEditModeReader.java package org.tmatesoft.svn.core.internal.io.svn public org.tmatesoft.svn.core.internal.io.svn.SVNEditModeReader extends java.lang.Object { private static final java.util.Map COMMANDS_MAP private org.tmatesoft.svn.core.internal.io.svn.SVNConnection myConnection private org.tmatesoft.svn.core.io.ISVNEditor myEditor private org.tmatesoft.svn.core.internal.delta.SVNDeltaReader myDeltaReader private String myFilePath private boolean myDone private boolean myAborted private boolean myForReplay private java.util.Map myTokens public void <init> (org.tmatesoft.svn.core.internal.io.svn.SVNConnection, org.tmatesoft.svn.core.io.ISVNEditor, boolean) org.tmatesoft.svn.core.internal.io.svn.SVNConnection connection org.tmatesoft.svn.core.io.ISVNEditor editor boolean forReplay public boolean isAborted () private void storeToken (java.lang.String, boolean) String token boolean isFile private void lookupToken (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String token boolean isFile Boolean tokenType private void removeToken (java.lang.String) String token private void processCommand (java.lang.String, java.util.List) throws org.tmatesoft.svn.core.SVNException String token String path String path String copyFromPath String path byte[] bytes String propertyName String token String path String copyFromPath String path byte[] bytes String propertyName String token byte[] chunk java.util.List list org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.Iterator lists java.util.List items org.tmatesoft.svn.core.SVNErrorMessage error String commandName java.util.List params public void driveEditor () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage child org.tmatesoft.svn.core.SVNException e java.util.List parameters org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage error java.util.List items String commandName String template java.util.List items String command private java.util.List readTuple (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String template boolean readMalformedData static void <clinit> () }
org/tmatesoft/svn/core/internal/io/svn/SVNRepositoryImpl$3.class
SVNRepositoryImpl.java package org.tmatesoft.svn.core.internal.io.svn org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl$3 extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$ISVNCommitCallback { final synthetic org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl this$0 void <init> (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) public void run (org.tmatesoft.svn.core.SVNException) org.tmatesoft.svn.core.SVNException error }
org/tmatesoft/svn/core/internal/io/svn/SVNRepositoryFactoryImpl.class
SVNRepositoryFactoryImpl.java package org.tmatesoft.svn.core.internal.io.svn public final org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryFactoryImpl extends org.tmatesoft.svn.core.io.SVNRepositoryFactory { private static org.tmatesoft.svn.core.internal.io.svn.ISVNConnectorFactory ourConnectorFactory public void <init> () public static void setup () public static void setup (org.tmatesoft.svn.core.internal.io.svn.ISVNConnectorFactory) org.tmatesoft.svn.core.internal.io.svn.ISVNConnectorFactory connectorFactory public org.tmatesoft.svn.core.io.SVNRepository createRepositoryImpl (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.ISVNSession) org.tmatesoft.svn.core.SVNURL location org.tmatesoft.svn.core.io.ISVNSession options static org.tmatesoft.svn.core.internal.io.svn.ISVNConnectorFactory getConnectorFactory () }
org/tmatesoft/svn/core/internal/io/svn/SVNWriter.class
SVNWriter.java package org.tmatesoft.svn.core.internal.io.svn public org.tmatesoft.svn.core.internal.io.svn.SVNWriter extends java.lang.Object { private void <init> () public static void write (java.io.OutputStream, java.lang.String, java.lang.Object[]) throws org.tmatesoft.svn.core.SVNException char ch int i int read java.io.InputStream is long length byte[] buffer byte[] bytes int j Object[] list int j long[] list String path String token java.util.Iterator paths java.util.Map map String name org.tmatesoft.svn.core.SVNPropertyValue value byte[] bytes java.util.Iterator iterator org.tmatesoft.svn.core.SVNProperties props char ch Object item int i java.io.IOException e java.io.OutputStream os String templateStr Object[] src StringBuffer template int offset }
org/tmatesoft/svn/core/internal/io/svn/SVNReader.class
SVNReader.java package org.tmatesoft.svn.core.internal.io.svn public org.tmatesoft.svn.core.internal.io.svn.SVNReader extends java.lang.Object { private static final String DEAFAULT_ERROR_TEMPLATE private static final String DEFAULT_TEMPLATE private static final String UTF8_CHARSET_STRING public void <init> () public static java.util.Date getDate (java.util.List, int) java.util.List items int index String str public static long getLong (java.util.List, int) java.util.List items int index Object item public static boolean getBoolean (java.util.List, int) java.util.List items int index Object item public static java.util.List getList (java.util.List, int) org.tmatesoft.svn.core.internal.io.svn.SVNItem svnItem int i java.util.List list java.util.List items int index Object item public static org.tmatesoft.svn.core.SVNProperties getProperties (java.util.List, int, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.List propItems java.util.Iterator prop java.util.List items int index org.tmatesoft.svn.core.SVNProperties properties java.util.List props public static org.tmatesoft.svn.core.SVNProperties getPropertyDiffs (java.util.List, int, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.List values java.util.Iterator iterator java.util.List items int index org.tmatesoft.svn.core.SVNProperties diffs public static org.tmatesoft.svn.core.SVNLock getLock (java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.util.Collection items java.util.List values String path String token String owner String comment java.util.Date creationDate java.util.Date expirationDate public static java.lang.String getString (java.util.List, int) java.io.IOException e java.util.List items int index Object item public static byte[] getBytes (java.util.List, int) java.io.IOException e java.util.List items int index Object item private static java.util.List getItemList (java.util.List, int) java.util.List items int index public static boolean hasValue (java.util.List, int, java.lang.Object) Object element java.util.Iterator iter java.io.IOException e java.util.List items int index Object value public static org.tmatesoft.svn.core.internal.io.svn.SVNItem readItem (java.io.InputStream) throws org.tmatesoft.svn.core.SVNException java.io.InputStream is char ch public static java.util.List parse (java.io.InputStream, java.lang.String, java.util.List) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.InputStream is String template java.util.List values java.util.List readItems String word java.util.List list public static void handleFailureStatus (java.util.List) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem item org.tmatesoft.svn.core.SVNErrorMessage error int i java.util.List list org.tmatesoft.svn.core.SVNErrorMessage topError org.tmatesoft.svn.core.SVNErrorMessage parentError private static org.tmatesoft.svn.core.SVNErrorMessage getErrorMessage (org.tmatesoft.svn.core.internal.io.svn.SVNItem) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.svn.SVNItem item java.util.List errorItems int code org.tmatesoft.svn.core.SVNErrorCode errorCode String errorMessage public static java.util.List readTuple (java.io.InputStream, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.InputStream is String template char ch org.tmatesoft.svn.core.internal.io.svn.SVNItem item public static java.util.List parseTuple (java.lang.String, java.util.Collection, java.util.List) throws org.tmatesoft.svn.core.SVNException String template java.util.Collection items java.util.List values private static int parseTuple (java.lang.String, int, java.util.Collection, java.util.List) throws org.tmatesoft.svn.core.SVNException java.io.IOException e org.tmatesoft.svn.core.internal.io.svn.SVNItem item char ch java.util.Iterator iterator org.tmatesoft.svn.core.SVNErrorMessage err int nestingLevel org.tmatesoft.svn.core.SVNErrorMessage err String template int index java.util.Collection items java.util.List values private static org.tmatesoft.svn.core.internal.io.svn.SVNItem readItem (java.io.InputStream, org.tmatesoft.svn.core.internal.io.svn.SVNItem, char) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err int r int toRead org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e byte[] buffer long value long previousValue StringBuffer buffer org.tmatesoft.svn.core.internal.io.svn.SVNItem child org.tmatesoft.svn.core.SVNErrorMessage err java.io.InputStream is org.tmatesoft.svn.core.internal.io.svn.SVNItem item char ch private static char readChar (java.io.InputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.InputStream is int r private static char skipWhiteSpace (java.io.InputStream) throws org.tmatesoft.svn.core.SVNException char ch java.io.InputStream is }
org/tmatesoft/svn/core/internal/io/svn/SVNRepositoryImpl$1.class
SVNRepositoryImpl.java package org.tmatesoft.svn.core.internal.io.svn org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl$1 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNDirEntryHandler { final synthetic java.util.Collection val$entries final synthetic org.tmatesoft.svn.core.SVNURL val$url final synthetic org.tmatesoft.svn.core.SVNURL val$repositoryRoot final synthetic org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl this$0 void <init> (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl, java.util.Collection, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) public void handleDirEntry (org.tmatesoft.svn.core.SVNDirEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDirEntry dirEntry }
org/tmatesoft/svn/core/internal/io/svn/SVNAbstractTunnelConnector.class
SVNAbstractTunnelConnector.java package org.tmatesoft.svn.core.internal.io.svn public abstract org.tmatesoft.svn.core.internal.io.svn.SVNAbstractTunnelConnector extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.svn.ISVNConnector { private java.io.OutputStream myOutputStream private java.io.InputStream myInputStream private Process myProcess public void <init> () public void open (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException inner org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository String process public java.io.InputStream getInputStream () throws java.io.IOException public java.io.OutputStream getOutputStream () throws java.io.IOException public boolean isConnected (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repos public boolean isStale () public void close (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository public void free () public boolean occupy () }
org/tmatesoft/svn/core/internal/io/svn/ISVNConnectorFactory$1.class
ISVNConnectorFactory.java package org.tmatesoft.svn.core.internal.io.svn final org.tmatesoft.svn.core.internal.io.svn.ISVNConnectorFactory$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.svn.ISVNConnectorFactory { void <init> () public org.tmatesoft.svn.core.internal.io.svn.ISVNConnector createConnector (org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.ISVNConnector connector String name org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL location }
org/tmatesoft/svn/core/internal/io/svn/SVNCommitEditor.class
SVNCommitEditor.java package org.tmatesoft.svn.core.internal.io.svn org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private org.tmatesoft.svn.core.internal.io.svn.SVNConnection myConnection private org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl myRepository private org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$ISVNCommitCallback myCloseCallback private java.util.Stack myDirsStack private int myNextToken private java.util.Map myFilesToTokens private int myDiffWindowCount private boolean myIsAborted public void <init> (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl, org.tmatesoft.svn.core.internal.io.svn.SVNConnection, org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$ISVNCommitCallback) org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl location org.tmatesoft.svn.core.internal.io.svn.SVNConnection connection org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$ISVNCommitCallback closeCallback public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$DirBaton rootBaton public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$DirBaton parentBaton public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String rootURL String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$DirBaton parentBaton org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$DirBaton dirBaton public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$DirBaton parentBaton org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$DirBaton dirBaton public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$DirBaton dirBaton byte[] bytes public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$DirBaton dirBaton public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String host String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$DirBaton parentBaton String fileToken public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$DirBaton parentBaton String fileToken public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum String fileToken public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException java.io.IOException e String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow String fileToken public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String fileToken public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value String fileToken byte[] bytes public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String textChecksum String fileToken public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException java.util.List items long revision java.util.Date date String author String errorMessage org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e1 org.tmatesoft.svn.core.SVNException exception org.tmatesoft.svn.core.SVNException e public void abortEdit () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException error private static java.lang.Long getRevisionObject (long) long rev }
org/tmatesoft/svn/core/internal/io/svn/SVNAuthenticator.class
SVNAuthenticator.java package org.tmatesoft.svn.core.internal.io.svn public abstract org.tmatesoft.svn.core.internal.io.svn.SVNAuthenticator extends java.lang.Object { protected static final String SUCCESS protected static final String FAILURE protected static final String STEP private org.tmatesoft.svn.core.internal.io.svn.SVNConnection myConnection private java.io.OutputStream myConnectionOutputStream private java.io.InputStream myConnectionInputStream private org.tmatesoft.svn.core.SVNErrorMessage myLastError private java.io.InputStream myPlainInputStream private java.io.OutputStream myPlainOutputStream protected void <init> (org.tmatesoft.svn.core.internal.io.svn.SVNConnection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.io.svn.SVNConnection connection protected void setOutputStream (java.io.OutputStream) java.io.OutputStream os protected void setInputStream (java.io.InputStream) java.io.InputStream is protected java.io.InputStream getConnectionInputStream () protected java.io.OutputStream getConnectionOutputStream () protected java.io.InputStream getPlainInputStream () protected java.io.OutputStream getPlainOutputStream () protected org.tmatesoft.svn.core.internal.io.svn.SVNConnection getConnection () protected org.tmatesoft.svn.core.SVNErrorMessage getLastError () public void dispose () protected void setLastError (org.tmatesoft.svn.core.SVNErrorMessage) org.tmatesoft.svn.core.SVNErrorMessage err public abstract org.tmatesoft.svn.core.auth.SVNAuthentication authenticate (java.util.List, java.lang.String, org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/io/svn/ISVNConnector.class
ISVNConnector.java package org.tmatesoft.svn.core.internal.io.svn public abstract org.tmatesoft.svn.core.internal.io.svn.ISVNConnector extends java.lang.Object { public abstract void open (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException public abstract void handleExceptionOnOpen (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl, org.tmatesoft.svn.core.SVNException) throws org.tmatesoft.svn.core.SVNException public abstract boolean isConnected (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException public abstract void close (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException public abstract boolean isStale () public abstract java.io.OutputStream getOutputStream () throws java.io.IOException public abstract java.io.InputStream getInputStream () throws java.io.IOException }
org/tmatesoft/svn/core/internal/io/svn/SVNPlainConnector.class
SVNPlainConnector.java package org.tmatesoft.svn.core.internal.io.svn public org.tmatesoft.svn.core.internal.io.svn.SVNPlainConnector extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.svn.ISVNConnector { private static final int DEFAULT_SVN_TIMEOUT private java.net.Socket mySocket private java.io.OutputStream myOutputStream private java.io.InputStream myInputStream public void <init> () public void open (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException int connectTimeout int readTimeout org.tmatesoft.svn.core.SVNErrorMessage err java.net.SocketTimeoutException e org.tmatesoft.svn.core.SVNErrorMessage err java.net.UnknownHostException e org.tmatesoft.svn.core.SVNErrorMessage err java.net.ConnectException e org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository org.tmatesoft.svn.core.SVNURL location public void close (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.IOException e java.io.IOException ex org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository public boolean isStale () boolean result java.io.IOException e public boolean isConnected (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repos public java.io.InputStream getInputStream () throws java.io.IOException public java.io.OutputStream getOutputStream () throws java.io.IOException public void free () public boolean occupy () public void handleExceptionOnOpen (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl, org.tmatesoft.svn.core.SVNException) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository org.tmatesoft.svn.core.SVNException exception }
org/tmatesoft/svn/core/internal/io/svn/SVNConnection$1.class
SVNConnection.java package org.tmatesoft.svn.core.internal.io.svn org.tmatesoft.svn.core.internal.io.svn.SVNConnection$1 extends java.io.OutputStream { Object[] myPrefix final synthetic String val$token final synthetic org.tmatesoft.svn.core.internal.io.svn.SVNConnection this$0 void <init> (org.tmatesoft.svn.core.internal.io.svn.SVNConnection, java.lang.String) public void write (byte[], int, int) throws java.io.IOException org.tmatesoft.svn.core.SVNException e byte[] b int off int len public void write (byte[]) throws java.io.IOException byte[] b public void write (int) throws java.io.IOException int b }
org/tmatesoft/svn/core/internal/io/svn/ISVNConnectorFactory.class
ISVNConnectorFactory.java package org.tmatesoft.svn.core.internal.io.svn public abstract org.tmatesoft.svn.core.internal.io.svn.ISVNConnectorFactory extends java.lang.Object { public static final org.tmatesoft.svn.core.internal.io.svn.ISVNConnectorFactory DEFAULT public abstract org.tmatesoft.svn.core.internal.io.svn.ISVNConnector createConnector (org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException static void <clinit> () }
org/tmatesoft/svn/core/internal/io/svn/SVNRepositoryImpl$2.class
SVNRepositoryImpl.java package org.tmatesoft.svn.core.internal.io.svn org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl$2 extends java.lang.Object implements org.tmatesoft.svn.core.internal.io.svn.SVNCommitEditor$ISVNCommitCallback { final synthetic org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl this$0 void <init> (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) public void run (org.tmatesoft.svn.core.SVNException) org.tmatesoft.svn.core.SVNException error }
org/tmatesoft/svn/core/internal/io/svn/CramMD5.class
CramMD5.java package org.tmatesoft.svn.core.internal.io.svn public org.tmatesoft.svn.core.internal.io.svn.CramMD5 extends java.lang.Object { private org.tmatesoft.svn.core.auth.SVNPasswordAuthentication myCredentials public void <init> () public void setUserCredentials (org.tmatesoft.svn.core.auth.SVNPasswordAuthentication) org.tmatesoft.svn.core.auth.SVNPasswordAuthentication credentials public byte[] buildChallengeResponse (byte[]) throws java.io.IOException java.security.NoSuchAlgorithmException e int i int i int i byte[] challenge byte[] password byte[] secret java.security.MessageDigest digest byte[] result String hexDigest String response }
org/tmatesoft/svn/core/internal/io/svn/SVNSSHPrivateKeyUtil.class
SVNSSHPrivateKeyUtil.java package org.tmatesoft.svn.core.internal.io.svn public org.tmatesoft.svn.core.internal.io.svn.SVNSSHPrivateKeyUtil extends java.lang.Object { public void <init> () public static char[] readPrivateKey (java.io.File) int ch java.io.IOException e java.io.File privateKey java.io.Reader reader java.io.StringWriter buffer public static boolean isValidPrivateKey (char[], java.lang.String) java.io.IOException e char[] privateKey String passphrase }
org/tmatesoft/svn/core/internal/io/svn/SVNSSHConnector$1.class
SVNSSHConnector.java package org.tmatesoft.svn.core.internal.io.svn org.tmatesoft.svn.core.internal.io.svn.SVNSSHConnector$1 extends java.lang.Object implements com.trilead.ssh2.ServerHostKeyVerifier { final synthetic org.tmatesoft.svn.core.auth.ISVNSSHHostVerifier val$verifier final synthetic org.tmatesoft.svn.core.internal.io.svn.SVNSSHConnector this$0 void <init> (org.tmatesoft.svn.core.internal.io.svn.SVNSSHConnector, org.tmatesoft.svn.core.auth.ISVNSSHHostVerifier) public boolean verifyServerHostKey (java.lang.String, int, java.lang.String, byte[]) throws java.lang.Exception String hostname int port String serverHostKeyAlgorithm byte[] serverHostKey }
org/tmatesoft/svn/core/internal/io/svn/sasl/
org/tmatesoft/svn/core/internal/io/svn/sasl/SaslOutputStream.class
SaslOutputStream.java package org.tmatesoft.svn.core.internal.io.svn.sasl public org.tmatesoft.svn.core.internal.io.svn.sasl.SaslOutputStream extends java.io.OutputStream { private java.io.OutputStream myOut private javax.security.sasl.SaslClient myClient private byte[] myLengthBuffer private java.nio.ByteBuffer myBuffer public void <init> (javax.security.sasl.SaslClient, int, java.io.OutputStream) javax.security.sasl.SaslClient client int bufferSize java.io.OutputStream out public void write (int) throws java.io.IOException int b public void write (byte[]) throws java.io.IOException byte[] b public void write (byte[], int, int) throws java.io.IOException int toPut byte[] b int off int len public void close () throws java.io.IOException public void flush () throws java.io.IOException byte[] bytes int off int len byte[] encoded }
org/tmatesoft/svn/core/internal/io/svn/sasl/SaslInputStream.class
SaslInputStream.java package org.tmatesoft.svn.core.internal.io.svn.sasl public org.tmatesoft.svn.core.internal.io.svn.sasl.SaslInputStream extends java.io.InputStream { private java.io.InputStream mySource private javax.security.sasl.SaslClient myClient private byte[] myReadBuffer private java.nio.ByteBuffer myByteBuffer public void <init> (javax.security.sasl.SaslClient, int, java.io.InputStream) javax.security.sasl.SaslClient client int bufferSize java.io.InputStream in public void close () throws java.io.IOException public int read () throws java.io.IOException byte[] b int r public int read (byte[]) throws java.io.IOException byte[] b public int read (byte[], int, int) throws java.io.IOException int toCopy byte[] b int off int len int read public long skip (long) throws java.io.IOException long n private void fetchDecodedBuffer () throws java.io.IOException java.io.DataInputStream dis int encodedLength }
org/tmatesoft/svn/core/internal/io/svn/sasl/SVNSaslAuthenticator$SVNCallbackHandler.class
SVNSaslAuthenticator.java package org.tmatesoft.svn.core.internal.io.svn.sasl org.tmatesoft.svn.core.internal.io.svn.sasl.SVNSaslAuthenticator$SVNCallbackHandler extends java.lang.Object implements javax.security.auth.callback.CallbackHandler { private String myRealm private org.tmatesoft.svn.core.auth.SVNAuthentication myAuthentication public void <init> (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) String realm org.tmatesoft.svn.core.auth.SVNAuthentication auth public void handle (javax.security.auth.callback.Callback[]) throws java.io.IOException javax.security.auth.callback.UnsupportedCallbackException String userName String password javax.security.auth.callback.Callback callback int i javax.security.auth.callback.Callback[] callbacks }
org/tmatesoft/svn/core/internal/io/svn/sasl/SVNSaslAuthenticator.class
SVNSaslAuthenticator.java package org.tmatesoft.svn.core.internal.io.svn.sasl public org.tmatesoft.svn.core.internal.io.svn.sasl.SVNSaslAuthenticator extends org.tmatesoft.svn.core.internal.io.svn.SVNAuthenticator { private javax.security.sasl.SaslClient myClient private org.tmatesoft.svn.core.auth.ISVNAuthenticationManager myAuthenticationManager private org.tmatesoft.svn.core.auth.SVNAuthentication myAuthentication public void <init> (org.tmatesoft.svn.core.internal.io.svn.SVNConnection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.svn.SVNConnection connection public org.tmatesoft.svn.core.auth.SVNAuthentication authenticate (java.util.List, java.lang.String, org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) throws org.tmatesoft.svn.core.SVNException String m java.util.Iterator mech String realmName String mechName javax.security.sasl.SaslException e String realmName org.tmatesoft.svn.core.SVNErrorMessage error java.util.List mechs String realm org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository boolean failed boolean isAnonymous public void dispose () javax.security.sasl.SaslException e protected boolean tryAuthentication (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl, java.lang.String) throws javax.security.sasl.SaslException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err byte[] initialResponse String msg org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String responseStr java.util.List items String challenge byte[] challengeBytes byte[] response org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repos String mechName String initialChallenge boolean expectChallenge String status protected void setEncryption (org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl) NumberFormatException nfe NumberFormatException nfe java.io.IOException e int outBuffSize int inBuffSize java.io.OutputStream os java.io.InputStream is org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repository String qop String buffSizeStr String sendSizeStr protected javax.security.sasl.SaslClient createSaslClient (java.util.List, java.lang.String, org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException String name String realmName javax.security.sasl.SaslClientFactory clientFactory org.tmatesoft.svn.core.auth.SVNAuthentication auth javax.security.sasl.SaslException e String mech int i java.util.List mechs String realm org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl repos org.tmatesoft.svn.core.SVNURL location java.util.Map props String[] mechsArray javax.security.sasl.SaslClient client private static java.lang.String getFullRealmName (org.tmatesoft.svn.core.SVNURL, java.lang.String) org.tmatesoft.svn.core.SVNURL location String realm private static java.lang.String toBase64 (byte[]) byte[] src private static byte[] fromBase64 (java.lang.String) char ch int i java.io.UnsupportedEncodingException e int i String src java.io.ByteArrayOutputStream bos byte[] cbytes int clength byte[] result private static java.lang.String getMechanismName (javax.security.sasl.SaslClient, boolean) javax.security.sasl.SaslClient client boolean isAnonymous String name private static javax.security.sasl.SaslClientFactory getSaslClientFactory (java.lang.String, java.util.Map) int i javax.security.sasl.SaslClientFactory factory String[] mechs java.util.Enumeration factories String mechName java.util.Map props }
org/tmatesoft/svn/core/internal/io/svn/ssh/
org/tmatesoft/svn/core/internal/io/svn/ssh/SshConnection.class
SshConnection.java package org.tmatesoft.svn.core.internal.io.svn.ssh public org.tmatesoft.svn.core.internal.io.svn.ssh.SshConnection extends java.lang.Object { private com.trilead.ssh2.Connection myConnection private volatile int mySessionCount private org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost myHost private long myLastAccessTime public void <init> (org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost, com.trilead.ssh2.Connection) org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost host com.trilead.ssh2.Connection connection public org.tmatesoft.svn.core.internal.io.svn.ssh.SshSession openSession () throws java.io.IOException com.trilead.ssh2.Session session public void sessionClosed (org.tmatesoft.svn.core.internal.io.svn.ssh.SshSession) org.tmatesoft.svn.core.internal.io.svn.ssh.SshSession sshSession public int getSessionsCount () public void close () public long lastAcccessTime () }
org/tmatesoft/svn/core/internal/io/svn/ssh/SshHostDisposedException.class
SshHostDisposedException.java package org.tmatesoft.svn.core.internal.io.svn.ssh public org.tmatesoft.svn.core.internal.io.svn.ssh.SshHostDisposedException extends java.io.IOException { private static final long serialVersionUID public void <init> () }
org/tmatesoft/svn/core/internal/io/svn/ssh/SshHost$1.class
SshHost.java package org.tmatesoft.svn.core.internal.io.svn.ssh org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost$1 extends java.lang.Object implements com.trilead.ssh2.ServerHostKeyVerifier { final synthetic org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost this$0 void <init> (org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost) public boolean verifyServerHostKey (java.lang.String, int, java.lang.String, byte[]) throws java.lang.Exception String hostname int port String serverHostKeyAlgorithm byte[] serverHostKey }
org/tmatesoft/svn/core/internal/io/svn/ssh/SshHost.class
SshHost.java package org.tmatesoft.svn.core.internal.io.svn.ssh public org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost extends java.lang.Object { private static final long CONNECTION_INACTIVITY_TIMEOUT private static final long MAX_CONCURRENT_OPENERS private static final int MAX_SESSIONS_PER_CONNECTION private String myHost private int myPort private com.trilead.ssh2.ServerHostKeyVerifier myHostVerifier private char[] myPrivateKey private char[] myPassphrase private char[] myPassword private String myUserName private int myConnectTimeout private boolean myIsLocked private boolean myIsDisposed private java.util.List myConnections private Object myOpenerLock private int myOpenersCount public void <init> (java.lang.String, int) String host int port public void setHostVerifier (com.trilead.ssh2.ServerHostKeyVerifier) com.trilead.ssh2.ServerHostKeyVerifier verifier public void setConnectionTimeout (int) int timeout public void setCredentials (java.lang.String, char[], char[], char[]) String userName char[] key char[] passphrase char[] password public boolean purge () long timeout org.tmatesoft.svn.core.internal.io.svn.ssh.SshConnection connection java.util.Iterator connections int size long time public boolean isDisposed () public void setDisposed (boolean) org.tmatesoft.svn.core.internal.io.svn.ssh.SshConnection connection java.util.Iterator i$ boolean disposed public java.lang.String getKey () String key void lock () InterruptedException e void unlock () public org.tmatesoft.svn.core.internal.io.svn.ssh.SshSession openSession () throws java.io.IOException org.tmatesoft.svn.core.internal.io.svn.ssh.SshSession session org.tmatesoft.svn.core.internal.io.svn.ssh.SshConnection newConnection private org.tmatesoft.svn.core.internal.io.svn.ssh.SshSession useExistingConnection () throws java.io.IOException java.io.IOException e org.tmatesoft.svn.core.internal.io.svn.ssh.SshConnection connection java.util.Iterator connections private void removeOpener () private void addOpener () InterruptedException e private org.tmatesoft.svn.core.internal.io.svn.ssh.SshConnection openConnection () throws java.io.IOException int i String[] methods com.trilead.ssh2.Connection connection boolean authenticated String password String passphrase public java.lang.String toString () static synthetic com.trilead.ssh2.ServerHostKeyVerifier access$000 (org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost) org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost x0 }
org/tmatesoft/svn/core/internal/io/svn/ssh/SshAuthenticationException.class
SshAuthenticationException.java package org.tmatesoft.svn.core.internal.io.svn.ssh public org.tmatesoft.svn.core.internal.io.svn.ssh.SshAuthenticationException extends java.io.IOException { private static final long serialVersionUID public void <init> (java.lang.String) String message }
org/tmatesoft/svn/core/internal/io/svn/ssh/SshSessionPool$1.class
SshSessionPool.java package org.tmatesoft.svn.core.internal.io.svn.ssh org.tmatesoft.svn.core.internal.io.svn.ssh.SshSessionPool$1 extends java.util.TimerTask { final synthetic org.tmatesoft.svn.core.internal.io.svn.ssh.SshSessionPool this$0 void <init> (org.tmatesoft.svn.core.internal.io.svn.ssh.SshSessionPool) public void run () org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost host java.util.Iterator i$ java.util.Collection hosts }
org/tmatesoft/svn/core/internal/io/svn/ssh/SshHost$2.class
SshHost.java package org.tmatesoft.svn.core.internal.io.svn.ssh org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost$2 extends java.lang.Object implements com.trilead.ssh2.InteractiveCallback { final synthetic String val$password final synthetic org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost this$0 void <init> (org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost, java.lang.String) public java.lang.String[] replyToChallenge (java.lang.String, java.lang.String, int, java.lang.String[], boolean[]) throws java.lang.Exception int i String name String instruction int numPrompts String[] prompt boolean[] echo String[] reply }
org/tmatesoft/svn/core/internal/io/svn/ssh/SshSession.class
SshSession.java package org.tmatesoft.svn.core.internal.io.svn.ssh public org.tmatesoft.svn.core.internal.io.svn.ssh.SshSession extends java.lang.Object { private org.tmatesoft.svn.core.internal.io.svn.ssh.SshConnection myOwner private com.trilead.ssh2.Session mySession public void <init> (org.tmatesoft.svn.core.internal.io.svn.ssh.SshConnection, com.trilead.ssh2.Session) org.tmatesoft.svn.core.internal.io.svn.ssh.SshConnection owner com.trilead.ssh2.Session session public void close () public java.io.InputStream getOut () public java.io.InputStream getErr () public java.io.OutputStream getIn () public java.lang.Integer getExitCode () public java.lang.String getExitSignal () public void waitForCondition (int, long) int code long timeout public void execCommand (java.lang.String) throws java.io.IOException String command public void ping () throws java.io.IOException }
org/tmatesoft/svn/core/internal/io/svn/ssh/SshSessionPool.class
SshSessionPool.java package org.tmatesoft.svn.core.internal.io.svn.ssh public org.tmatesoft.svn.core.internal.io.svn.ssh.SshSessionPool extends java.lang.Object { private static final long PURGE_INTERVAL private java.util.Map myPool private java.util.Timer myTimer public void <init> () public void shutdown () org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost host java.util.Iterator i$ java.util.Collection hosts public org.tmatesoft.svn.core.internal.io.svn.ssh.SshSession openSession (java.lang.String, int, java.lang.String, char[], char[], char[], com.trilead.ssh2.ServerHostKeyVerifier, int) throws java.io.IOException org.tmatesoft.svn.core.internal.io.svn.ssh.SshHostDisposedException e String host int port String userName char[] privateKey char[] passphrase char[] password com.trilead.ssh2.ServerHostKeyVerifier verifier int connectTimeout org.tmatesoft.svn.core.internal.io.svn.ssh.SshHost sshHost org.tmatesoft.svn.core.internal.io.svn.ssh.SshSession session static synthetic java.util.Map access$000 (org.tmatesoft.svn.core.internal.io.svn.ssh.SshSessionPool) org.tmatesoft.svn.core.internal.io.svn.ssh.SshSessionPool x0 }
org/tmatesoft/svn/core/internal/delta/
org/tmatesoft/svn/core/internal/delta/SVNVDeltaAlgorithm.class
SVNVDeltaAlgorithm.java package org.tmatesoft.svn.core.internal.delta public org.tmatesoft.svn.core.internal.delta.SVNVDeltaAlgorithm extends org.tmatesoft.svn.core.internal.delta.SVNDeltaAlgorithm { private static final int VD_KEY_SIZE private org.tmatesoft.svn.core.internal.delta.SVNVDeltaAlgorithm$SlotsTable mySlotsTable public void <init> () public void computeDelta (byte[], int, byte[], int) int dataLength byte[] data int dataLength byte[] data byte[] a int aLength byte[] b int bLength int dataLength byte[] data org.tmatesoft.svn.core.internal.delta.SVNVDeltaAlgorithm$SlotsTable slotsTable private org.tmatesoft.svn.core.internal.delta.SVNVDeltaAlgorithm$SlotsTable getSlotsTable (int) int dataLength private void vdelta (org.tmatesoft.svn.core.internal.delta.SVNVDeltaAlgorithm$SlotsTable, byte[], int, int, boolean) int from int match int matchLength int last int currentMatch int currentMatchLength int key int slot boolean progress org.tmatesoft.svn.core.internal.delta.SVNVDeltaAlgorithm$SlotsTable table byte[] data int start int end boolean doOutput int here int insertFrom private int findMatchLength (byte[], int, int, int) byte[] data int match int from int end int here }
org/tmatesoft/svn/core/internal/delta/SVNDeltaAlgorithm.class
SVNDeltaAlgorithm.java package org.tmatesoft.svn.core.internal.delta public abstract org.tmatesoft.svn.core.internal.delta.SVNDeltaAlgorithm extends java.lang.Object { private java.nio.ByteBuffer myNewData private java.nio.ByteBuffer myData private int myNewDataLength private int myInstructionsLength private org.tmatesoft.svn.core.io.diff.SVNDiffInstruction myTemplateInstruction public void <init> () public void reset () public abstract void computeDelta (byte[], int, byte[], int) public java.nio.ByteBuffer getData () public int getInstructionsLength () public int getNewDataLength () protected void copyFromSource (int, int) int position int length protected void copyFromTarget (int, int) int position int length protected void copyFromNewData (byte[], int, int) byte[] data int offset int length private static java.nio.ByteBuffer ensureBufferSize (java.nio.ByteBuffer, int) java.nio.ByteBuffer newBuffer java.nio.ByteBuffer buffer int size }
org/tmatesoft/svn/core/internal/delta/SVNRangeTree.class
SVNRangeTree.java package org.tmatesoft.svn.core.internal.delta public org.tmatesoft.svn.core.internal.delta.SVNRangeTree extends java.lang.Object { private org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode myRoot private org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode myFreeTreeNodes private org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode myAllocatedTreeNodes private org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode myFreeListNodes private org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode myScratchNode public void <init> () private org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode allocateTreeNode (int, int, int) org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode node int offset int limit int target org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode node private void freeTreeNode (org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode) org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode allocated org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode node private org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode allocateListNode (int, int, int, int) int kind int offset int limit int target org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode node public void disposeList (org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode) org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode head org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode n public void dispose () org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode node public org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode buildRangeList (int, int) throws org.tmatesoft.svn.core.SVNException int targetOffset int offset int limit org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode tail org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode node private org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode appendToRangeList (int, int, int, int, org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode) int kind int offset int limit int tOffset org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode tail public void splay (int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode node org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode node org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode node org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode nodePointer org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode nodeOwner boolean isLeft int offset org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode root org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode scratch org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode left org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode right public void insert (int, int, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode node boolean haveToInsertRange org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode node int offset int limit int targetOffset private void cleanTree (int) org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode rightRight int offset int limit int topOffset org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode rightNode org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode owner boolean left private void deleteSubtree (org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode) org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode node }
org/tmatesoft/svn/core/internal/delta/SVNRangeTree$SVNRangeTreeNode.class
SVNRangeTree.java package org.tmatesoft.svn.core.internal.delta public org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode extends java.lang.Object { public int offset public int limit public int targetOffset public org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode left public org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode right public org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode prev public org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode next public org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeTreeNode nextFree public void <init> (int, int, int) int offset int limit int target public java.lang.String toString () String str }
org/tmatesoft/svn/core/internal/delta/SVNRangeTree$SVNRangeListNode.class
SVNRangeTree.java package org.tmatesoft.svn.core.internal.delta public org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode extends java.lang.Object { public static int FROM_SOURCE public static int FROM_TARGET public int kind public int offset public int limit public int targetOffset public org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode prev public org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode next public org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode head public void <init> (int, int, int, int) int kind int offset int limit int target public org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode append (org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode) org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode node static void <clinit> () }
org/tmatesoft/svn/core/internal/delta/SVNXDeltaAlgorithm.class
SVNXDeltaAlgorithm.java package org.tmatesoft.svn.core.internal.delta public org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm extends org.tmatesoft.svn.core.internal.delta.SVNDeltaAlgorithm { private static final int MATCH_BLOCK_SIZE private static int ADLER32_MASK public void <init> () public void computeDelta (byte[], int, byte[], int) int next org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$Match match int advance byte[] a int aLength byte[] b int bLength org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$PseudoAdler32 bAdler java.util.Map aMatchesTable int lo int size org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$Match previousInsertion private static org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$Match findMatch (java.util.Map, org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$PseudoAdler32, byte[], int, byte[], int, int, org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$Match) java.util.Map matchesTable org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$PseudoAdler32 checksum byte[] a int aLength byte[] b int bLength int bPos org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$Match previousInsertion org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$Match existingMatch private static java.util.Map createMatchesTable (byte[], int, int, org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$PseudoAdler32) int length Integer checksum int i byte[] data int dataLength int blockLength org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$PseudoAdler32 adler32 java.util.Map matchesTable private static boolean equals (byte[], int, int, int, byte[], int, int) int i byte[] a int aLength int aPos int length byte[] b int bLength int bPos static synthetic int access$000 () static void <clinit> () }
org/tmatesoft/svn/core/internal/delta/SVNXDeltaAlgorithm$Match.class
SVNXDeltaAlgorithm.java package org.tmatesoft.svn.core.internal.delta org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$Match extends java.lang.Object { public int position public int length public int advance public void <init> (int, int) int p int l }
org/tmatesoft/svn/core/internal/delta/SVNVDeltaAlgorithm$SlotsTable.class
SVNVDeltaAlgorithm.java package org.tmatesoft.svn.core.internal.delta org.tmatesoft.svn.core.internal.delta.SVNVDeltaAlgorithm$SlotsTable extends java.lang.Object { private int[] mySlots private int[] myBuckets private int myBucketsCount public void <init> () public void reset (int) int dataLength public int getBucketIndex (byte[], int) byte[] data int index int hash public int getBucket (int) int bucketIndex public void storeSlot (byte[], int) byte[] data int slotIndex int bucketIndex private static int[] allocate (int[], int) int[] array int length static synthetic int[] access$000 (org.tmatesoft.svn.core.internal.delta.SVNVDeltaAlgorithm$SlotsTable) org.tmatesoft.svn.core.internal.delta.SVNVDeltaAlgorithm$SlotsTable x0 }
org/tmatesoft/svn/core/internal/delta/SVNXDeltaAlgorithm$PseudoAdler32.class
SVNXDeltaAlgorithm.java package org.tmatesoft.svn.core.internal.delta org.tmatesoft.svn.core.internal.delta.SVNXDeltaAlgorithm$PseudoAdler32 extends java.lang.Object { private int myS1 private int myS2 private int myLength public void <init> () public void add (byte) byte b int z public void remove (byte) byte b int z public void add (byte[], int, int) int i byte[] data int offset int length public int getValue () public void reset () }
org/tmatesoft/svn/core/internal/delta/SVNDeltaCombiner$SVNOffsetsIndex.class
SVNDeltaCombiner.java package org.tmatesoft.svn.core.internal.delta org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner$SVNOffsetsIndex extends java.lang.Object { public int length public int[] offsets public void <init> () public void clear () public void addOffset (int) int[] newOffsets int offset }
org/tmatesoft/svn/core/internal/delta/SVNDeltaReader.class
SVNDeltaReader.java package org.tmatesoft.svn.core.internal.delta public org.tmatesoft.svn.core.internal.delta.SVNDeltaReader extends java.lang.Object { private java.nio.ByteBuffer myBuffer private int myHeaderBytes private long myLastSourceOffset private int myLastSourceLength private boolean myIsWindowSent private byte myVersion public void <init> () public void reset (java.lang.String, org.tmatesoft.svn.core.io.ISVNDeltaConsumer) throws org.tmatesoft.svn.core.SVNException java.io.OutputStream os String path org.tmatesoft.svn.core.io.ISVNDeltaConsumer consumer public void nextWindow (byte[], int, int, java.lang.String, org.tmatesoft.svn.core.io.ISVNDeltaConsumer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int remainging org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.ByteArrayOutputStream out int bufferPosition byte[] bytes java.nio.ByteBuffer decompressed long sourceOffset int sourceLength int targetLength int instructionsLength int newDataLength org.tmatesoft.svn.core.io.diff.SVNDiffWindow window int allDataLength int position java.io.OutputStream os int remains byte[] data int offset int length String path org.tmatesoft.svn.core.io.ISVNDeltaConsumer consumer private int deflate (int, java.io.OutputStream) throws java.io.IOException int offset int r byte[] uncompressedData byte[] compressed int offset java.io.InputStream in int read int compressedLength java.io.OutputStream out int originalPosition int uncompressedLength private void appendToBuffer (byte[], int, int) java.nio.ByteBuffer newBuffer byte[] data int offset int length int limit private int readOffset () byte b int offset private long readLongOffset () byte b long offset }
org/tmatesoft/svn/core/internal/delta/SVNDeltaCombiner.class
SVNDeltaCombiner.java package org.tmatesoft.svn.core.internal.delta public org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner extends java.lang.Object { private org.tmatesoft.svn.core.io.diff.SVNDiffWindow myWindow private java.nio.ByteBuffer myWindowData private java.nio.ByteBuffer myNextWindowInstructions private java.nio.ByteBuffer myNextWindowData private java.nio.ByteBuffer myTarget private java.nio.ByteBuffer myRealTarget private java.nio.ByteBuffer myReadWindowBuffer private org.tmatesoft.svn.core.internal.delta.SVNRangeTree myRangeTree private org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner$SVNOffsetsIndex myOffsetsIndex private org.tmatesoft.svn.core.io.diff.SVNDiffInstruction[] myWindowInstructions private org.tmatesoft.svn.core.io.diff.SVNDiffInstruction myInstructionTemplate public void <init> () public void reset () public org.tmatesoft.svn.core.io.diff.SVNDiffWindow readWindow (org.tmatesoft.svn.core.internal.io.fs.FSFile, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e int[] lenghts org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.io.fs.FSFile file int version long position long sourceOffset int sourceLength int targetLength int instructionsLength int dataLength org.tmatesoft.svn.core.io.diff.SVNDiffWindow window private int[] decompress (int, int) throws java.io.IOException byte[] compressedData java.util.zip.InflaterInputStream is int read byte[] compressedData java.util.zip.InflaterInputStream is int read int instructionsLength int dataLength int originalPosition int realInstructionsLength byte[] instructionsData byte[] data int realDataLength int compressedLength public void skipWindow (org.tmatesoft.svn.core.internal.io.fs.FSFile) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSFile file long position int instructionsLength int dataLength public java.nio.ByteBuffer addWindow (org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException java.nio.ByteBuffer result int tLength org.tmatesoft.svn.core.io.diff.SVNDiffWindow window private org.tmatesoft.svn.core.io.diff.SVNDiffWindow combineWindows (org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode range int offset int limit int tgt_off org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode listTail org.tmatesoft.svn.core.internal.delta.SVNRangeTree$SVNRangeListNode listHead org.tmatesoft.svn.core.io.diff.SVNDiffInstruction instruction java.util.Iterator instructions org.tmatesoft.svn.core.io.diff.SVNDiffWindow window int targetOffset org.tmatesoft.svn.core.internal.delta.SVNRangeTree rangeIndexTree int instrLength int newDataLength private void copySourceInstructions (int, int, int, org.tmatesoft.svn.core.io.diff.SVNDiffWindow, org.tmatesoft.svn.core.io.diff.SVNDiffInstruction[]) throws org.tmatesoft.svn.core.SVNException int oldOffset int oldLength int length int length int patternLength int patternOverlap int fix_off int tgt_off org.tmatesoft.svn.core.io.diff.SVNDiffInstruction instruction int off0 int off1 int fix_offset int fix_limit int i int offset int limit int targetOffset org.tmatesoft.svn.core.io.diff.SVNDiffWindow window org.tmatesoft.svn.core.io.diff.SVNDiffInstruction[] windowInsructions int firstInstuctionIndex int lastInstuctionIndex private void createOffsetsIndex (org.tmatesoft.svn.core.io.diff.SVNDiffInstruction[], int) org.tmatesoft.svn.core.io.diff.SVNDiffInstruction instruction int i org.tmatesoft.svn.core.io.diff.SVNDiffInstruction[] instructions int length int offset private int findInstructionIndex (org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner$SVNOffsetsIndex, int) throws org.tmatesoft.svn.core.SVNException int thisOffset int nextOffset org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner$SVNOffsetsIndex offsets int offset int lo int hi int op private java.nio.ByteBuffer clearBuffer (java.nio.ByteBuffer) java.nio.ByteBuffer b private java.nio.ByteBuffer ensureBufferSize (java.nio.ByteBuffer, int) java.nio.ByteBuffer data java.nio.ByteBuffer buffer int dataLength private int readOffset (java.nio.ByteBuffer) byte b java.nio.ByteBuffer buffer int offset private long readLongOffset (java.nio.ByteBuffer) byte b java.nio.ByteBuffer buffer long offset }
org/tmatesoft/svn/core/internal/wc/
org/tmatesoft/svn/core/internal/wc/SVNMergeCallback$1.class
SVNMergeCallback.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNMergeCallback$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { final synthetic org.tmatesoft.svn.core.wc.ISVNEventHandler val$oldEventHandler final synthetic org.tmatesoft.svn.core.internal.wc.SVNMergeCallback this$0 void <init> (org.tmatesoft.svn.core.internal.wc.SVNMergeCallback, org.tmatesoft.svn.core.wc.ISVNEventHandler) public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress }
org/tmatesoft/svn/core/internal/wc/SVNFileUtil$2.class
SVNFileUtil.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.SVNFileUtil$2 extends java.io.InputStream { void <init> () public int read () throws java.io.IOException }
org/tmatesoft/svn/core/internal/wc/SVNCopyDriver.class
SVNCopyDriver.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNCopyDriver extends org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate { private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess myWCAccess private boolean myIsDisableLocalModificationsCopying public void setDisableLocalModificationCopying (boolean) boolean disable protected void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options protected void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options protected void setWCAccess (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess getWCAccess () private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea probeOpen (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, boolean, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.io.File path boolean writeLock int depth private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea open (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, boolean, boolean, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.io.File path boolean writeLock boolean stealLock int depth private void close (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access protected org.tmatesoft.svn.core.wc.SVNCopySource[] expandCopySources (org.tmatesoft.svn.core.wc.SVNCopySource[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDirEntry entry java.util.Iterator ents org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] locations org.tmatesoft.svn.core.io.SVNRepository repository long revision java.util.Collection entries org.tmatesoft.svn.core.wc.SVNCopySource source int i org.tmatesoft.svn.core.wc.SVNCopySource[] sources java.util.Collection expanded private org.tmatesoft.svn.core.SVNCommitInfo copyReposToRepos (java.util.List, boolean, boolean, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.wc.ISVNCommitHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPathInfo info int i org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair int i org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPathInfo info int i org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPathInfo info int i org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPathInfo info org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] locations org.tmatesoft.svn.core.SVNNodeKind dstKind int i String itemURL org.tmatesoft.svn.core.wc.SVNCommitItem item java.util.Iterator newDirsIter org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPathInfo info org.tmatesoft.svn.core.SVNURL itemURL org.tmatesoft.svn.core.wc.SVNCommitItem item java.util.Iterator infos String dirPath org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPathInfo info java.util.Iterator newDirsIter org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPathInfo info java.util.Map mergeInfo java.util.Iterator infos String url int i String url org.tmatesoft.svn.core.SVNURL svnURL org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPathInfo info int i org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNCancelException cancel org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e java.util.List copyPairs boolean makeParents boolean isMove String message org.tmatesoft.svn.core.SVNProperties revprops org.tmatesoft.svn.core.wc.ISVNCommitHandler commitHandler java.util.List pathInfos java.util.Map pathsMap String commonURL String topDstURL org.tmatesoft.svn.core.io.SVNRepository nonTopRepos String rootURL java.util.List newDirs org.tmatesoft.svn.core.SVNURL oldLocation long latestRevision java.util.List paths java.util.List commitItems org.tmatesoft.svn.core.wc.SVNCommitItem[] commitables org.tmatesoft.svn.core.SVNURL topURL org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler committer org.tmatesoft.svn.core.SVNCommitInfo result private java.lang.String getUUIDFromPath (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String uuid private static void postCopyCleanup (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean deleted org.tmatesoft.svn.core.SVNNodeKind kind boolean force java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir java.util.Map attributes boolean save protected org.tmatesoft.svn.core.SVNCommitInfo setupCopy (org.tmatesoft.svn.core.wc.SVNCopySource[], org.tmatesoft.svn.core.internal.wc.SVNPath, boolean, boolean, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.wc.ISVNCommitHandler, org.tmatesoft.svn.core.wc.ISVNCommitParameters, org.tmatesoft.svn.core.wc.ISVNExternalsHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNCopySource source int i org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNCopySource source org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair String baseName int i org.tmatesoft.svn.core.wc.SVNCopySource source org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair String srcPath String dstPath java.util.Iterator ps org.tmatesoft.svn.core.SVNErrorMessage err java.io.File srcFile org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.util.Iterator ps java.io.File srcPath java.io.File dstPath boolean same Object p org.tmatesoft.svn.core.SVNURL srcURL org.tmatesoft.svn.core.SVNURL dstURL org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair boolean same Object p java.util.Iterator ps org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair java.util.Iterator ps org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.util.Iterator ps boolean needReposRevision boolean needReposPegRevision org.tmatesoft.svn.core.wc.SVNCopySource[] sources org.tmatesoft.svn.core.internal.wc.SVNPath dst boolean isMove boolean makeParents String message org.tmatesoft.svn.core.SVNProperties revprops org.tmatesoft.svn.core.wc.ISVNCommitHandler commitHandler org.tmatesoft.svn.core.wc.ISVNCommitParameters commitParameters org.tmatesoft.svn.core.wc.ISVNExternalsHandler externalsHandler java.util.List pairs boolean srcIsURL boolean dstIsURL private org.tmatesoft.svn.core.SVNCommitInfo copyWCToRepos (java.util.List, boolean, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.wc.ISVNCommitHandler, org.tmatesoft.svn.core.wc.ISVNCommitParameters, org.tmatesoft.svn.core.wc.ISVNExternalsHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair int i org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair int i String rootURL org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String dstRelativePath org.tmatesoft.svn.core.SVNNodeKind kind int i String newDirURL org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNCommitItem item int i org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNCommitItem item int i java.io.File file java.util.Iterator files org.tmatesoft.svn.core.SVNException e java.io.File file java.util.Iterator files org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dirArea String mergeInfoString org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.SVNExternal newExternal java.io.File externalWC org.tmatesoft.svn.core.internal.wc.admin.SVNEntry externalEntry org.tmatesoft.svn.core.wc.SVNRevision externalsWCRevision org.tmatesoft.svn.core.internal.wc.admin.SVNEntry ownerEntry org.tmatesoft.svn.core.SVNURL ownerURL org.tmatesoft.svn.core.SVNURL resolvedURL String unresolvedURL org.tmatesoft.svn.core.wc.SVNRevision[] revs int k String external java.util.Iterator externalsIter org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea String relativePath String itemURL String newExternalsProp org.tmatesoft.svn.core.wc.SVNCommitItem itemWithExternalsChanges java.io.File localPath String externalsPropString org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals boolean introduceVirtualExternalChange java.util.Iterator pathsIter java.util.LinkedList newExternals org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair source java.io.File srcFile org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dirArea java.util.Map sourceCommittables String basePath String sourcePath String path org.tmatesoft.svn.core.wc.SVNCommitItem item org.tmatesoft.svn.core.SVNURL srcURL java.util.Map mergeInfo java.util.Map wcMergeInfo int i org.tmatesoft.svn.core.SVNURL copyFromURL org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNURL expectedURL org.tmatesoft.svn.core.wc.SVNCommitItem item int i java.util.ArrayList harmlessItems String newDirURL org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNCommitItem item int i int i org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String topDstURL org.tmatesoft.svn.core.io.SVNRepository repos java.util.List newDirs java.util.List commitItems org.tmatesoft.svn.core.wc.SVNCommitItem[] commitables java.util.Map allCommitables java.util.Map pathsToExternalsProps org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.internal.wc.SVNCommitMediator mediator org.tmatesoft.svn.core.SVNURL rootURL java.io.File file java.util.Iterator files org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNCancelException cancel org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e java.io.File file java.util.Iterator files org.tmatesoft.svn.core.SVNException e java.io.File file java.util.Iterator files org.tmatesoft.svn.core.SVNException e java.util.List copyPairs boolean makeParents String message org.tmatesoft.svn.core.SVNProperties revprops org.tmatesoft.svn.core.wc.ISVNCommitHandler commitHandler org.tmatesoft.svn.core.wc.ISVNCommitParameters commitParameters org.tmatesoft.svn.core.wc.ISVNExternalsHandler externalsHandler String topSrc org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.SVNCommitInfo info org.tmatesoft.svn.core.io.ISVNEditor commitEditor java.util.Collection tmpFiles private void copyReposToWC (java.util.List, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] locations String actualURL String originalSource java.util.Iterator pairs org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair int i org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair java.util.Iterator pairs org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair String relativePath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc.SVNFileType dstType String dstParent org.tmatesoft.svn.core.internal.wc.SVNFileType dstParentFileType java.util.Iterator pairs org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry java.util.Iterator pairs org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair java.util.Iterator pairs String srcUUID String dstUUID String dstParent boolean sameRepos String reposPath org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess dstAccess java.util.List copyPairs boolean makeParents String topDst String topSrc org.tmatesoft.svn.core.io.SVNRepository topSrcRepos private void copyReposToWC (org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair, boolean, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dstArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstRootEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir java.util.Map srcMergeInfo org.tmatesoft.svn.core.SVNErrorMessage err String srcURL org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.internal.wc16.SVNUpdateClient16 updateClient java.io.File dstFile org.tmatesoft.svn.core.wc.SVNRevision srcRevision org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision String srcURL org.tmatesoft.svn.core.SVNURL url java.io.File dst org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir java.io.File tmpFile String path org.tmatesoft.svn.core.SVNProperties props java.io.OutputStream os long revision org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map mergeInfo org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair boolean sameRepositories org.tmatesoft.svn.core.io.SVNRepository topSrcRepos org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess dstAccess long srcRevNum private void copyWCToWC (java.util.List, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair java.io.File source org.tmatesoft.svn.core.internal.wc.SVNFileType srcFileType org.tmatesoft.svn.core.internal.wc.SVNFileType dstFileType java.io.File dstParent org.tmatesoft.svn.core.internal.wc.SVNFileType dstParentFileType java.util.Iterator pairs java.util.List copyPairs boolean isMove boolean makeParents protected void copyDisjointWCToWC (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry srcEntryInParent org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea nestedArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry nestedWCThisEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentThisEntry org.tmatesoft.svn.core.SVNURL nestedWCReposRoot String nestedWCPath org.tmatesoft.svn.core.SVNURL parentReposRoot String parentPath java.io.File nestedWC org.tmatesoft.svn.core.internal.wc.SVNFileType nestedWCType java.io.File nestedWCParent org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess parentWCAccess org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess nestedWCAccess private void copyDisjointDir (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File) throws org.tmatesoft.svn.core.SVNException java.util.Map attributes org.tmatesoft.svn.core.internal.wc.admin.SVNEntry nestedWCThisEntry java.io.File nestedWC org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess parentAccess java.io.File nestedWCParent org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 wcClient org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess nestedWCAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String copyFromURL long copyFromRevision private void copyWCToWC (java.util.List) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair String dstPath java.util.Iterator ps java.io.File sourceFile org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess srcAccess java.util.Iterator ps java.util.List pairs String dstParentPath org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess dstAccess private void moveWCToWC (java.util.List) throws org.tmatesoft.svn.core.SVNException String srcParentPath String dstParentPath org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair pair java.io.File srcParent java.io.File dstParent java.io.File sourceFile org.tmatesoft.svn.core.internal.wc.SVNFileType srcType org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess srcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess dstAccess java.util.Iterator ps java.util.List pairs private void copyFiles (java.io.File, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry srcEntry org.tmatesoft.svn.core.internal.wc.SVNFileType srcType java.io.File src java.io.File dstParent org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess dstAccess String dstName boolean move org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess srcAccess private void copyFileAdm (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.io.SVNLocationEntry location String copyFromURL long copyFromRevision String sourceLinkTarget String targetLinkTarget java.io.File tmpWCFile org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.SVNProperties command java.io.File src org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess srcAccess java.io.File dstParent org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess dstAccess String dstName boolean move java.io.File dst org.tmatesoft.svn.core.internal.wc.SVNFileType dstType org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry srcEntry String copyFromURL long copyFromRevision org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea srcDir String changelistName java.io.File srcBaseFile java.io.File dstBaseFile org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties srcBaseProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties srcWorkingProps org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dstDir org.tmatesoft.svn.core.wc.SVNEvent event private void copyAddedFileAdm (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String linkName java.io.File src org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess srcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess dstAccess java.io.File dstParent String dstName boolean isAdded java.io.File dst org.tmatesoft.svn.core.internal.wc.SVNFileType srcType private void copyDirAdm (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry org.tmatesoft.svn.core.io.SVNLocationEntry info java.util.Map attributes java.io.File src org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess srcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess dstAccess java.io.File dstParent String dstName java.io.File dst org.tmatesoft.svn.core.internal.wc.admin.SVNEntry srcEntry org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 wcClient org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess tgtAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String copyFromURL long copyFromRevision private void copyAddedDirAdm (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File fsEntry String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry int i org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea srcChildArea java.io.File[] entries java.io.File src org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess srcAccess java.io.File dstParent org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess dstParentAccess String dstName boolean isAdded java.io.File dst private void copyProps (java.io.File, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propNamesIter java.io.File src java.io.File dst org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess srcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess dstAccess org.tmatesoft.svn.core.internal.wc.admin.SVNEntry srcEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea srcArea org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties srcProps java.util.Collection propNames private org.tmatesoft.svn.core.io.SVNLocationEntry determineCopyFromInfo (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException String url long rev org.tmatesoft.svn.core.io.SVNLocationEntry info java.io.File src org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess srcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNEntry srcEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry String url long rev private org.tmatesoft.svn.core.io.SVNLocationEntry getCopyFromInfoFromParent (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.SVNException e java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.io.File parent String rest String url long rev private void addLocalParents (java.io.File, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File path org.tmatesoft.svn.core.wc.ISVNEventHandler handler boolean created org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 wcClient private void extendWCMergeInfo (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.util.Map, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map mergeInfo org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.util.Map wcMergeInfo private java.util.Map calculateTargetMergeInfo (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.io.SVNRepository, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.SVNURL oldLocation String mergeInfoPath java.io.File srcFile org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access org.tmatesoft.svn.core.SVNURL srcURL long srcRevision org.tmatesoft.svn.core.io.SVNRepository repository boolean noReposAccess boolean isLocallyAdded org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNURL url java.util.Map targetMergeInfo }
org/tmatesoft/svn/core/internal/wc/DefaultSVNPersistentAuthenticationProvider$GnomeKeyringPasswordStorage.class
DefaultSVNPersistentAuthenticationProvider.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$GnomeKeyringPasswordStorage extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage { final synthetic org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider this$0 protected void <init> (org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider) public java.lang.String getPassType () public boolean savePassword (java.lang.String, java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String realm String password org.tmatesoft.svn.core.auth.SVNAuthentication auth org.tmatesoft.svn.core.SVNProperties authParameters boolean nonInteractive org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider keyringPasswordProvider public java.lang.String readPassword (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String realm String userName org.tmatesoft.svn.core.SVNProperties authParameters boolean nonInteractive org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider keyringPasswordProvider public boolean savePassphrase (java.lang.String, java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication, org.tmatesoft.svn.core.SVNProperties, boolean) throws org.tmatesoft.svn.core.SVNException String realm String passphrase org.tmatesoft.svn.core.auth.SVNAuthentication auth org.tmatesoft.svn.core.SVNProperties authParameters boolean force boolean nonInteractive org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider keyringPasswordProvider public java.lang.String readPassphrase (java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String realm org.tmatesoft.svn.core.SVNProperties authParameters boolean nonInteractive org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider keyringPasswordProvider }
org/tmatesoft/svn/core/internal/wc/DefaultSVNPersistentAuthenticationProvider$SimplePasswordStorage.class
DefaultSVNPersistentAuthenticationProvider.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$SimplePasswordStorage extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage { final synthetic org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider this$0 protected void <init> (org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider) public java.lang.String getPassType () public boolean savePassword (java.lang.String, java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String realm String password org.tmatesoft.svn.core.auth.SVNAuthentication auth org.tmatesoft.svn.core.SVNProperties authParameters org.tmatesoft.svn.core.internal.wc.ISVNHostOptions opts public java.lang.String readPassword (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties) String realm String userName org.tmatesoft.svn.core.SVNProperties authParameters public boolean savePassphrase (java.lang.String, java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication, org.tmatesoft.svn.core.SVNProperties, boolean) throws org.tmatesoft.svn.core.SVNException String realm String passphrase org.tmatesoft.svn.core.auth.SVNAuthentication auth org.tmatesoft.svn.core.SVNProperties authParameters boolean force org.tmatesoft.svn.core.internal.wc.ISVNHostOptions opts public java.lang.String readPassphrase (java.lang.String, org.tmatesoft.svn.core.SVNProperties) String realm org.tmatesoft.svn.core.SVNProperties authParameters }
org/tmatesoft/svn/core/internal/wc/SVNAmbientDepthFilterEditor.class
SVNAmbientDepthFilterEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private org.tmatesoft.svn.core.io.ISVNEditor myDelegate private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess myWCAccess private java.io.File myAnchor private String myTarget private org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$DirBaton myCurrentDirBaton private org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$FileBaton myCurrentFileBaton private java.util.LinkedList myDirs public static org.tmatesoft.svn.core.io.ISVNEditor wrap (org.tmatesoft.svn.core.io.ISVNEditor, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, boolean) org.tmatesoft.svn.core.io.ISVNEditor editor org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info boolean depthIsSticky private void <init> (org.tmatesoft.svn.core.io.ISVNEditor, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, java.lang.String) org.tmatesoft.svn.core.io.ISVNEditor delegate org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File anchor String target public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$DirBaton parentBaton public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$DirBaton closedDir public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String textChecksum public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException java.io.File fullPath org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String path long revision public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$DirBaton parentBaton org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry long revision public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path private org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$FileBaton makeFileBaton (org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$DirBaton, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$DirBaton parentBaton String path org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$FileBaton fileBaton private org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$DirBaton makeDirBaton (java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$DirBaton) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String path org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$DirBaton parentBaton org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$DirBaton dirBaton }
org/tmatesoft/svn/core/internal/wc/SVNRemoteDiffEditor$SVNFileInfo.class
SVNRemoteDiffEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$SVNFileInfo extends java.lang.Object { protected String myRepositoryPath protected java.io.File myWCFile protected boolean myIsAdded protected boolean myIsSkip protected boolean myIsTreeConflicted protected java.io.File myFile protected java.io.File myBaseFile protected org.tmatesoft.svn.core.SVNProperties myBaseProperties protected org.tmatesoft.svn.core.SVNProperties myPropertyDiff final synthetic org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor, java.lang.String, boolean) String path boolean added public void loadFromRepository (long) throws org.tmatesoft.svn.core.SVNException long revision java.io.OutputStream os }
org/tmatesoft/svn/core/internal/wc/ISVNPersistentAuthenticationProvider.class
ISVNPersistentAuthenticationProvider.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNPersistentAuthenticationProvider extends java.lang.Object { public abstract void saveAuthentication (org.tmatesoft.svn.core.auth.SVNAuthentication, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void saveFingerprints (java.lang.String, byte[]) public abstract byte[] loadFingerprints (java.lang.String) }
org/tmatesoft/svn/core/internal/wc/SVNConfigFile.class
SVNConfigFile.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNConfigFile extends java.lang.Object { private java.io.File myFile private String[] myLines private long myLastModified public void <init> (java.io.File) java.io.File file protected java.lang.String[] getLines () public java.util.Map getProperties (java.lang.String) String line int i String propertyName java.util.Iterator names String groupName java.util.Map map boolean groupMatched java.util.Map result public java.lang.String getPropertyValue (java.lang.String, java.lang.String) String nextLine int j String firstLine String line int i String groupName String propertyName boolean groupMatched public void setPropertyValue (java.lang.String, java.lang.String, java.lang.String, boolean) String[] lines String line int i String[] lines String groupName String propertyName String propertyValue boolean save boolean groupMatched public void deleteGroup (java.lang.String, boolean) String line int i String groupName boolean save boolean groupMatched private static boolean matchGroup (java.lang.String, java.lang.String) String line String name private static boolean matchProperty (java.lang.String, java.lang.String) String line String name private static java.lang.String getPropertyValue (java.lang.String) String line private static java.lang.String getPropertyName (java.lang.String) String line public void save () String line int i java.io.IOException e java.io.Writer writer String eol private void load () public boolean isModified () String line int i String[] lines private java.lang.String[] doLoad (java.io.File) String line java.io.IOException e java.io.File file java.io.BufferedReader reader java.util.Collection lines public static void createDefaultConfiguration (java.io.File) java.io.File configDir java.io.File configFile java.io.File serversFile java.io.File readmeFile private static void writeFile (java.lang.String, java.io.File) String line java.io.IOException e org.tmatesoft.svn.core.SVNException e String url java.io.File configFile java.io.InputStream resource java.io.BufferedReader is String eol java.io.Writer os }
org/tmatesoft/svn/core/internal/wc/ISVNHostOptionsProvider.class
ISVNHostOptionsProvider.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNHostOptionsProvider extends java.lang.Object { public abstract org.tmatesoft.svn.core.internal.wc.ISVNHostOptions getHostOptions (org.tmatesoft.svn.core.SVNURL) }
org/tmatesoft/svn/core/internal/wc/DefaultLoadHandler$RevisionBaton.class
DefaultLoadHandler.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$RevisionBaton extends java.lang.Object { org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo myTxn org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot myTxnRoot long myRevision long myRevisionOffset org.tmatesoft.svn.core.SVNPropertyValue myDatestamp private org.tmatesoft.svn.core.internal.io.fs.FSCommitter myCommitter private org.tmatesoft.svn.core.internal.io.fs.FSDeltaConsumer myDeltaConsumer final synthetic org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler this$0 private void <init> (org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler) public org.tmatesoft.svn.core.internal.io.fs.FSDeltaConsumer getConsumer () public org.tmatesoft.svn.core.internal.io.fs.FSCommitter getCommitter () synthetic void <init> (org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler, org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$1) org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler x0 org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$1 x1 }
org/tmatesoft/svn/core/internal/wc/SVNMergeDriver$2.class
SVNMergeDriver.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$2 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { final synthetic java.util.List val$changedRevs final synthetic org.tmatesoft.svn.core.internal.wc.SVNMergeDriver this$0 void <init> (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver, java.util.List) public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry }
org/tmatesoft/svn/core/internal/wc/SVNStatusEditor$DefaultSVNStatusFileProvider.class
SVNStatusEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNStatusEditor$DefaultSVNStatusFileProvider extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNStatusFileProvider { private void <init> () public java.util.Map getChildrenFiles (java.io.File) int i java.util.Map map java.io.File parent java.io.File[] children synthetic void <init> (org.tmatesoft.svn.core.internal.wc.SVNStatusEditor$1) org.tmatesoft.svn.core.internal.wc.SVNStatusEditor$1 x0 }
org/tmatesoft/svn/core/internal/wc/SVNCommitUtil.class
SVNCommitUtil.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNCommitUtil extends java.lang.Object { public static final java.util.Comparator FILE_COMPARATOR public void <init> () public static void driveCommitEditor (org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler, java.util.Collection, org.tmatesoft.svn.core.io.ISVNEditor, long) throws org.tmatesoft.svn.core.SVNException String token java.util.StringTokenizer tokens String commitPath String commonAncestor String relativeCommitPath boolean closeDir org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler handler java.util.Collection paths org.tmatesoft.svn.core.io.ISVNEditor editor long revision String[] pathsArray int index int depth String lastPath public static org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess createCommitWCAccess (java.io.File[], org.tmatesoft.svn.core.SVNDepth, boolean, java.util.Collection, org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16) throws org.tmatesoft.svn.core.SVNException java.io.File file int i String relPath java.util.Iterator relPathsIter org.tmatesoft.svn.core.internal.wc.SVNFileType targetType String target String targetPath java.io.File targetFile org.tmatesoft.svn.core.internal.wc.SVNFileType targetKind java.util.Iterator targets String existingPath java.util.Iterator existing String pathToLock java.util.Iterator ps String path java.io.File pathFile java.util.Iterator nonRecusivePaths String path java.io.File pathFile java.util.Iterator recusivePaths java.util.List uniqueDirsToLockRecursively java.util.Map processedPaths org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNStatus status java.io.File path int i int j java.io.File dirRoot boolean keep org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry rootEntry int i org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea[] lockedDirs org.tmatesoft.svn.core.SVNException e java.io.File[] paths org.tmatesoft.svn.core.SVNDepth depth boolean force java.util.Collection relativePaths org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16 statusClient String[] validatedPaths String rootPath boolean lockAll java.io.File baseDir java.util.Collection dirsToLock java.util.Collection dirsToLockRecursively org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess baseAccess public static org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess[] createCommitWCAccess2 (java.io.File[], org.tmatesoft.svn.core.SVNDepth, boolean, java.util.Map, org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16) throws org.tmatesoft.svn.core.SVNException java.io.File path java.io.File rootPath java.io.File wcRoot java.util.Collection wcPaths int i java.io.File root java.util.Collection filesList java.io.File[] filesArray java.util.Collection relativePaths org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.util.Iterator roots org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.util.Iterator wcAccesses org.tmatesoft.svn.core.SVNException e java.io.File[] paths org.tmatesoft.svn.core.SVNDepth depth boolean force java.util.Map relativePathsMap org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16 statusClient java.util.Map rootsMap java.util.Map localRootsCache java.util.Collection result public static org.tmatesoft.svn.core.wc.SVNCommitItem[] harvestCommitables (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.util.Collection, java.util.Map, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, java.util.Collection, org.tmatesoft.svn.core.wc.ISVNCommitParameters) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry java.io.File parentDir org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e java.io.File parentFile org.tmatesoft.svn.core.SVNErrorMessage err boolean isRoot java.io.File pPath String target java.io.File targetFile String parentPath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String url org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.SVNDepth forcedDepth java.io.File ancestorPath org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess localAccess org.tmatesoft.svn.core.SVNErrorMessage err java.io.File file java.util.Iterator ds String name org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir java.io.File file String itemPath org.tmatesoft.svn.core.wc.SVNCommitItem item java.util.Iterator items org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess baseAccess java.util.Collection paths java.util.Map lockTokens boolean justLocked org.tmatesoft.svn.core.SVNDepth depth boolean force java.util.Collection changelists org.tmatesoft.svn.core.wc.ISVNCommitParameters params java.util.Map commitables java.util.Collection danglers java.util.Iterator targets boolean isRecursionForced public static void filterOutFileExternals (java.util.Collection, java.util.Map, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNCommitItem item org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator items java.util.Collection explicitPaths java.util.Map commitables org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess baseAccess public static org.tmatesoft.svn.core.SVNURL translateCommitables (org.tmatesoft.svn.core.wc.SVNCommitItem[], java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNCommitItem oldItem org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNCommitItem item int i org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNCommitItem root org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNCommitItem item String realPath java.util.Iterator iterator org.tmatesoft.svn.core.wc.SVNCommitItem[] items java.util.Map decodedPaths java.util.Map itemsMap java.util.Iterator urls org.tmatesoft.svn.core.SVNURL baseURL public static java.util.Map translateLockTokens (java.util.Map, java.lang.String) String url String token java.util.Iterator urls java.util.Map lockTokens String baseURL java.util.Map translatedLocks public static void harvestCommitables (java.util.Map, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.lang.String, java.lang.String, boolean, boolean, boolean, java.util.Map, org.tmatesoft.svn.core.SVNDepth, boolean, java.util.Collection, org.tmatesoft.svn.core.wc.ISVNCommitParameters, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childConflictingDir org.tmatesoft.svn.core.SVNErrorMessage err java.io.File entryPath org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc org.tmatesoft.svn.core.internal.wc.admin.SVNEntry conflictingEntry java.util.Iterator keys org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir java.util.Map tcs boolean propConflicts org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action action org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long parentRevision boolean switched org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNFileType addedFileType org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProps org.tmatesoft.svn.core.SVNProperties propDiff boolean eolChanged boolean charsetChanged org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProps org.tmatesoft.svn.core.SVNProperties propDiff boolean forceComparison org.tmatesoft.svn.core.wc.SVNCommitItem item String itemPath org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String externalsProperty org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.SVNCommitItem item String dirPath org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNCommitItem item String dirPath org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action action org.tmatesoft.svn.core.internal.wc.SVNFileType currentType org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry currentEntry String currentCFURL String currentURL java.io.File currentFile org.tmatesoft.svn.core.SVNDepth depthBelowHere java.util.Iterator ents java.util.Map commitables org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String url String copyFromURL boolean copyMode boolean addsOnly boolean justLocked java.util.Map lockTokens org.tmatesoft.svn.core.SVNDepth depth boolean forcedRecursion java.util.Collection changelists org.tmatesoft.svn.core.wc.ISVNCommitParameters params java.util.Map pathsToExternalsProperties long cfRevision String cfURL org.tmatesoft.svn.core.internal.wc.SVNFileType fileType boolean matchesChangelist String specialPropertyValue boolean specialFile boolean propConflicts boolean textConflicts boolean treeConflicts org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea entries boolean commitDeletion boolean commitAddition boolean commitCopy boolean textModified boolean propsModified boolean commitLock private static void collectLocks (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea child org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea child org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator ents org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea java.util.Map lockTokens private static void removeRedundantPaths (java.util.Collection, java.util.Collection) String existingPath java.util.Iterator recPaths String path java.util.Iterator paths java.util.Collection dirsToLockRecursively java.util.Collection dirsToLock java.util.Map processedDirs private static java.io.File adjustRelativePaths (java.io.File, java.util.Collection) throws org.tmatesoft.svn.core.SVNException String path java.util.Iterator paths java.util.List result String targetName java.io.File rootFile java.util.Collection relativePaths private static boolean isRecursiveCommitForced (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetEntry java.io.File directory org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public static java.lang.String validateCommitMessage (java.lang.String) String message static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/SVNDiffEditor$1.class
SVNDiffEditor.java package org.tmatesoft.svn.core.internal.wc synthetic org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc/DefaultSVNAuthenticationManager$SimpleProxyManager.class
DefaultSVNAuthenticationManager.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$SimpleProxyManager extends java.lang.Object implements org.tmatesoft.svn.core.auth.ISVNProxyManager { private String myProxyHost private String myProxyPort private String myProxyUser private String myProxyPassword public void <init> (java.lang.String, java.lang.String, java.lang.String, java.lang.String) String host String port String user String password public java.lang.String getProxyHost () public int getProxyPort () NumberFormatException nfe public java.lang.String getProxyUserName () public java.lang.String getProxyPassword () public void acknowledgeProxyContext (boolean, org.tmatesoft.svn.core.SVNErrorMessage) boolean accepted org.tmatesoft.svn.core.SVNErrorMessage errorMessage }
org/tmatesoft/svn/core/internal/wc/DefaultSVNPersistentAuthenticationProvider.class
DefaultSVNPersistentAuthenticationProvider.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider extends java.lang.Object implements org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider org.tmatesoft.svn.core.internal.wc.ISVNPersistentAuthenticationProvider { public static final String WINDOWS_CRYPTO_API_PASSWORD_STORAGE public static final String MAC_OS_KEYCHAIN_PASSWORD_STORAGE public static final String GNOME_KEYRING_PASSWORD_STORAGE public static final String SIMPLE_PASSTYPE public static final String WIN_CRYPT_PASSTYPE public static final String MAC_OS_KEYCHAIN_PASSTYPE public static final String GNOME_KEYRING_PASSTYPE private java.io.File myDirectory private String myUserName private org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage[] myPasswordStorages private org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions myAuthOptions private org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions myDefaultOptions private org.tmatesoft.svn.core.internal.wc.ISVNHostOptionsProvider myHostOptionsProvider static final synthetic boolean $assertionsDisabled protected void <init> (java.io.File, java.lang.String, org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions, org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions, org.tmatesoft.svn.core.internal.wc.ISVNHostOptionsProvider) java.io.File directory String userName org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions authOptions org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions defaultOptions org.tmatesoft.svn.core.internal.wc.ISVNHostOptionsProvider hostOptionsProvider protected org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage[] createPasswordStorages (org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions) String passwordStorageType int i org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions options java.util.List storages String[] passwordStorageTypes private org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage getPasswordStorage (java.lang.String) org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage passwordStorage int i String passType private org.tmatesoft.svn.core.auth.SVNPasswordAuthentication readSSLPassphrase (java.lang.String, java.lang.String, boolean, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.auth.SVNPasswordAuthentication auth org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.SVNWCProperties props java.io.File authFile int i String kind String realm boolean storageAllowed org.tmatesoft.svn.core.SVNURL url java.io.File dir java.io.File[] files java.util.Map matchedAuths org.tmatesoft.svn.core.auth.SVNPasswordAuthentication matchedAuth private org.tmatesoft.svn.core.auth.SVNPasswordAuthentication readSSLPassphrase (java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNWCProperties) throws org.tmatesoft.svn.core.SVNException String passphrase String expectedCertificatePath org.tmatesoft.svn.core.internal.wc.SVNWCProperties props org.tmatesoft.svn.core.SVNProperties values String storedRealm java.io.File expectedPath java.io.File storedPath String passType org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage passwordStorage String passphrase private java.lang.String readPassword (java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String realm String userName org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage passwordStorage org.tmatesoft.svn.core.SVNProperties authValues private java.lang.String readPassphrase (java.lang.String, org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String realm org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage passwordStorage org.tmatesoft.svn.core.SVNProperties authValues public org.tmatesoft.svn.core.auth.SVNAuthentication requestClientAuthentication (java.lang.String, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.auth.SVNAuthentication, boolean) String alias org.tmatesoft.svn.core.auth.SVNPasswordAuthentication passphrase String sslClientCertPassword java.io.File clientCertFile org.tmatesoft.svn.core.auth.SVNSSLAuthentication sslAuth org.tmatesoft.svn.core.internal.wc.ISVNHostOptions hostOptions String sslClientCert String password NumberFormatException nfe String passphrase int portNumber String password String alias org.tmatesoft.svn.core.auth.SVNPasswordAuthentication passphraseAuth String passphrase org.tmatesoft.svn.core.auth.SVNSSLAuthentication sslAuth org.tmatesoft.svn.core.SVNProperties values String storedRealm String passType org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage passwordStorage String userName String path String port String sslKind org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.SVNWCProperties props String kind org.tmatesoft.svn.core.SVNURL url String realm org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.auth.SVNAuthentication previousAuth boolean authMayBeStored java.io.File dir String fileName java.io.File authFile public boolean isMSCapi (java.lang.String) String filepath public void saveAuthentication (org.tmatesoft.svn.core.auth.SVNAuthentication, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.SVNWCProperties props org.tmatesoft.svn.core.auth.SVNAuthentication auth String kind String realm java.io.File dir org.tmatesoft.svn.core.SVNProperties values String fileName java.io.File authFile java.io.File tmpFile public int acceptServerAuthentication (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.Object, boolean) org.tmatesoft.svn.core.SVNURL url String r Object serverAuth boolean resultMayBeStored private boolean shouldSaveCredentials (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String kind org.tmatesoft.svn.core.SVNProperties newValues org.tmatesoft.svn.core.SVNProperties oldValues String newUsername String newPassType String newRealm org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage newPasswordStorage String newPassword String oldUsername String oldPassType String oldRealm org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage oldPasswordStorage String oldPassword private void saveUserNameCredential (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.auth.SVNAuthentication) org.tmatesoft.svn.core.SVNProperties values org.tmatesoft.svn.core.auth.SVNAuthentication auth private void savePasswordCredential (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.auth.SVNAuthentication, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage passwordStorage boolean saved int i org.tmatesoft.svn.core.auth.SVNPasswordAuthentication passwordAuth org.tmatesoft.svn.core.SVNProperties values org.tmatesoft.svn.core.auth.SVNAuthentication auth String realm String userName boolean storePasswords private void saveSSHCredential (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.auth.SVNAuthentication, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage passwordStorage boolean saved int i org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage passwordStorage boolean saved int i String path org.tmatesoft.svn.core.SVNProperties values org.tmatesoft.svn.core.auth.SVNAuthentication auth String realm org.tmatesoft.svn.core.auth.SVNSSHAuthentication sshAuth boolean storePasswords org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage storage int port private boolean saveSSLCredential (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.auth.SVNAuthentication, java.lang.String) throws org.tmatesoft.svn.core.SVNException String passphrase String passphrase String passphrase org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage passwordStorage boolean saved int i String path org.tmatesoft.svn.core.auth.SVNSSLAuthentication sslAuth org.tmatesoft.svn.core.SVNProperties values org.tmatesoft.svn.core.auth.SVNAuthentication auth String realm boolean storePassphrases boolean modified String passphrase public byte[] loadFingerprints (java.lang.String) String storedRealm org.tmatesoft.svn.core.SVNException e String realm java.io.File dir java.io.File file org.tmatesoft.svn.core.internal.wc.SVNWCProperties props org.tmatesoft.svn.core.SVNProperties values public void saveFingerprints (java.lang.String, byte[]) org.tmatesoft.svn.core.SVNException e String realm byte[] fingerprints java.io.File dir java.io.File file org.tmatesoft.svn.core.SVNProperties values static synthetic org.tmatesoft.svn.core.internal.wc.ISVNHostOptionsProvider access$000 (org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider) org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider x0 static synthetic org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions access$100 (org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider) org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider x0 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/DefaultDumpFilterHandler$NodeBaton.class
DefaultDumpFilterHandler.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$NodeBaton extends java.lang.Object { boolean myIsDoSkip boolean myHasProps boolean myHasText boolean myHasWritingBegun long myTextContentLength java.io.ByteArrayOutputStream myPropertiesBuffer java.io.ByteArrayOutputStream myHeaderBuffer final synthetic org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler) void writeProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String propName org.tmatesoft.svn.core.SVNPropertyValue propValue void writeToPropertyBuffer (java.lang.String) throws org.tmatesoft.svn.core.SVNException String data void writeToHeader (java.lang.String) throws org.tmatesoft.svn.core.SVNException String data }
org/tmatesoft/svn/core/internal/wc/SVNDiffEditor$SVNFileInfo.class
SVNDiffEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo extends java.lang.Object { private boolean myIsAdded private String myPath private java.io.File myFile private java.io.File myBaseFile private org.tmatesoft.svn.core.SVNProperties myPropertyDiff private void <init> () static synthetic org.tmatesoft.svn.core.SVNProperties access$600 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$602 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic java.lang.String access$700 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo x0 static synthetic boolean access$802 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo, boolean) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo x0 boolean x1 static synthetic boolean access$800 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo x0 static synthetic java.io.File access$902 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo, java.io.File) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo x0 java.io.File x1 static synthetic java.io.File access$1002 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo, java.io.File) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo x0 java.io.File x1 static synthetic java.io.File access$900 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo x0 static synthetic java.io.File access$1000 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo x0 synthetic void <init> (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$1) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$1 x0 static synthetic java.lang.String access$702 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo, java.lang.String) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo x0 String x1 }
org/tmatesoft/svn/core/internal/wc/DefaultLoadHandler.class
DefaultLoadHandler.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNLoadHandler { private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS private org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$RevisionBaton myCurrentRevisionBaton private org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$NodeBaton myCurrentNodeBaton private boolean myIsUsePreCommitHook private boolean myIsUsePostCommitHook private java.util.Map myRevisionsMap private String myParentDir private org.tmatesoft.svn.core.wc.admin.SVNUUIDAction myUUIDAction private org.tmatesoft.svn.core.internal.delta.SVNDeltaReader myDeltaReader private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator myDeltaGenerator private org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler myProgressHandler public void <init> (boolean, boolean, org.tmatesoft.svn.core.wc.admin.SVNUUIDAction, java.lang.String, org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler) boolean usePreCommitHook boolean usePostCommitHook org.tmatesoft.svn.core.wc.admin.SVNUUIDAction uuidAction String parentDir org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler progressHandler public void setFSFS (org.tmatesoft.svn.core.internal.io.fs.FSFS) org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void closeRevision () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne2 org.tmatesoft.svn.core.SVNException svne java.io.OutputStream os String message org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$RevisionBaton baton long oldRevision long newRevision java.io.File revProps String message public void openRevision (java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event String message java.util.Map headers long revision long headRevision public void openNode (java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event org.tmatesoft.svn.core.SVNErrorMessage err java.util.Map headers String message public void parseUUID (java.lang.String) throws org.tmatesoft.svn.core.SVNException long latestRevision String uuid public void closeNode () throws org.tmatesoft.svn.core.SVNException public void applyTextDelta () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSDeltaConsumer fsConsumer public void setFullText () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSDeltaConsumer fsConsumer public void parseTextBlock (java.io.InputStream, long, boolean) throws org.tmatesoft.svn.core.SVNException java.io.InputStream tgt int numRead int numToRead int read org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.internal.delta.SVNDeltaReader deltaReader org.tmatesoft.svn.core.SVNErrorMessage err String checksum byte[] buffer org.tmatesoft.svn.core.SVNException svne java.io.InputStream dumpStream long contentLength boolean isDelta org.tmatesoft.svn.core.internal.io.fs.FSDeltaConsumer fsConsumer public void removeNodeProperties () throws org.tmatesoft.svn.core.SVNException String propName java.util.Iterator propNames org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node org.tmatesoft.svn.core.SVNProperties props public void setRevisionProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException long youngestRevision String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public void setUsePreCommitHook (boolean) boolean use public void setUsePostCommitHook (boolean) boolean use public void setParentDir (java.lang.String) String parentDir public void setUUIDAction (org.tmatesoft.svn.core.wc.admin.SVNUUIDAction) org.tmatesoft.svn.core.wc.admin.SVNUUIDAction action public void deleteNodeProperty (java.lang.String) throws org.tmatesoft.svn.core.SVNException String propertyName public void setNodeProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException java.util.Map mergeInfo String mergeInfoString String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue private org.tmatesoft.svn.core.internal.delta.SVNDeltaReader getDeltaReader () private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator getDeltaGenerator () private boolean maybeAddWithHistory (org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$NodeBaton) throws org.tmatesoft.svn.core.SVNException Long revision org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode String hexDigest org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$NodeBaton nodeBaton long srcRevision Long copyFromRevision org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot copyRoot private org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$NodeBaton createNodeBaton (java.util.Map) throws org.tmatesoft.svn.core.SVNException String nodePath String action org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String copyFromPath java.util.Map headers org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$NodeBaton baton private java.util.Map renumberMergeInfoRevisions (org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange range Long revFromMap int i String mergeSource org.tmatesoft.svn.core.SVNMergeRangeList rangeList org.tmatesoft.svn.core.SVNMergeRange[] ranges java.util.Iterator mergeInfoIter org.tmatesoft.svn.core.SVNPropertyValue mergeInfoProp String mergeInfoString java.util.Map mergeInfo private java.util.Map prefixMergeInfoPaths (java.util.Map) String mergeSource org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator mergeInfoIter java.util.Map mergeInfo java.util.Map prefixedMergeInfo static synthetic org.tmatesoft.svn.core.internal.io.fs.FSFS access$200 (org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler) org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler x0 }
org/tmatesoft/svn/core/internal/wc/SVNErrorManager.class
SVNErrorManager.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNErrorManager extends java.lang.Object { public void <init> () public static void cancel (java.lang.String, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNCancelException String message org.tmatesoft.svn.util.SVNLogType logType public static void cancel (java.lang.String, java.util.logging.Level, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNCancelException String message java.util.logging.Level logLevel org.tmatesoft.svn.util.SVNLogType logType public static void authenticationFailed (java.lang.String, java.lang.Object) throws org.tmatesoft.svn.core.SVNAuthenticationException String message Object messageObject public static void authenticationFailed (java.lang.String, java.lang.Object, java.util.logging.Level) throws org.tmatesoft.svn.core.SVNAuthenticationException String message Object messageObject java.util.logging.Level logLevel org.tmatesoft.svn.core.SVNErrorMessage err public static void error (org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.util.SVNLogType logType public static void error (org.tmatesoft.svn.core.SVNErrorMessage, java.util.logging.Level, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.util.logging.Level logLevel org.tmatesoft.svn.util.SVNLogType logType public static void error (org.tmatesoft.svn.core.SVNErrorMessage, java.lang.Throwable, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err Throwable cause org.tmatesoft.svn.util.SVNLogType logType public static void error (org.tmatesoft.svn.core.SVNErrorMessage, java.lang.Throwable, java.util.logging.Level, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err Throwable cause java.util.logging.Level logLevel org.tmatesoft.svn.util.SVNLogType logType public static void error (org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.SVNErrorMessage err2 org.tmatesoft.svn.util.SVNLogType logType public static void error (org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.SVNErrorMessage, java.util.logging.Level, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.SVNErrorMessage err2 java.util.logging.Level logLevel org.tmatesoft.svn.util.SVNLogType logType public static void error (org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.SVNErrorMessage, java.lang.Throwable, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.SVNErrorMessage err2 Throwable cause org.tmatesoft.svn.util.SVNLogType logType public static void error (org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.SVNErrorMessage, java.lang.Throwable, java.util.logging.Level, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.SVNErrorMessage err2 Throwable cause java.util.logging.Level logLevel org.tmatesoft.svn.util.SVNLogType logType public static void assertionFailure (boolean, java.lang.String, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNException StackTraceElement[] stackTraceElements StackTraceElement callerStackElement String genericAssertionFailureReport org.tmatesoft.svn.core.SVNErrorMessage err Exception e boolean isTrueCondition String optionalMessage org.tmatesoft.svn.util.SVNLogType logType }
org/tmatesoft/svn/core/internal/wc/FSMergerBySequenceList.class
FSMergerBySequenceList.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.FSMergerBySequenceList extends java.lang.Object { private final java.util.List myBlocks private int myPosition public void <init> (java.util.List) java.util.List blocks public boolean hasCurrent () public de.regnis.q.sequence.QSequenceDifferenceBlock current () public boolean hasNext () public de.regnis.q.sequence.QSequenceDifferenceBlock peekNext () public void forward () }
org/tmatesoft/svn/core/internal/wc/SVNWCManager.class
SVNWCManager.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNWCManager extends java.lang.Object { public static final int SCHEDULE public static final int COPIED public static final int KEEP_LOCAL public void <init> () public static void add (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentDir org.tmatesoft.svn.core.SVNURL copyFromURL org.tmatesoft.svn.core.wc.SVNRevision copyFromRev org.tmatesoft.svn.core.SVNDepth depth public static void add (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String propPath java.io.File propFile org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNEntry pEntry org.tmatesoft.svn.core.SVNURL newURL org.tmatesoft.svn.core.SVNURL rootURL String uuid org.tmatesoft.svn.core.SVNURL rootURL org.tmatesoft.svn.core.SVNURL newURL boolean adminAreaExisted java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentDir org.tmatesoft.svn.core.SVNURL copyFromURL long copyFromRev org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean replace org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry java.util.Map command String name org.tmatesoft.svn.core.wc.SVNEvent event public static void markEntry (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.lang.String, boolean, boolean, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String schedule boolean copied boolean keepLocal int flags java.util.Map attributes java.io.File path public static void markTree (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, boolean, boolean, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String schedule boolean copied boolean keepLocal int flags java.util.Map attributes org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dirEntry public static void markTreeCancellable (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, boolean, boolean, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File path java.util.Iterator entries org.tmatesoft.svn.core.wc.SVNEvent event String entryName org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir java.util.Iterator dirs org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String schedule boolean copied boolean keepLocal int flags java.util.Map attributes java.util.Map recurseMap org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dirEntry public static void updateCleanup (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.lang.String, java.lang.String, long, boolean, java.util.Collection, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess String baseURL String rootURL long newRevision boolean removeMissingDirs java.util.Collection excludePaths org.tmatesoft.svn.core.SVNDepth depth boolean skipUnlocked org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry private static void tweakEntries (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.lang.String, long, boolean, java.util.Collection, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.SVNDepth depthBelowHere java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File childFile boolean isExcluded String childURL java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String baseURL String rootURL long newRevision boolean removeMissingDirs java.util.Collection excludePaths org.tmatesoft.svn.core.SVNDepth depth boolean skipUnlocked boolean write public static boolean ensureAdminAreaExists (java.io.File, java.lang.String, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNException e java.io.File path String url String rootURL String uuid long revision org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public static void canDelete (java.io.File, org.tmatesoft.svn.core.wc.ISVNOptions, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.ISVNOptions options org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.wc.SVNStatusClient statusClient public static void delete (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int i org.tmatesoft.svn.core.internal.wc.SVNExternal[] externals String externalProperty String name org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parent org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryInParent org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea root java.io.File path boolean deleteFiles boolean cancellable org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String schedule org.tmatesoft.svn.core.SVNNodeKind kind boolean copied boolean deleted String name org.tmatesoft.svn.core.wc.SVNEvent event public static void doDeleteUnversionedFiles (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File path boolean deleteFiles org.tmatesoft.svn.core.internal.wc.SVNFileType fileType public static void doEraseFromWC (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNNodeKind, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File childPath java.util.Iterator entries int i org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir java.util.Collection versioned java.io.File[] children java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.SVNNodeKind kind boolean deleteFiles org.tmatesoft.svn.core.internal.wc.SVNFileType type public static void addRepositoryFile (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.io.File, java.io.File, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String emptyPropPath String revertTextPath String baseTextPath String revertPropsPath String basePropsPath java.io.File tmpFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String fileName java.io.File text java.io.File textBase org.tmatesoft.svn.core.SVNProperties baseProperties org.tmatesoft.svn.core.SVNProperties properties String copyFromURL long copyFromRev org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry String newURL org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.SVNProperties entryAttrs java.io.File tmpTextBase String checksum public static void addProperties (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean, org.tmatesoft.svn.core.internal.wc.admin.SVNLog) throws org.tmatesoft.svn.core.SVNException String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator names String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propNames org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String fileName org.tmatesoft.svn.core.SVNProperties properties boolean base org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.SVNProperties regularProps org.tmatesoft.svn.core.SVNProperties entryProps org.tmatesoft.svn.core.SVNProperties wcProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props public static boolean isEntrySwitched (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File parent org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentAdminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.SVNURL parentSVNURL org.tmatesoft.svn.core.SVNURL entrySVNURL org.tmatesoft.svn.core.SVNURL expectedSVNURL public static void crop (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL expectedURL org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryInParent org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentDir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry boolean inRepos org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File fullPath org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetEntry public static java.lang.String getActualTarget (java.io.File) throws org.tmatesoft.svn.core.SVNException boolean isWCRoot org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNNodeKind kind java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public static void createRevertProperties (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties command String tmpPath java.io.File tmpFile org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.io.File path boolean removeBase org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String revertPropPath String basePropPath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc.admin.SVNLog log java.io.File basePropFile private static void cropChildren (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File entryPath org.tmatesoft.svn.core.wc.SVNEvent event java.util.Iterator ents org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File path org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dotEntry private static void handleLeftLocalModificationsError (org.tmatesoft.svn.core.SVNException) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException originalError org.tmatesoft.svn.core.SVNException error }
org/tmatesoft/svn/core/internal/wc/SVNMergeDriver$MergePath.class
SVNMergeDriver.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath extends java.lang.Object implements java.lang.Comparable { protected java.io.File myPath protected boolean myHasMissingChildren protected boolean myIsSwitched protected boolean myHasNonInheritableMergeInfo protected boolean myIsAbsent protected boolean myIsIndirectMergeInfo protected boolean myIsScheduledForDeletion public org.tmatesoft.svn.core.SVNMergeRangeList myRemainingRanges protected java.util.Map myPreMergeMergeInfo protected java.util.Map myImplicitMergeInfo final synthetic org.tmatesoft.svn.core.internal.wc.SVNMergeDriver this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver) public void <init> (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver, java.io.File) java.io.File path public int compareTo (java.lang.Object) Object obj org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath mergePath public boolean equals (java.lang.Object) Object obj public java.lang.String toString () }
org/tmatesoft/svn/core/internal/wc/SVNFileListUtil.class
SVNFileListUtil.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNFileListUtil extends java.lang.Object { public void <init> () private static java.lang.String[] list (java.io.File) int i java.io.File directory String[] fileNames String[] composedFileNames public static java.io.File[] listFiles (java.io.File) int i String[] fileNames java.io.File[] files java.io.File file String name int i java.io.File[] files java.io.File[] processed java.io.File directory java.io.File[] files private static java.io.File[] sort (java.io.File[]) int i java.io.File[] files java.util.Map map private static java.lang.String compose (java.lang.String) char chr int i int length String decomposedString StringBuffer buffer private static java.lang.StringBuffer compose (int, java.lang.String, java.lang.String, java.lang.String, java.lang.StringBuffer) int i String decomposedChars String composedChars String decomposedString StringBuffer buffer char previousChar int decomposedIndex }
org/tmatesoft/svn/core/internal/wc/SVNRemoteDiffEditor.class
SVNRemoteDiffEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor { protected org.tmatesoft.svn.core.io.SVNRepository myRepos protected long myRevision1 protected long myRevision2 protected java.io.File myTarget protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea myAdminArea protected boolean myIsDryRun protected org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor myDeltaProcessor protected org.tmatesoft.svn.core.wc.ISVNEventHandler myEventHandler protected org.tmatesoft.svn.core.wc.ISVNEventHandler myCancelHandler protected org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback myDiffCallback protected org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$SVNDirectoryInfo myCurrentDirectory protected org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$SVNFileInfo myCurrentFile protected java.io.File myTempDirectory protected java.util.Collection myTempFiles protected java.util.Map myDeletedPaths private boolean myIsUseGlobalTmp public void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.io.File, org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback, org.tmatesoft.svn.core.io.SVNRepository, long, long, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler, org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea java.io.File target org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback callback org.tmatesoft.svn.core.io.SVNRepository repos long revision1 long revision2 boolean dryRun org.tmatesoft.svn.core.wc.ISVNEventHandler handler org.tmatesoft.svn.core.wc.ISVNEventHandler cancelHandler public void reset (long, long) long revision1 long revision2 public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.SVNNodeKind nodeKind org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir protected void deleteEntry (java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$SVNFileInfo file String baseType String path org.tmatesoft.svn.core.SVNNodeKind nodeKind org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.wc.SVNStatusType type org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction expectedAction boolean[] isTreeConflicted protected void addDeletedPath (java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.wc.SVNEventAction, boolean) java.io.File deletedFile org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$KindActionState kas String path org.tmatesoft.svn.core.SVNNodeKind nodeKind org.tmatesoft.svn.core.wc.SVNStatusType type org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction expectedAction boolean isTreeConflicted public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$KindActionState kas org.tmatesoft.svn.core.wc.SVNEvent event String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$SVNDirectoryInfo parentDir boolean[] isTreeConflicted org.tmatesoft.svn.core.wc.SVNStatusType type public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$SVNDirectoryInfo parentDir boolean[] isTreeConflicted public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNException e boolean[] isTreeConflicted java.io.File deletedPath org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$KindActionState kas org.tmatesoft.svn.core.wc.SVNEvent event java.util.Iterator deletedPathsIter org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.wc.SVNStatusType type org.tmatesoft.svn.core.wc.SVNEventAction expectedAction org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String commitPath String name org.tmatesoft.svn.core.SVNPropertyValue value public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e String commitPath String baseChecksum org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String commitPath org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String commitPath public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String commitPath String textChecksum boolean[] isTreeConflicted protected void closeFile (java.lang.String, boolean, java.io.File, java.io.File, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, java.io.File, boolean[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNException e String baseMimeType String mimeType org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$KindActionState kas org.tmatesoft.svn.core.wc.SVNEvent event String commitPath boolean added java.io.File wcFile java.io.File file org.tmatesoft.svn.core.SVNProperties propertyDiff org.tmatesoft.svn.core.SVNProperties baseProperties java.io.File baseFile boolean[] isTreeConflicted org.tmatesoft.svn.core.wc.SVNEventAction expectedAction org.tmatesoft.svn.core.wc.SVNStatusType[] type public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File dir org.tmatesoft.svn.core.wc.SVNEvent event String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.wc.SVNEvent event String path public void cleanup () throws org.tmatesoft.svn.core.SVNException java.util.Iterator files protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea retrieve (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File path boolean lenient protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea retrieveParent (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean lenient protected org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback getDiffCallback () protected java.io.File getTempDirectory () throws org.tmatesoft.svn.core.SVNException protected java.io.File createTempFile (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File tmpFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String name protected org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$SVNFileInfo createFileInfo (java.lang.String, boolean) String path boolean added protected void setIsConflicted (boolean[], boolean) boolean[] isConflictedResult boolean isConflicted public void setUseGlobalTmp (boolean) boolean global static synthetic boolean access$000 (org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor) org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor x0 }
org/tmatesoft/svn/core/internal/wc/SVNAmbientDepthFilterEditor$DirBaton.class
SVNAmbientDepthFilterEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$DirBaton extends java.lang.Object { boolean myIsAmbientlyExcluded org.tmatesoft.svn.core.SVNDepth myAmbientDepth java.io.File myPath final synthetic org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor this$0 private void <init> (org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor) synthetic void <init> (org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor, org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$1) org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor x0 org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$1 x1 }
org/tmatesoft/svn/core/internal/wc/DefaultSVNAuthenticationManager$1.class
DefaultSVNAuthenticationManager.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorage { private java.util.Map myData final synthetic org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager this$0 void <init> (org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager) public void putData (java.lang.String, java.lang.String, java.lang.Object) String kind String realm Object data public java.lang.Object getData (java.lang.String, java.lang.String) String kind String realm }
org/tmatesoft/svn/core/internal/wc/SVNRemoteStatusEditor$FileInfo.class
SVNRemoteStatusEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$FileInfo extends java.lang.Object { public org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo myParent public java.io.File myPath public String myName public org.tmatesoft.svn.core.SVNURL myURL public boolean myIsAdded public boolean myIsContentsChanged public boolean myIsPropertiesChanged public org.tmatesoft.svn.core.wc.SVNRevision myRemoteRevision public java.util.Date myRemoteDate public String myRemoteAuthor public org.tmatesoft.svn.core.SVNNodeKind myRemoteKind final synthetic org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor, org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo parent String path boolean added }
org/tmatesoft/svn/core/internal/wc/DefaultSVNAuthenticationManager$ExtendedHostOptionsProvider.class
DefaultSVNAuthenticationManager.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$ExtendedHostOptionsProvider extends org.tmatesoft.svn.core.internal.wc.DefaultSVNHostOptionsProvider { final synthetic org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager) public org.tmatesoft.svn.core.internal.wc.ISVNHostOptions getHostOptions (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url }
org/tmatesoft/svn/core/internal/wc/ISVNMergeStrategy.class
ISVNMergeStrategy.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNMergeStrategy extends java.lang.Object { public abstract org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor getMergeReportEditor (long, long, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback, org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor driveMergeReportEditor (java.io.File, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, java.util.List, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.SVNMergeCallback, org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler getMergeInfoEntryHandler (java.lang.String, org.tmatesoft.svn.core.SVNURL, long, long, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNDepth, java.util.List) public abstract boolean isRecordMergeInfo () public abstract java.lang.Object[] calculateRemainingRangeList (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.SVNURL, boolean[], org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNMergeRange) throws org.tmatesoft.svn.core.SVNException public abstract java.util.Map calculateImplicitMergeInfo (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNURL, long[], long, long) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/SVNTreeConflictUtil.class
SVNTreeConflictUtil.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNTreeConflictUtil extends java.lang.Object { public void <init> () public static java.util.Map readTreeConflicts (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.UnsupportedEncodingException e java.io.File dirPath String conflictData byte[] data public static java.util.Map readTreeConflicts (java.io.File, byte[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.util.SVNSkel conflictSkel org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict java.util.Iterator iterator java.io.File dirPath byte[] conflictData java.util.Map conflicts org.tmatesoft.svn.core.internal.util.SVNSkel skel public static org.tmatesoft.svn.core.wc.SVNTreeConflictDescription readSingleTreeConflict (org.tmatesoft.svn.core.internal.util.SVNSkel, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.util.SVNSkel skel java.io.File dirPath String victimBasename org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNOperation operation org.tmatesoft.svn.core.wc.SVNConflictAction action org.tmatesoft.svn.core.wc.SVNConflictReason reason org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcLeftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcRightVersion private static org.tmatesoft.svn.core.internal.wc.SVNConflictVersion readConflictVersion (org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.util.SVNSkel skel String repoURLString org.tmatesoft.svn.core.SVNURL repoURL long pegRevision String path org.tmatesoft.svn.core.SVNNodeKind kind private static boolean isValidVersionInfo (org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.util.SVNSkel skel private static boolean isValidConflict (org.tmatesoft.svn.core.internal.util.SVNSkel) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.util.SVNSkel element int i org.tmatesoft.svn.core.internal.util.SVNSkel skel public static java.lang.String getTreeConflictData (java.util.Map) throws org.tmatesoft.svn.core.SVNException java.io.UnsupportedEncodingException e java.util.Map conflicts byte[] rawData String conflictData public static byte[] getTreeConflictRawData (java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict org.tmatesoft.svn.core.internal.util.SVNSkel conflictSkel java.util.Iterator iterator java.util.Map conflicts org.tmatesoft.svn.core.internal.wc.SVNConflictVersion nullVersion org.tmatesoft.svn.core.internal.util.SVNSkel skel public static java.lang.String getSingleTreeConflictData (org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) throws org.tmatesoft.svn.core.SVNException java.io.UnsupportedEncodingException e org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict byte[] rawData String conflictData public static byte[] getSingleTreeConflictRawData (org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict org.tmatesoft.svn.core.internal.wc.SVNConflictVersion nullVersion org.tmatesoft.svn.core.internal.util.SVNSkel conflictSkel public static org.tmatesoft.svn.core.internal.util.SVNSkel getConflictSkel (org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.wc.SVNConflictVersion nullVersion org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict org.tmatesoft.svn.core.internal.util.SVNSkel conflictSkel org.tmatesoft.svn.core.internal.wc.SVNConflictVersion sourceRightVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion sourceLeftVersion String path public static java.lang.String getHumanReadableConflictDescription (org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict String reasonStr String actionStr String operationStr String description public static java.lang.String getHumanReadableConflictVersion (org.tmatesoft.svn.core.internal.wc.SVNConflictVersion) org.tmatesoft.svn.core.internal.wc.SVNConflictVersion version String url private static java.lang.String getReasonString (org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.wc.SVNConflictReason reason private static java.lang.String getActionString (org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.wc.SVNConflictAction action private static org.tmatesoft.svn.core.internal.util.SVNSkel prependVersionInfo (org.tmatesoft.svn.core.internal.util.SVNSkel, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.util.SVNSkel parent org.tmatesoft.svn.core.internal.wc.SVNConflictVersion versionInfo org.tmatesoft.svn.core.internal.util.SVNSkel skel String path String repoURLString private static org.tmatesoft.svn.core.SVNNodeKind getNodeKind (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNNodeKind kind private static java.lang.String getNodeKindString (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind kind private static org.tmatesoft.svn.core.wc.SVNOperation getOperation (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.wc.SVNOperation operation private static org.tmatesoft.svn.core.wc.SVNConflictAction getAction (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.wc.SVNConflictAction action private static org.tmatesoft.svn.core.wc.SVNConflictReason getConflictReason (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.wc.SVNConflictReason reason private static void mappingError (java.lang.String) throws org.tmatesoft.svn.core.SVNException String type org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc/SVNDumpEditor$DirectoryInfo.class
SVNDumpEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNDumpEditor$DirectoryInfo extends java.lang.Object { String myFullPath String myComparePath long myCompareRevision boolean myIsWrittenOut java.util.Map myDeletedEntries org.tmatesoft.svn.core.internal.wc.SVNDumpEditor$DirectoryInfo myParentInfo final synthetic org.tmatesoft.svn.core.internal.wc.SVNDumpEditor this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNDumpEditor, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.internal.wc.SVNDumpEditor$DirectoryInfo) String path String cmpPath long cmpRev org.tmatesoft.svn.core.internal.wc.SVNDumpEditor$DirectoryInfo parent }
org/tmatesoft/svn/core/internal/wc/DefaultDumpFilterHandler$RevisionBaton.class
DefaultDumpFilterHandler.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$RevisionBaton extends java.lang.Object { boolean myHasNodes boolean myHasProps boolean myHadDroppedNodes boolean myHasWritingBegun long myOriginalRevision long myActualRevision org.tmatesoft.svn.core.SVNProperties myProperties java.io.ByteArrayOutputStream myHeaderBuffer final synthetic org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler this$0 private void <init> (org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler) void writeToHeader (java.lang.String) throws org.tmatesoft.svn.core.SVNException String data synthetic void <init> (org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler, org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$1) org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler x0 org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$1 x1 }
org/tmatesoft/svn/core/internal/wc/DefaultSVNMerger.class
DefaultSVNMerger.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNMerger extends org.tmatesoft.svn.core.internal.wc.AbstractSVNMerger implements org.tmatesoft.svn.core.wc.ISVNMerger { private static java.util.List STATUS_ORDERING private org.tmatesoft.svn.core.wc.ISVNConflictHandler myConflictCallback private org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle myDiffConflictStyle public void <init> (byte[], byte[], byte[]) byte[] start byte[] sep byte[] end public void <init> (byte[], byte[], byte[], org.tmatesoft.svn.core.wc.ISVNConflictHandler) byte[] start byte[] sep byte[] end org.tmatesoft.svn.core.wc.ISVNConflictHandler callback public void <init> (byte[], byte[], byte[], org.tmatesoft.svn.core.wc.ISVNConflictHandler, org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle) byte[] start byte[] sep byte[] end org.tmatesoft.svn.core.wc.ISVNConflictHandler callback org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle style public org.tmatesoft.svn.core.wc.SVNMergeResult mergeProperties (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, boolean, boolean) throws org.tmatesoft.svn.core.SVNException Object conflictDescription String propName org.tmatesoft.svn.core.SVNPropertyValue toValue org.tmatesoft.svn.core.SVNPropertyValue fromValue org.tmatesoft.svn.core.SVNPropertyValue workingValue org.tmatesoft.svn.core.SVNPropertyValue baseValue boolean isNormal org.tmatesoft.svn.core.wc.SVNStatusType newStatus java.util.Iterator propEntries java.io.File prejFile String line java.util.Iterator lines org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String prejTmpPath java.io.File prejTmpFile String prejPath java.io.File file java.io.OutputStream os org.tmatesoft.svn.core.SVNProperties command String localPath org.tmatesoft.svn.core.SVNProperties workingProperties org.tmatesoft.svn.core.SVNProperties baseProperties org.tmatesoft.svn.core.SVNProperties serverBaseProps org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log boolean baseMerge boolean dryRun boolean isDir java.util.List conflicts java.util.List conflict org.tmatesoft.svn.core.wc.SVNStatusType status public org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle getDiffConflictStyle () public void setDiffConflictStyle (org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle) org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle diffConflictStyle protected org.tmatesoft.svn.core.wc.SVNStatusType mergeBinary (java.io.File, java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNDiffOptions, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File baseFile java.io.File localFile java.io.File repositoryFile org.tmatesoft.svn.core.wc.SVNDiffOptions options java.io.File resultFile protected org.tmatesoft.svn.core.wc.SVNStatusType mergeText (java.io.File, java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNDiffOptions, java.io.File) throws org.tmatesoft.svn.core.SVNException de.regnis.q.sequence.line.QSequenceLineRAData baseData de.regnis.q.sequence.line.QSequenceLineRAData localData de.regnis.q.sequence.line.QSequenceLineRAData latestData org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File baseFile java.io.File localFile java.io.File latestFile org.tmatesoft.svn.core.wc.SVNDiffOptions options java.io.File resultFile org.tmatesoft.svn.core.internal.wc.FSMergerBySequence merger int mergeResult java.io.RandomAccessFile localIS java.io.RandomAccessFile latestIS java.io.RandomAccessFile baseIS java.io.OutputStream result org.tmatesoft.svn.core.wc.SVNStatusType status protected org.tmatesoft.svn.core.wc.SVNMergeResult processMergedFiles (org.tmatesoft.svn.core.wc.SVNMergeFileSet, org.tmatesoft.svn.core.wc.SVNMergeResult) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNMergeFileSet files org.tmatesoft.svn.core.wc.SVNMergeResult mergeResult org.tmatesoft.svn.core.internal.wc.DefaultSVNMergerAction mergeAction protected org.tmatesoft.svn.core.internal.wc.DefaultSVNMergerAction getMergeAction (org.tmatesoft.svn.core.wc.SVNMergeFileSet, org.tmatesoft.svn.core.wc.SVNMergeResult) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File mergedFile java.io.File mergeTarget java.io.File editedMergedFile org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.wc.SVNConflictDescription descr org.tmatesoft.svn.core.wc.SVNConflictResult result org.tmatesoft.svn.core.wc.SVNConflictChoice choice org.tmatesoft.svn.core.wc.SVNMergeFileSet files org.tmatesoft.svn.core.wc.SVNMergeResult mergeResult protected org.tmatesoft.svn.core.wc.SVNMergeResult handleChooseBase (org.tmatesoft.svn.core.wc.SVNMergeFileSet) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.wc.SVNMergeFileSet files org.tmatesoft.svn.core.internal.wc.admin.SVNLog log protected org.tmatesoft.svn.core.wc.SVNMergeResult handleChooseRepository (org.tmatesoft.svn.core.wc.SVNMergeFileSet) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.wc.SVNMergeFileSet files org.tmatesoft.svn.core.internal.wc.admin.SVNLog log protected org.tmatesoft.svn.core.wc.SVNMergeResult handleChooseConflicted (boolean, org.tmatesoft.svn.core.wc.SVNMergeFileSet) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties command String tmpBasePath boolean chooseMine org.tmatesoft.svn.core.wc.SVNMergeFileSet files java.io.File tmpFile java.io.File leftFile java.io.File rightFile java.io.File detranslatedTarget org.tmatesoft.svn.core.internal.wc.admin.SVNLog log protected org.tmatesoft.svn.core.wc.SVNMergeResult handleChooseWorking (org.tmatesoft.svn.core.wc.SVNMergeFileSet) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNMergeFileSet files protected org.tmatesoft.svn.core.wc.SVNMergeResult handleMarkConflicted (org.tmatesoft.svn.core.wc.SVNMergeFileSet) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNMergeFileSet files protected org.tmatesoft.svn.core.wc.SVNMergeResult handleMarkBinaryConflicted (org.tmatesoft.svn.core.wc.SVNMergeFileSet) throws org.tmatesoft.svn.core.SVNException java.io.File mineFile String minePath org.tmatesoft.svn.core.wc.SVNMergeFileSet files org.tmatesoft.svn.core.SVNProperties command java.io.File root org.tmatesoft.svn.core.internal.wc.admin.SVNLog log java.io.File oldFile java.io.File newFile String newPath String oldPath protected void makeBinaryConflictEntry (org.tmatesoft.svn.core.wc.SVNMergeFileSet, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNMergeFileSet files String newFilePath String oldFilePath org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.internal.wc.admin.SVNLog log protected org.tmatesoft.svn.core.wc.SVNMergeResult handleMarkTextConflicted (org.tmatesoft.svn.core.wc.SVNMergeFileSet) throws org.tmatesoft.svn.core.SVNException String copyFromPath String detranslatedPath org.tmatesoft.svn.core.wc.SVNMergeFileSet files org.tmatesoft.svn.core.SVNProperties command java.io.File root org.tmatesoft.svn.core.internal.wc.admin.SVNLog log java.io.File mineFile java.io.File oldFile java.io.File newFile String newPath String oldPath String minePath String basePath String latestPath java.io.File tmpTargetCopy String tmpTargetCopyPath protected void makeTextConflictEntry (org.tmatesoft.svn.core.wc.SVNMergeFileSet, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.wc.SVNMergeFileSet files String mineFilePath String newFilePath String oldFilePath org.tmatesoft.svn.core.internal.wc.admin.SVNLog log protected org.tmatesoft.svn.core.wc.SVNMergeResult handleChooseMerged (org.tmatesoft.svn.core.wc.SVNMergeFileSet, org.tmatesoft.svn.core.wc.SVNMergeResult) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNMergeFileSet files org.tmatesoft.svn.core.wc.SVNMergeResult mergeResult org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.internal.wc.admin.SVNLog log protected org.tmatesoft.svn.core.wc.SVNMergeResult handleMarkResolved (org.tmatesoft.svn.core.wc.SVNMergeFileSet, org.tmatesoft.svn.core.wc.SVNMergeResult) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNMergeFileSet files org.tmatesoft.svn.core.wc.SVNMergeResult mergeResult protected void postMergeCleanup (org.tmatesoft.svn.core.wc.SVNMergeFileSet) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNMergeFileSet files org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.internal.wc.admin.SVNLog log private org.tmatesoft.svn.core.wc.SVNStatusType applySinglePropertyAdd (java.lang.String, boolean, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.SVNProperties, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, java.util.Collection, boolean) throws org.tmatesoft.svn.core.SVNException String localPath boolean isDir org.tmatesoft.svn.core.wc.SVNStatusType status org.tmatesoft.svn.core.SVNProperties workingProps String propName org.tmatesoft.svn.core.SVNPropertyValue baseValue org.tmatesoft.svn.core.SVNPropertyValue newValue org.tmatesoft.svn.core.SVNPropertyValue workingValue org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log java.util.Collection conflicts boolean dryRun boolean gotConflict private void changeProperty (org.tmatesoft.svn.core.SVNProperties, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) org.tmatesoft.svn.core.SVNProperties properties String propName org.tmatesoft.svn.core.SVNPropertyValue propValue private org.tmatesoft.svn.core.wc.SVNStatusType applySinglePropertyChange (java.lang.String, boolean, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.SVNProperties, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, java.util.Collection, boolean) throws org.tmatesoft.svn.core.SVNException String localPath boolean isDir org.tmatesoft.svn.core.wc.SVNStatusType status org.tmatesoft.svn.core.SVNProperties workingProps String propName org.tmatesoft.svn.core.SVNPropertyValue baseValue org.tmatesoft.svn.core.SVNPropertyValue oldValue org.tmatesoft.svn.core.SVNPropertyValue newValue org.tmatesoft.svn.core.SVNPropertyValue workingValue org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log java.util.Collection conflicts boolean dryRun private org.tmatesoft.svn.core.wc.SVNStatusType applySingleMergeInfoPropertyChange (java.lang.String, boolean, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.SVNProperties, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, java.util.Collection, boolean) throws org.tmatesoft.svn.core.SVNException java.util.Map addedMergeInfo String localPath boolean isDir org.tmatesoft.svn.core.wc.SVNStatusType status org.tmatesoft.svn.core.SVNProperties workingProps String propName org.tmatesoft.svn.core.SVNPropertyValue baseValue org.tmatesoft.svn.core.SVNPropertyValue oldValue org.tmatesoft.svn.core.SVNPropertyValue newValue org.tmatesoft.svn.core.SVNPropertyValue workingValue org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log java.util.Collection conflicts boolean dryRun boolean gotConflict private org.tmatesoft.svn.core.wc.SVNStatusType applySingleGenericPropertyChange (java.lang.String, boolean, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.SVNProperties, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, java.util.Collection, boolean) throws org.tmatesoft.svn.core.SVNException String localPath boolean isDir org.tmatesoft.svn.core.wc.SVNStatusType status org.tmatesoft.svn.core.SVNProperties workingProps String propName org.tmatesoft.svn.core.SVNPropertyValue baseValue org.tmatesoft.svn.core.SVNPropertyValue oldValue org.tmatesoft.svn.core.SVNPropertyValue newValue org.tmatesoft.svn.core.SVNPropertyValue workingValue org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log java.util.Collection conflicts boolean dryRun boolean gotConflict private org.tmatesoft.svn.core.wc.SVNStatusType applySinglePropertyDelete (java.lang.String, boolean, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.SVNProperties, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, java.util.Collection, boolean) throws org.tmatesoft.svn.core.SVNException String localPath boolean isDir org.tmatesoft.svn.core.wc.SVNStatusType status org.tmatesoft.svn.core.SVNProperties workingProps String propName org.tmatesoft.svn.core.SVNPropertyValue baseValue org.tmatesoft.svn.core.SVNPropertyValue oldValue org.tmatesoft.svn.core.SVNPropertyValue workingValue org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log java.util.Collection conflicts boolean dryRun boolean gotConflict private static org.tmatesoft.svn.core.wc.SVNStatusType getPropMergeStatus (org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType status org.tmatesoft.svn.core.wc.SVNStatusType newStatus int statusInd int newStatusInd private boolean maybeGeneratePropConflict (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.OutputStream os org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.OutputStream os org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNPropertyValue theValue java.io.OutputStream os org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e de.regnis.q.sequence.line.QSequenceLineRAData baseData de.regnis.q.sequence.line.QSequenceLineRAData localData de.regnis.q.sequence.line.QSequenceLineRAData latestData org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.wc.FSMergerBySequence merger java.io.OutputStream result org.tmatesoft.svn.core.SVNPropertyValue theValue java.io.OutputStream os org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String mergedString String mimeType org.tmatesoft.svn.core.wc.SVNMergeFileSet fileSet org.tmatesoft.svn.core.wc.SVNConflictAction action org.tmatesoft.svn.core.wc.SVNConflictReason reason org.tmatesoft.svn.core.wc.SVNConflictDescription description org.tmatesoft.svn.core.wc.SVNConflictResult result org.tmatesoft.svn.core.wc.SVNConflictChoice choice String localPath String propName org.tmatesoft.svn.core.SVNProperties workingProps org.tmatesoft.svn.core.SVNPropertyValue oldValue org.tmatesoft.svn.core.SVNPropertyValue newValue org.tmatesoft.svn.core.SVNPropertyValue baseValue org.tmatesoft.svn.core.SVNPropertyValue workingValue org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log boolean isDir boolean dryRun boolean conflictRemains java.io.File path java.io.File workingFile java.io.File newFile java.io.File baseFile java.io.File mergedFile static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/SVNExternal.class
SVNExternal.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNExternal extends java.lang.Object { private org.tmatesoft.svn.core.wc.SVNRevision myRevision private org.tmatesoft.svn.core.wc.SVNRevision myPegRevision private String myURL private String myPath private org.tmatesoft.svn.core.SVNURL myResolvedURL private boolean myIsRevisionExplicit private boolean myIsPegRevisionExplicit private boolean myIsNewFormat private String myRawValue private void <init> () public void <init> (java.lang.String, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean) String target String url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean isRevisionExplicit boolean isPegRevisionExplicit boolean isNewFormat public org.tmatesoft.svn.core.wc.SVNRevision getRevision () public org.tmatesoft.svn.core.wc.SVNRevision getPegRevision () public java.lang.String getPath () public java.lang.String getUnresolvedUrl () public java.lang.String getRawValue () public boolean isRevisionExplicit () public boolean isPegRevisionExplicit () public boolean isNewFormat () public org.tmatesoft.svn.core.SVNURL getResolvedURL () public org.tmatesoft.svn.core.SVNURL resolveURL (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException String canonicalURL int i String segment java.util.Iterator segments String[] base java.util.LinkedList baseList String[] relative String finalPath org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL rootURL org.tmatesoft.svn.core.SVNURL ownerURL String canonicalURL org.tmatesoft.svn.core.SVNErrorMessage err public java.lang.String toString () String value String path String url public static org.tmatesoft.svn.core.internal.wc.SVNExternal[] parseExternals (java.lang.Object, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.util.StringTokenizer tokenizer java.util.Iterator tokenizer org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err boolean schemeRelative org.tmatesoft.svn.core.internal.wc.SVNPath path org.tmatesoft.svn.core.SVNErrorMessage err String line java.util.List tokens org.tmatesoft.svn.core.internal.wc.SVNExternal external int revisionToken String token0 String token1 boolean token0isURL boolean token1isURL int i Object owner String description java.util.List lines java.util.Collection externals private static java.lang.String quotePath (java.lang.String) int i String path private static int fetchRevision (org.tmatesoft.svn.core.internal.wc.SVNExternal, java.lang.Object, java.lang.String, java.util.List) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe long revNumber String token String revisionStr int i org.tmatesoft.svn.core.internal.wc.SVNExternal external Object owner String line java.util.List tokens private static void reportParsingError (java.lang.Object, java.lang.String) throws org.tmatesoft.svn.core.SVNException Object owner String line org.tmatesoft.svn.core.SVNErrorMessage err }
org/tmatesoft/svn/core/internal/wc/SVNStatusUtil$1.class
SVNStatusUtil.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.SVNStatusUtil$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNStatusHandler { final synthetic boolean val$committed final synthetic long[] val$minRev final synthetic long[] val$maxRev final synthetic boolean[] val$isSwitched final synthetic boolean[] val$isModified final synthetic boolean[] val$isSparseCheckOut final synthetic java.io.File val$wcPath final synthetic org.tmatesoft.svn.core.SVNURL[] val$wcURL void <init> (boolean, long[], long[], boolean[], boolean[], boolean[], java.io.File, org.tmatesoft.svn.core.SVNURL[]) public void handleStatus (org.tmatesoft.svn.core.wc.SVNStatus) throws org.tmatesoft.svn.core.SVNException long itemRev org.tmatesoft.svn.core.wc.SVNStatus status org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry }
org/tmatesoft/svn/core/internal/wc/SVNDumpEditor.class
SVNDumpEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNDumpEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private org.tmatesoft.svn.core.internal.io.fs.FSRoot myRoot private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS private long myTargetRevision private long myOldestDumpedRevision private String myRootPath private java.io.OutputStream myDumpStream private boolean myUseDeltas private boolean myIsVerify private org.tmatesoft.svn.core.internal.wc.SVNDumpEditor$DirectoryInfo myCurrentDirInfo private org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner myDeltaCombiner private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator myDeltaGenerator public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSRoot, long, long, java.lang.String, java.io.OutputStream, boolean, boolean) org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.FSRoot root long toRevision long oldestDumpedRevision String rootPath java.io.OutputStream dumpStream boolean useDeltas boolean isVerify public void reset (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSRoot, long, long, java.lang.String, java.io.OutputStream, boolean, boolean) org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.FSRoot root long toRevision long oldestDumpedRevision String rootPath java.io.OutputStream dumpStream boolean useDeltas boolean isVerify public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNDumpEditor$DirectoryInfo parent boolean isDeleted boolean isCopy public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision boolean isCopy boolean isDeleted public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String entryName String entryPath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode entryNode java.util.Iterator entriesIter org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node java.util.Map entries String path java.util.Iterator entries public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String textChecksum public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.wc.SVNDumpEditor$DirectoryInfo parent String cmpPath long cmpRev public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision String cmpPath long cmpRev public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path private void dumpNode (java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, int, boolean, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode String checkSum org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode cmpNode org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNProperties oldProps java.io.ByteArrayOutputStream encodedProps org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode revNode String hexDigest org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream countingStream org.tmatesoft.svn.core.io.ISVNDeltaConsumer consumer java.io.InputStream sourceStream java.io.InputStream targetStream java.io.OutputStream tmpStream org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner deltaCombiner org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator deltaGenerator long txtLength org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node String checksum java.io.InputStream source String comparePath long compareRevision org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot compareRoot boolean mustDumpProps boolean mustDumpText String canonicalPath long contentLength String propContents org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String path org.tmatesoft.svn.core.SVNNodeKind kind int nodeAction boolean isCopy String cmpPath long cmpRev java.io.File tmpFile private java.lang.String computeSHA1Checksum (org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRoot revision String filePath java.io.InputStream is org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream checksum private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator getDeltaGenerator () private org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner getDeltaCombiner () private org.tmatesoft.svn.core.internal.wc.SVNDumpEditor$DirectoryInfo createDirectoryInfo (java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.internal.wc.SVNDumpEditor$DirectoryInfo) String path String copyFromPath long copyFromRev org.tmatesoft.svn.core.internal.wc.SVNDumpEditor$DirectoryInfo parent String fullPath String cmpPath private void writeDumpData (java.lang.String) throws java.io.IOException String data }
org/tmatesoft/svn/core/internal/wc/DefaultDumpFilterHandler$1.class
DefaultDumpFilterHandler.java package org.tmatesoft.svn.core.internal.wc synthetic org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc/SVNUpdateEditor$1.class
SVNUpdateEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { final synthetic boolean[] val$modified final synthetic boolean[] val$allModsAreDeletes final synthetic org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor this$0 void <init> (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor, boolean[], boolean[]) public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea entryArea org.tmatesoft.svn.core.SVNException e java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean hasModifications org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea entryArea public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc/ISVNLoadHandler.class
ISVNLoadHandler.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNLoadHandler extends java.lang.Object { public abstract void closeRevision () throws org.tmatesoft.svn.core.SVNException public abstract void openRevision (java.util.Map) throws org.tmatesoft.svn.core.SVNException public abstract void openNode (java.util.Map) throws org.tmatesoft.svn.core.SVNException public abstract void closeNode () throws org.tmatesoft.svn.core.SVNException public abstract void parseUUID (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void removeNodeProperties () throws org.tmatesoft.svn.core.SVNException public abstract void setRevisionProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException public abstract void applyTextDelta () throws org.tmatesoft.svn.core.SVNException public abstract void setFullText () throws org.tmatesoft.svn.core.SVNException public abstract void parseTextBlock (java.io.InputStream, long, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void deleteNodeProperty (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void setNodeProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/SVNMergeDriver$1.class
SVNMergeDriver.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$1 extends java.lang.Object implements java.util.Comparator { final synthetic org.tmatesoft.svn.core.internal.wc.SVNMergeDriver this$0 void <init> (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver) public int compare (java.lang.Object, java.lang.Object) Object o1 Object o2 org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource source1 org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource source2 long src1Rev1 long src2Rev1 }
org/tmatesoft/svn/core/internal/wc/SVNDumpStreamParser.class
SVNDumpStreamParser.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNDumpStreamParser extends java.lang.Object { private org.tmatesoft.svn.core.ISVNCanceller myCanceller public void <init> (org.tmatesoft.svn.core.ISVNCanceller) org.tmatesoft.svn.core.ISVNCanceller canceller public void parseDumpStream (java.io.InputStream, org.tmatesoft.svn.core.internal.wc.ISVNLoadHandler, java.nio.charset.CharsetDecoder) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String uuid org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String delta boolean isDelta long length org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe String delta boolean isDelta long length org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe long length org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err int readSize int r long remaining long propertyContentLength long txtContentLength byte[] buf long numRead long numToRead boolean foundNode java.util.Map headers String contentLength String propContentLength String textContentLength boolean isOldVersion long actualPropLength org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe java.io.InputStream dumpStream org.tmatesoft.svn.core.internal.wc.ISVNLoadHandler handler java.nio.charset.CharsetDecoder decoder String line int version StringBuffer buffer private long parsePropertyBlock (java.io.InputStream, org.tmatesoft.svn.core.internal.wc.ISVNLoadHandler, java.nio.charset.CharsetDecoder, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.SVNPropertyValue propValue int len byte[] buff String propName org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe int len byte[] buff String propName org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe java.io.InputStream dumpStream org.tmatesoft.svn.core.internal.wc.ISVNLoadHandler handler java.nio.charset.CharsetDecoder decoder long contentLength boolean isNode long actualLength StringBuffer buffer String line private java.util.Map readHeaderBlock (java.io.InputStream, java.lang.String, java.nio.charset.CharsetDecoder) throws org.tmatesoft.svn.core.SVNException java.io.IOException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String header int colonInd String name String value java.io.InputStream dumpStream String firstHeader java.nio.charset.CharsetDecoder decoder java.util.Map headers StringBuffer buffer }
org/tmatesoft/svn/core/internal/wc/SVNPropertiesManager$2.class
SVNPropertiesManager.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.SVNPropertiesManager$2 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { final synthetic boolean val$base final synthetic String val$propName final synthetic java.util.Map val$pathsToPropValues void <init> (boolean, java.lang.String, java.util.Map) public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea pathArea org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProps org.tmatesoft.svn.core.internal.wc.admin.SVNEntry pathEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea pathArea org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties workingProps org.tmatesoft.svn.core.internal.wc.admin.SVNEntry pathEntry java.io.File itemPath org.tmatesoft.svn.core.internal.wc.admin.SVNEntry itemEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNPropertyValue propValue org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc/SVNMergeDriver$MergeAction.class
SVNMergeDriver.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeAction extends java.lang.Object { public static final org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeAction MERGE public static final org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeAction ROLL_BACK public static final org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeAction NO_OP protected void <init> () static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/SVNClassLoader.class
SVNClassLoader.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNClassLoader extends java.lang.Object { private static final String SVNKIT_PROPERTIES private static final String SVNKIT_PROPERTIES_PATH private static final String DEFAULT_PROPERTIES public void <init> () public static org.tmatesoft.svn.core.internal.util.ISVNThreadPool getThreadPool () Throwable th Class threadPoolClass Object object java.util.Iterator classesIter java.util.Collection threadPoolClasses public static java.util.Collection getAvailableAdminAreaFactories () Throwable th Class adminAreaFactoryClass Object object java.util.Iterator classesIter java.util.Collection instances java.util.Collection factories public static org.tmatesoft.svn.core.internal.io.svn.SVNAuthenticator getSASLAuthenticator (org.tmatesoft.svn.core.internal.io.svn.SVNConnection) throws org.tmatesoft.svn.core.SVNException Throwable th Throwable th Object object Class saslAuthenticatorClass java.lang.reflect.Constructor constructor java.util.Iterator classesItera org.tmatesoft.svn.core.internal.io.svn.SVNConnection connection java.util.Collection saslAuthenticatorClasses org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.internal.io.fs.repcache.IFSRepresentationCacheManagerFactory getFSRepresentationCacheManagerFactory () Throwable th Class repCacheManagerFactoryClass Object object java.util.Iterator classesIter java.util.Collection repCacheManagerFactoryClasses private static java.util.Collection getAllClasses (java.lang.String) Throwable th String className Class clazz String key java.util.Iterator svnkitPropsIter String keyPrefix java.util.Collection classes java.util.Map svnkitProps private static java.util.Map loadProperties () java.io.IOException ioe java.io.IOException e String key String value java.util.Iterator propNamesIter java.util.Map finalProps java.util.Properties props java.io.InputStream resourceStream String svnkitPropertiesResource }
org/tmatesoft/svn/core/internal/wc/DefaultSVNHostOptions.class
DefaultSVNHostOptions.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNHostOptions extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNHostOptions { private final org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile myServersFile private final org.tmatesoft.svn.core.SVNURL myURL public void <init> (org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile serversFile org.tmatesoft.svn.core.SVNURL url private org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile getServersFile () public java.lang.String getHost () public java.lang.String getProtocol () public java.util.Collection getAuthTypes () String scheme java.util.StringTokenizer tokens java.util.List schemes java.util.Map hostProperties String authTypes private java.lang.String getAuthStorageEnabledOption () java.util.Map properties protected boolean hasAuthStorageEnabledOption () public boolean isAuthStorageEnabled () String storeAuthCreds public boolean isStorePasswords () boolean store java.util.Map properties String storePasswords private java.lang.String getStorePlainTextPasswordOption () java.util.Map properties public boolean hasStorePlainTextPasswordsOption () public boolean isStorePlainTextPasswords (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException String realm org.tmatesoft.svn.core.auth.SVNAuthentication auth String storePlainTextPasswords public boolean isStoreSSLClientCertificatePassphrases () java.util.Map properties String storeCertPassphrases private java.lang.String getStorePlainTextPassphraseOption () java.util.Map properties protected boolean hasStorePlainTextPassphrasesOption () String storePlainTextPassphrases public boolean isStorePlainTextPassphrases (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException String realm org.tmatesoft.svn.core.auth.SVNAuthentication auth String storePlainTextPassphrases public java.lang.String getUserName () java.util.Map properties String userName public java.lang.String getSSLClientCertFile () java.util.Map properties public java.lang.String getSSLClientCertPassword () java.util.Map properties public boolean trustDefaultSSLCertificateAuthority () java.util.Map properties public java.io.File[] getSSLAuthorityFiles () String fileName java.util.StringTokenizer files java.util.Map properties String sslAuthorityFilePaths java.util.Collection trustStorages public java.lang.String getProxyHost () public java.lang.String getProxyPort () public java.lang.String getProxyUserName () public java.lang.String getProxyPassword () private java.lang.String getProxyOption (java.lang.String, java.lang.String) String optionName String systemProperty String host java.util.Map properties String value private static boolean hostExceptedFromProxy (java.lang.String, java.util.Map) String exception java.util.StringTokenizer exceptions String host java.util.Map properties String proxyExceptions String proxyExceptionsSeparator public int getReadTimeout () NumberFormatException nfe java.util.Map properties String timeout String protocol public int getConnectTimeout () String protocol private java.util.Map getHostProperties () java.util.Map hostProps java.util.Map properties String groupName private java.lang.String getGroupName (java.util.Map) String token java.util.StringTokenizer tokens String name String pattern java.util.Iterator names java.util.Map groups }
org/tmatesoft/svn/core/internal/wc/SVNMergeCallback.class
SVNMergeCallback.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNMergeCallback extends org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback { protected boolean myIsDryRun protected org.tmatesoft.svn.core.SVNURL myURL protected boolean myIsAddNecessitatedMerge protected String myAddedPath protected boolean myIsForce protected org.tmatesoft.svn.core.wc.SVNDiffOptions myDiffOptions protected java.util.Map myConflictedPaths protected org.tmatesoft.svn.core.internal.wc.SVNMergeDriver myMergeDriver public void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNURL, boolean, boolean, org.tmatesoft.svn.core.wc.SVNDiffOptions, java.util.Map, org.tmatesoft.svn.core.internal.wc.SVNMergeDriver) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNURL url boolean force boolean dryRun org.tmatesoft.svn.core.wc.SVNDiffOptions options java.util.Map conflictedPathsGetter org.tmatesoft.svn.core.internal.wc.SVNMergeDriver mergeDriver public java.io.File createTempDirectory () throws org.tmatesoft.svn.core.SVNException public boolean isDiffUnversioned () public boolean isDiffCopiedAsAdded () public java.util.Map getConflictedPaths () public org.tmatesoft.svn.core.wc.SVNStatusType propertiesChanged (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties filteredProps org.tmatesoft.svn.core.SVNPropertyValue mergeInfoProp String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propsIter java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource mergeSource org.tmatesoft.svn.core.wc.SVNStatusType status org.tmatesoft.svn.core.SVNException e String path org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties diff boolean[] isTreeConflicted org.tmatesoft.svn.core.wc.SVNStatusType obstructedStatus org.tmatesoft.svn.core.SVNProperties regularProps public org.tmatesoft.svn.core.wc.SVNStatusType directoryAdded (java.lang.String, long, boolean[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.ISVNEventHandler oldEventHandler org.tmatesoft.svn.core.wc.ISVNEventHandler oldEventHandler org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String path long revision boolean[] isTreeConflicted java.io.File mergedFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.SVNURL copyFromURL long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.wc.SVNStatusType obstructedStatus public org.tmatesoft.svn.core.wc.SVNStatusType directoryDeleted (java.lang.String, boolean[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.ISVNEventHandler oldEventHandler org.tmatesoft.svn.core.wc.ISVNEventHandler handler String path boolean[] isTreeConflicted java.io.File mergedFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.wc.SVNStatusType obstructedStatus org.tmatesoft.svn.core.internal.wc.SVNFileType fileType public void directoryOpened (java.lang.String, long, boolean[]) throws org.tmatesoft.svn.core.SVNException String path long revision boolean[] isTreeConflicted java.io.File mergedFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.SVNFileType type public org.tmatesoft.svn.core.wc.SVNStatusType[] fileChanged (java.lang.String, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException boolean[] isTreeConflicted2 boolean executable boolean same String localLabel String baseLabel String latestLabel org.tmatesoft.svn.core.wc.SVNStatusType mergeResult boolean textModified String path java.io.File file1 java.io.File file2 long revision1 long revision2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties diff boolean[] isTreeConflicted boolean needsMerge java.io.File mergedFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.wc.SVNStatusType obstructedStatus org.tmatesoft.svn.core.wc.SVNStatusType[] result org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.SVNFileType fileType String name public org.tmatesoft.svn.core.wc.SVNStatusType[] fileAdded (java.lang.String, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propChangesIter String targePath String minePath String relativePath org.tmatesoft.svn.core.SVNProperties newProps org.tmatesoft.svn.core.SVNProperties newBaseProps java.io.File newBaseFile java.io.File newFile String copyFromURL long copyFromRevision org.tmatesoft.svn.core.SVNProperties newProps org.tmatesoft.svn.core.SVNProperties newBaseProps java.io.File newBaseFile java.io.File newFile org.tmatesoft.svn.core.wc.SVNTreeConflictDescription existingConflict String path java.io.File file1 java.io.File file2 long revision1 long revision2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties diff boolean[] isTreeConflicted org.tmatesoft.svn.core.wc.SVNStatusType[] result org.tmatesoft.svn.core.SVNProperties fileProps java.io.File mergedFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.wc.SVNStatusType obstructedStatus org.tmatesoft.svn.core.internal.wc.SVNFileType fileType public org.tmatesoft.svn.core.wc.SVNStatusType fileDeleted (java.lang.String, java.io.File, java.io.File, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.ISVNEventHandler oldEventHandler String path java.io.File file1 java.io.File file2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties originalProperties boolean[] isTreeConflicted java.io.File mergedFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.wc.SVNStatusType obstructedStatus org.tmatesoft.svn.core.internal.wc.SVNFileType fileType public org.tmatesoft.svn.core.wc.SVNStatusType[] directoryClosed (java.lang.String, boolean[]) throws org.tmatesoft.svn.core.SVNException String path boolean[] isTreeConflicted protected java.io.File getFile (java.lang.String) String path protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea retrieve (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e java.io.File path boolean lenient protected void delete (java.io.File, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean force boolean dryRun boolean keepLocal org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea root protected boolean areFilesTheSame (java.io.File, org.tmatesoft.svn.core.SVNProperties, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException java.io.File older org.tmatesoft.svn.core.SVNProperties originalProps java.io.File mine org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNProperties workingProps private org.tmatesoft.svn.core.wc.SVNStatusType getStatusForObstructedOrMissing (java.lang.String) org.tmatesoft.svn.core.SVNException svne String path java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNNodeKind expectedKind org.tmatesoft.svn.core.SVNNodeKind diskKind private org.tmatesoft.svn.core.SVNNodeKind getWorkingNodeKind (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.lang.String) org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String path private org.tmatesoft.svn.core.SVNNodeKind getDiskKind (java.lang.String) String path java.io.File file org.tmatesoft.svn.core.internal.wc.SVNFileType type private boolean arePropsTheSame (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) String propName java.util.Iterator propNamesIter org.tmatesoft.svn.core.SVNProperties props1 org.tmatesoft.svn.core.SVNProperties props2 org.tmatesoft.svn.core.SVNProperties propsDiff org.tmatesoft.svn.core.SVNProperties regularPropsDiff }
org/tmatesoft/svn/core/internal/wc/SVNStatusReporter.class
SVNStatusReporter.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNStatusReporter extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton org.tmatesoft.svn.core.io.ISVNReporter { private org.tmatesoft.svn.core.io.ISVNReporter myReporter private org.tmatesoft.svn.core.io.ISVNReporterBaton myBaton private org.tmatesoft.svn.core.SVNURL myCommonAncestorLocation private org.tmatesoft.svn.core.io.SVNRepository myRepository private org.tmatesoft.svn.core.SVNURL myRepositoryRoot private java.util.Map myLocks private org.tmatesoft.svn.core.internal.wc.SVNStatusEditor myEditor public void <init> (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.internal.wc.SVNStatusEditor) org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.io.ISVNReporterBaton baton org.tmatesoft.svn.core.internal.wc.SVNStatusEditor editor public org.tmatesoft.svn.core.SVNLock getLock (org.tmatesoft.svn.core.SVNURL) String path org.tmatesoft.svn.core.SVNURL url String urlString String root String path public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNReporter reporter public void setPath (java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException String path String lockToken long revision boolean startEmpty public void deletePath (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String path String lockToken long revision boolean startEmpty public void finishReport () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNLock lock int i org.tmatesoft.svn.core.SVNLock[] locks org.tmatesoft.svn.core.SVNURL oldLocation public void abortReport () throws org.tmatesoft.svn.core.SVNException public void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url String path String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty org.tmatesoft.svn.core.SVNURL rootURL public void setPath (java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException String path String lockToken long revision org.tmatesoft.svn.core.SVNDepth depth boolean startEmpty }
org/tmatesoft/svn/core/internal/wc/SVNUpdateEditor15$SVNDirectoryInfo.class
SVNUpdateEditor15.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo extends org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNEntryInfo implements org.tmatesoft.svn.core.internal.wc.admin.ISVNCleanupHandler { public int RefCount private org.tmatesoft.svn.core.internal.wc.admin.SVNLog log public int LogCount public org.tmatesoft.svn.core.SVNDepth myAmbientDepth final synthetic org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15 this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15, java.lang.String) String path public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getAdminArea () throws org.tmatesoft.svn.core.SVNException String path java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area public org.tmatesoft.svn.core.internal.wc.admin.SVNLog getLog () throws org.tmatesoft.svn.core.SVNException public void flushLog () throws org.tmatesoft.svn.core.SVNException public void runLogs () throws org.tmatesoft.svn.core.SVNException public void cleanup (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area static synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNLog access$502 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo, org.tmatesoft.svn.core.internal.wc.admin.SVNLog) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo x0 org.tmatesoft.svn.core.internal.wc.admin.SVNLog x1 }
org/tmatesoft/svn/core/internal/wc/SVNCommitUtil$2.class
SVNCommitUtil.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.SVNCommitUtil$2 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { final synthetic org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16 val$statusClient void <init> (org.tmatesoft.svn.core.internal.wc16.SVNStatusClient16) public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException }
org/tmatesoft/svn/core/internal/wc/SVNUpdateEditor15$SVNFileInfo.class
SVNUpdateEditor15.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo extends org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNEntryInfo { public String Name public String CommitTime public String Checksum public String expectedSrcChecksum public String copiedBaseChecksum public java.io.File baseFile public java.io.File newBaseFile public boolean addedWithHistory public boolean receivedTextDelta private org.tmatesoft.svn.core.SVNProperties copiedBaseProperties private org.tmatesoft.svn.core.SVNProperties copiedWorkingProperties private java.io.File copiedBaseText private java.io.File copiedWorkingText private org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream sourceChecksumStream final synthetic org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15 this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15, org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo, java.lang.String) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo parent String path public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getAdminArea () throws org.tmatesoft.svn.core.SVNException static synthetic java.io.File access$000 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo x0 static synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream access$102 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo, org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo x0 org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream x1 static synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream access$100 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo x0 static synthetic java.io.File access$002 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo, java.io.File) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo x0 java.io.File x1 static synthetic java.io.File access$202 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo, java.io.File) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo x0 java.io.File x1 static synthetic java.io.File access$200 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$302 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic org.tmatesoft.svn.core.SVNProperties access$402 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic org.tmatesoft.svn.core.SVNProperties access$300 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$400 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo x0 }
org/tmatesoft/svn/core/internal/wc/SVNSynchronizeEditor.class
SVNSynchronizeEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNSynchronizeEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private org.tmatesoft.svn.core.io.ISVNEditor myWrappedEditor private boolean myIsRootOpened private long myBaseRevision private org.tmatesoft.svn.core.SVNCommitInfo myCommitInfo private org.tmatesoft.svn.core.ISVNLogEntryHandler myHandler private org.tmatesoft.svn.core.io.SVNRepository myTargetRepository private int myNormalizedNodePropsCounter private org.tmatesoft.svn.core.SVNProperties myRevisionProperties public void <init> (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.ISVNLogEntryHandler, long, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.io.SVNRepository toRepository org.tmatesoft.svn.core.ISVNLogEntryHandler handler long baseRevision org.tmatesoft.svn.core.SVNProperties revProps public void reset (long, org.tmatesoft.svn.core.SVNProperties) long baseRevision org.tmatesoft.svn.core.SVNProperties revProps public void abortEdit () throws org.tmatesoft.svn.core.SVNException private org.tmatesoft.svn.core.io.ISVNEditor getWrappedEditor () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String normalizedValue String name org.tmatesoft.svn.core.SVNPropertyValue value public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String normalizedVal String path String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry org.tmatesoft.svn.core.io.ISVNEditor wrappedEditor public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String textChecksum public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public org.tmatesoft.svn.core.SVNCommitInfo getCommitInfo () public int getNormalizedNodePropsCounter () }
org/tmatesoft/svn/core/internal/wc/SVNDiffEditor.class
SVNDiffEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNDiffEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess myWCAccess private boolean myUseAncestry private boolean myIsReverseDiff private boolean myIsCompareToBase private boolean myIsRootOpen private long myTargetRevision private org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo myCurrentDirectory private org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo myCurrentFile private org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor myDeltaProcessor private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo myAdminInfo private org.tmatesoft.svn.core.SVNDepth myDepth private java.io.File myTempDirectory private org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback myDiffCallback private java.util.Collection myChangeLists private String myWCRootPath public void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback, boolean, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, java.util.Collection) org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback callback boolean useAncestry boolean reverseDiff boolean compareToBase org.tmatesoft.svn.core.SVNDepth depth java.util.Collection changeLists public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException java.io.File baseFile org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo info String path long revision java.io.File fullPath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String name private void reportAddedDir (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties wcProps org.tmatesoft.svn.core.SVNProperties wcProps org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.SVNDepth depthBelowHere org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo childInfo org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry thisDirEntry private void reportAddedFile (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo, java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException java.io.File sourceFile org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo info String path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String name org.tmatesoft.svn.core.SVNProperties wcProps String mimeType org.tmatesoft.svn.core.SVNProperties propDiff java.io.File sourceFile private void reportModifiedFile (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException boolean modified String mimeType String mimeType java.io.File tmpFile org.tmatesoft.svn.core.SVNProperties originalProperties long revision String baseMimeType String mimeType boolean modified java.io.File tmpFile org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo dirInfo org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String schedule String fileName org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.SVNProperties baseProps java.io.File baseFile boolean isAdded String filePath public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.SVNDepth subDirDepth public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.SVNDepth subDirDepth public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties reposProps org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.SVNProperties originalProps org.tmatesoft.svn.core.SVNProperties diff String name public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision String name public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision String name public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String fileName String path String baseChecksum org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String originalMimeType String commitPath String textChecksum String fileName java.io.File filePath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNProperties baseProperties org.tmatesoft.svn.core.SVNProperties reposProperties String reposMimeType java.io.File reposFile java.io.File localFile boolean modified org.tmatesoft.svn.core.SVNProperties originalProps public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void cleanup () private org.tmatesoft.svn.core.SVNProperties applyPropChanges (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) String name org.tmatesoft.svn.core.SVNPropertyValue value java.util.Iterator names org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNProperties propChanges org.tmatesoft.svn.core.SVNProperties result private void localDirectoryDiff (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProps org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.SVNDepth depthBelowHere org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo childInfo org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator entries String relativePath org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir boolean anchor org.tmatesoft.svn.core.internal.wc.admin.SVNEntry thisDirEntry java.util.Set processedFiles private void diffUnversioned (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, boolean, java.util.Set) throws org.tmatesoft.svn.core.SVNException String pattern java.util.Iterator patterns java.io.File wcRoot java.util.Collection globalIgnores java.util.Collection ignores String rootRelativePath boolean needToComputeRelativePath String mimeType1 String mimeType2 String filePath java.io.File file org.tmatesoft.svn.core.internal.wc.SVNFileType fileType int i java.io.File root org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String parentRelativePath boolean anchor java.util.Set processedFiles java.io.File[] allFiles private org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo createDirInfo (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo parent String path boolean added org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo info private org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo createFileInfo (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo, java.lang.String, boolean) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo parent String path boolean added org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNFileInfo info private java.io.File detranslateFile (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String name org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties properties String keywords String eolStyle String charsetProp String mimeType org.tmatesoft.svn.core.wc.ISVNOptions options String charset boolean special byte[] eol java.io.File tmpFile java.util.Map keywordsMap private java.io.File createTempFile () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File tmpFile private java.io.File getTempDirectory () throws org.tmatesoft.svn.core.SVNException private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea retrieve (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path java.io.File dir private org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback getDiffCallback () private static void reversePropChanges (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) String name org.tmatesoft.svn.core.SVNPropertyValue newValue org.tmatesoft.svn.core.SVNPropertyValue oldValue java.util.Iterator names org.tmatesoft.svn.core.SVNProperties base org.tmatesoft.svn.core.SVNProperties diff java.util.Collection namesList private static org.tmatesoft.svn.core.SVNProperties computePropsDiff (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNPropertyValue oldValue org.tmatesoft.svn.core.SVNPropertyValue value String newPropName java.util.Iterator names String oldPropName java.util.Iterator names org.tmatesoft.svn.core.SVNProperties props1 org.tmatesoft.svn.core.SVNProperties props2 org.tmatesoft.svn.core.SVNProperties propsDiff }
org/tmatesoft/svn/core/internal/wc/SVNExportEditor.class
SVNExportEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNExportEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private java.io.File myRoot private boolean myIsForce private String myEOLStyle private java.io.File myCurrentDirectory private java.io.File myCurrentFile private java.io.File myCurrentTmpFile private String myCurrentPath private java.util.Map myExternals private org.tmatesoft.svn.core.SVNProperties myFileProperties private org.tmatesoft.svn.core.wc.ISVNEventHandler myEventDispatcher private String myURL private org.tmatesoft.svn.core.wc.ISVNOptions myOptions private org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor myDeltaProcessor private boolean myIsExpandKeywords private String myChecksum public void <init> (org.tmatesoft.svn.core.wc.ISVNEventHandler, java.lang.String, java.io.File, boolean, java.lang.String, boolean, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNEventHandler eventDispatcher String url java.io.File dstPath boolean force String eolStyle boolean expandKeywords org.tmatesoft.svn.core.wc.ISVNOptions options public java.util.Map getCollectedExternals () public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File[] children org.tmatesoft.svn.core.SVNErrorMessage err String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNFileType dirType public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path String copyFromPath long copyFromRevision java.io.File file public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String commitPath String name org.tmatesoft.svn.core.SVNPropertyValue value public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String commitPath String baseChecksum String name public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String commitPath org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String commitPath public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String url String author String revStr String date boolean special String mimeType boolean binary String keywords java.util.Map keywordsMap String charset byte[] eolBytes boolean executable String commitPath String textChecksum String realChecksum public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void abortEdit () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/DefaultSVNAuthenticationManager$CacheAuthenticationProvider.class
DefaultSVNAuthenticationManager.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$CacheAuthenticationProvider extends java.lang.Object implements org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider { final synthetic org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager this$0 private void <init> (org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager) public org.tmatesoft.svn.core.auth.SVNAuthentication requestClientAuthentication (java.lang.String, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.auth.SVNAuthentication, boolean) String kind org.tmatesoft.svn.core.SVNURL url String realm org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.auth.SVNAuthentication previousAuth boolean authMayBeStored String actualRealm public void saveAuthentication (org.tmatesoft.svn.core.auth.SVNAuthentication, java.lang.String) org.tmatesoft.svn.core.auth.SVNAuthentication auth String realm String kind String actualRealm public int acceptServerAuthentication (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.Object, boolean) org.tmatesoft.svn.core.SVNURL url String r Object serverAuth boolean resultMayBeStored synthetic void <init> (org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager, org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$1) org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager x0 org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$1 x1 }
org/tmatesoft/svn/core/internal/wc/SVNConflictVersion.class
SVNConflictVersion.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNConflictVersion extends java.lang.Object { private final org.tmatesoft.svn.core.SVNURL myRepositoryRoot private final String myPath private final long myPegRevision private final org.tmatesoft.svn.core.SVNNodeKind myKind public void <init> (org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNURL repositoryRoot String path long pegRevision org.tmatesoft.svn.core.SVNNodeKind kind public org.tmatesoft.svn.core.SVNURL getRepositoryRoot () public java.lang.String getPath () public long getPegRevision () public org.tmatesoft.svn.core.SVNNodeKind getKind () public java.lang.String toString () }
org/tmatesoft/svn/core/internal/wc/ISVNPropertyComparator.class
ISVNPropertyComparator.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNPropertyComparator extends java.lang.Object { public abstract void propertyAdded (java.lang.String, java.io.InputStream, int) public abstract void propertyDeleted (java.lang.String) public abstract void propertyChanged (java.lang.String, java.io.InputStream, int) }
org/tmatesoft/svn/core/internal/wc/SVNImportMediator.class
SVNImportMediator.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNImportMediator extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNWorkspaceMediator { public void <init> () public org.tmatesoft.svn.core.SVNPropertyValue getWorkspaceProperty (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String name public void setWorkspaceProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value }
org/tmatesoft/svn/core/internal/wc/ISVNFileContentFetcher.class
ISVNFileContentFetcher.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNFileContentFetcher extends java.lang.Object { public abstract void fetchFileContent (java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException public abstract boolean fileIsBinary () throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNPropertyValue getProperty (java.lang.String) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/SVNPropertiesManager$1.class
SVNPropertiesManager.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.SVNPropertiesManager$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNFileContentFetcher { final synthetic java.io.File val$path final synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess val$access void <init> (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) public void fetchFileContent (java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ioew java.io.IOException e java.io.OutputStream os java.io.InputStream is public boolean fileIsBinary () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue mimeType public org.tmatesoft.svn.core.SVNPropertyValue getProperty (java.lang.String) throws org.tmatesoft.svn.core.SVNException String propertyName }
org/tmatesoft/svn/core/internal/wc/SVNMergeInfoManager.class
SVNMergeInfoManager.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNMergeInfoManager extends java.lang.Object { public void <init> () public java.util.Map getMergeInfo (java.lang.String[], org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path java.util.Map pathMergeInfo java.util.Iterator mergeInfoIter String[] paths org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit boolean includeDescendants java.util.Map mergeInfoAsHashes java.util.Map mergeInfo private java.util.Map getMergeInfoForPaths (org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String[], org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean) throws org.tmatesoft.svn.core.SVNException String path java.util.Map pathMergeInfo int i org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root String[] paths org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit boolean includeDescendants java.util.Map result private void addDescendantMergeInfo (java.util.Map, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.util.Map result org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root String path org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node private java.util.Map crawlDirectoryForMergeInfo (org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNProperties propList String mergeInfoString java.util.Map kidMergeInfo org.tmatesoft.svn.core.internal.io.fs.FSEntry entry String kidPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode kidNode java.util.Iterator entriesIter org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root String path org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node java.util.Map result org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs java.util.Map entries private java.util.Map getMergeInfoForPath (org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, org.tmatesoft.svn.core.SVNMergeInfoInheritance) throws org.tmatesoft.svn.core.SVNException boolean hasMergeInfo org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot revRoot String path org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit java.util.Map mergeInfo org.tmatesoft.svn.core.internal.io.fs.FSParentPath parentPath org.tmatesoft.svn.core.internal.io.fs.FSParentPath nearestAncestor org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.SVNProperties propList String mergeInfoString java.util.Map tmpMergeInfo private java.util.Map appendToMergedFroms (java.util.Map, java.lang.String) String path org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator pathsIter java.util.Map mergeInfo String pathComponent java.util.Map result }
org/tmatesoft/svn/core/internal/wc/SVNDiffCallback.class
SVNDiffCallback.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNDiffCallback extends org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback { private org.tmatesoft.svn.core.wc.ISVNDiffGenerator myGenerator private java.io.OutputStream myResult private long myRevision2 private long myRevision1 private static final org.tmatesoft.svn.core.wc.SVNStatusType[] EMPTY_STATUS public void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.wc.ISVNDiffGenerator, long, long, java.io.OutputStream) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.wc.ISVNDiffGenerator generator long rev1 long rev2 java.io.OutputStream result public java.io.File createTempDirectory () throws org.tmatesoft.svn.core.SVNException public boolean isDiffUnversioned () public boolean isDiffCopiedAsAdded () public org.tmatesoft.svn.core.wc.SVNStatusType directoryAdded (java.lang.String, long, boolean[]) throws org.tmatesoft.svn.core.SVNException String path long revision boolean[] isTreeConflicted public org.tmatesoft.svn.core.wc.SVNStatusType directoryDeleted (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public org.tmatesoft.svn.core.wc.SVNStatusType[] fileAdded (java.lang.String, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException String path java.io.File file1 java.io.File file2 long revision1 long revision2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties diff boolean[] isTreeConflicted public org.tmatesoft.svn.core.wc.SVNStatusType[] fileChanged (java.lang.String, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException String path java.io.File file1 java.io.File file2 long revision1 long revision2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties diff boolean[] isTreeConflicted public org.tmatesoft.svn.core.wc.SVNStatusType fileDeleted (java.lang.String, java.io.File, java.io.File, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException String path java.io.File file1 java.io.File file2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties originalProperties boolean[] isTreeConflicted private void displayFileDiff (java.lang.String, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String conversionEncoding java.io.IOException e java.io.IOException e String path java.io.File file1 java.io.File file2 long revision1 long revision2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties diff boolean resetEncoding java.io.OutputStream result String encoding private boolean adjustDiffGenerator (java.lang.String) java.io.UnsupportedEncodingException e byte[] eol String eolString org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator generator boolean encodingAdjusted String charset public org.tmatesoft.svn.core.wc.SVNStatusType propertiesChanged (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties diff boolean[] isTreeConflicted org.tmatesoft.svn.core.SVNProperties regularDiff private java.lang.String getRevision (long) long revision private java.lang.String defineEncoding (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator defaultGenerator String originalEncoding String changedEncoding org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.SVNProperties diff private java.lang.String defineConversionEncoding (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator defaultGenerator String originalCharset String changedCharset String globalEncoding org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.SVNProperties diff private java.lang.String getCharsetByMimeType (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator) org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator generator String mimeType String charset private java.lang.String getCharset (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator) org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator generator String charset private java.lang.String getCharset (java.lang.String, org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator, boolean) String charset org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator generator boolean allowNative public org.tmatesoft.svn.core.wc.SVNStatusType directoryDeleted (java.lang.String, boolean[]) throws org.tmatesoft.svn.core.SVNException String path boolean[] isTreeConflicted public void directoryOpened (java.lang.String, long, boolean[]) throws org.tmatesoft.svn.core.SVNException String path long revision boolean[] isTreeConflicted public org.tmatesoft.svn.core.wc.SVNStatusType[] directoryClosed (java.lang.String, boolean[]) throws org.tmatesoft.svn.core.SVNException String path boolean[] isTreeConflicted static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/SVNCommitUtil$1.class
SVNCommitUtil.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.SVNCommitUtil$1 extends java.lang.Object implements java.util.Comparator { void <init> () public int compare (java.lang.Object, java.lang.Object) Object o1 Object o2 java.io.File f1 java.io.File f2 }
org/tmatesoft/svn/core/internal/wc/SVNCommitMediator.class
SVNCommitMediator.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNCommitMediator extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNWorkspaceMediator { private java.util.Collection myTmpFiles private java.util.Map myWCPropsMap private java.util.Map myCommitItems public void <init> (java.util.Map) java.util.Map commitItems public org.tmatesoft.svn.core.SVNProperties getWCProperties (org.tmatesoft.svn.core.wc.SVNCommitItem) org.tmatesoft.svn.core.wc.SVNCommitItem item public java.util.Collection getTmpFiles () public org.tmatesoft.svn.core.SVNPropertyValue getWorkspaceProperty (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String target String path String name org.tmatesoft.svn.core.wc.SVNCommitItem item org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String target org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties wcProps public void setWorkspaceProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.wc.SVNCommitItem item }
org/tmatesoft/svn/core/internal/wc/ISVNAuthenticationStorage.class
ISVNAuthenticationStorage.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorage extends java.lang.Object { public abstract void putData (java.lang.String, java.lang.String, java.lang.Object) public abstract java.lang.Object getData (java.lang.String, java.lang.String) }
org/tmatesoft/svn/core/internal/wc/SVNRemoteDiffEditor$KindActionState.class
SVNRemoteDiffEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$KindActionState extends java.lang.Object { protected org.tmatesoft.svn.core.SVNNodeKind myKind protected org.tmatesoft.svn.core.wc.SVNEventAction myAction protected org.tmatesoft.svn.core.wc.SVNEventAction myExpectedAction protected org.tmatesoft.svn.core.wc.SVNStatusType myStatus protected boolean myIsTreeConflicted final synthetic org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor this$0 protected void <init> (org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor) }
org/tmatesoft/svn/core/internal/wc/SVNWinCryptPasswordCipher.class
SVNWinCryptPasswordCipher.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNWinCryptPasswordCipher extends org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher { public void <init> () public static boolean isEnabled () public java.lang.String decrypt (java.lang.String) String encryptedData public java.lang.String encrypt (java.lang.String) String rawData public java.lang.String getCipherType () }
org/tmatesoft/svn/core/internal/wc/DefaultDumpFilterHandler.class
DefaultDumpFilterHandler.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNLoadHandler { private boolean myIsDoRenumberRevisions private boolean myIsDoExclude private boolean myIsPreserveRevisionProps private boolean myIsDropEmptyRevisions private boolean myIsSkipMissingMergeSources private long myDroppedRevisionsCount private long myLastLiveRevision private java.io.OutputStream myOutputStream private java.util.Collection myPrefixes private java.util.Map myDroppedNodes private java.util.Map myRenumberHistory private org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$RevisionBaton myCurrentRevisionBaton private org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$NodeBaton myCurrentNodeBaton private org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler myEventHandler public void <init> (java.io.OutputStream, org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler, boolean, boolean, boolean, boolean, java.util.Collection, boolean) java.io.OutputStream os org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler handler boolean exclude boolean renumberRevisions boolean dropEmptyRevisions boolean preserveRevisionProperties java.util.Collection prefixes boolean skipMissingMergeSources public void reset (java.io.OutputStream, org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler, boolean, boolean, boolean, boolean, java.util.Collection, boolean) java.io.OutputStream os org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler handler boolean exclude boolean renumberRevisions boolean dropEmptyRevisions boolean preserveRevisionProperties java.util.Collection prefixes boolean skipMissingMergeSources public void closeNode () throws org.tmatesoft.svn.core.SVNException public void closeRevision () throws org.tmatesoft.svn.core.SVNException public void openNode (java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNNodeKind kind NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err long copyFromOriginalRevision org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$RevisionItem reNumberedCopyFromValue String header String headerValue java.util.Iterator headersIter long textContentLength java.util.Map headers String nodePath String copyFromPath public void openRevision (java.util.Map) throws org.tmatesoft.svn.core.SVNException String header String headerValue java.util.Iterator headersIter java.util.Map headers org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$RevisionBaton revisionBaton public void parseTextBlock (java.io.InputStream, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe int numRead org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe int numToRead int read java.io.InputStream dumpStream long contentLength boolean isDelta byte[] buffer public void parseUUID (java.lang.String) throws org.tmatesoft.svn.core.SVNException String uuid public void removeNodeProperties () throws org.tmatesoft.svn.core.SVNException public void setFullText () throws org.tmatesoft.svn.core.SVNException public void setRevisionProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public void setNodeProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.util.Map filteredMergeInfo String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public void deleteNodeProperty (java.lang.String) throws org.tmatesoft.svn.core.SVNException String propertyName public void applyTextDelta () throws org.tmatesoft.svn.core.SVNException public long getDroppedRevisionsCount () public java.util.Map getRenumberHistory () public java.util.Map getDroppedNodes () private void outputRevision (org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$RevisionBaton) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties oldProps String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propsIter String message String message org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$RevisionBaton revisionBaton java.io.ByteArrayOutputStream propsBuffer private void outputNode (org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$NodeBaton) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$NodeBaton nodeBaton private void writeProperty (java.io.OutputStream, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException byte[] propNameBytes byte[] propValueBytes org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.OutputStream out String propName org.tmatesoft.svn.core.SVNPropertyValue propValue private java.util.Map adjustMergeInfo (org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$RevisionItem revItemStart org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$RevisionItem revItemEnd int i org.tmatesoft.svn.core.SVNMergeRange[] ranges String mergeSource org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator mergeInfoIter org.tmatesoft.svn.core.SVNPropertyValue initialValue java.util.Map finalMergeInfo java.util.Map mergeInfo private org.tmatesoft.svn.core.SVNNodeKind getNodeKindFromHeaders (java.lang.String, java.util.Map) String header java.util.Map headers private long getLongFromHeaders (java.lang.String, java.util.Map) NumberFormatException nfe String header java.util.Map headers String val private void writeDumpData (java.io.OutputStream, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe java.io.OutputStream out String data private void writeDumpData (java.io.OutputStream, byte[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe java.io.OutputStream out byte[] bytes private boolean skipPath (java.lang.String) String prefix java.util.Iterator prefixesIter String path private void dispatchEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event static synthetic void access$100 (org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler, java.io.OutputStream, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler x0 java.io.OutputStream x1 String x2 static synthetic void access$200 (org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler, java.io.OutputStream, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler x0 java.io.OutputStream x1 String x2 org.tmatesoft.svn.core.SVNPropertyValue x3 }
org/tmatesoft/svn/core/internal/wc/SVNMergeCallback15$1.class
SVNMergeCallback15.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNMergeCallback15$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { final synthetic org.tmatesoft.svn.core.wc.ISVNEventHandler val$oldEventHandler final synthetic org.tmatesoft.svn.core.internal.wc.SVNMergeCallback15 this$0 void <init> (org.tmatesoft.svn.core.internal.wc.SVNMergeCallback15, org.tmatesoft.svn.core.wc.ISVNEventHandler) public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress }
org/tmatesoft/svn/core/internal/wc/SVNCancellableEditor.class
SVNCancellableEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNCancellableEditor extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor { private org.tmatesoft.svn.core.io.ISVNEditor myDelegate private org.tmatesoft.svn.core.ISVNCanceller myCancel private org.tmatesoft.svn.util.ISVNDebugLog myLog public static org.tmatesoft.svn.core.io.ISVNEditor newInstance (org.tmatesoft.svn.core.io.ISVNEditor, org.tmatesoft.svn.core.ISVNCanceller, org.tmatesoft.svn.util.ISVNDebugLog) org.tmatesoft.svn.core.io.ISVNEditor editor org.tmatesoft.svn.core.ISVNCanceller cancel org.tmatesoft.svn.util.ISVNDebugLog log private void <init> (org.tmatesoft.svn.core.io.ISVNEditor, org.tmatesoft.svn.core.ISVNCanceller, org.tmatesoft.svn.util.ISVNDebugLog) org.tmatesoft.svn.core.io.ISVNEditor delegate org.tmatesoft.svn.core.ISVNCanceller cancel org.tmatesoft.svn.util.ISVNDebugLog log public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String textChecksum public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void abortEdit () throws org.tmatesoft.svn.core.SVNException public long getTargetRevision () }
org/tmatesoft/svn/core/internal/wc/SVNStatusEditor.class
SVNStatusEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNStatusEditor extends java.lang.Object { private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess myWCAccess private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo myAdminInfo private boolean myIsReportAll private boolean myIsNoIgnore private org.tmatesoft.svn.core.SVNDepth myDepth private org.tmatesoft.svn.core.wc.ISVNStatusHandler myStatusHandler private java.util.Map myExternalsMap private java.util.Collection myGlobalIgnores protected org.tmatesoft.svn.core.SVNURL myRepositoryRoot private java.util.Map myRepositoryLocks private long myTargetRevision private String myWCRootPath private org.tmatesoft.svn.core.wc.ISVNStatusFileProvider myFileProvider private org.tmatesoft.svn.core.wc.ISVNStatusFileProvider myDefaultFileProvider public void <init> (org.tmatesoft.svn.core.wc.ISVNOptions, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNStatusHandler) org.tmatesoft.svn.core.wc.ISVNOptions options org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info boolean noIgnore boolean reportAll org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNStatusHandler handler public long getTargetRevision () public void targetRevision (long) long revision public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea target org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File path org.tmatesoft.svn.core.internal.wc.SVNFileType type public void setRepositoryInfo (org.tmatesoft.svn.core.SVNURL, java.util.Map) org.tmatesoft.svn.core.SVNURL root java.util.Map repositoryLocks protected void getDirStatus (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, java.util.Collection, boolean, org.tmatesoft.svn.core.wc.ISVNStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNExternal external int i String path org.tmatesoft.svn.core.internal.wc.SVNExternal[] externalsInfo org.tmatesoft.svn.core.internal.wc.SVNFileType fileType boolean special org.tmatesoft.svn.core.SVNNodeKind fileKind org.tmatesoft.svn.core.internal.wc.SVNFileType fileType boolean special org.tmatesoft.svn.core.SVNNodeKind fileKind org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.wc.SVNStatus status String fileName org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File file java.util.Iterator files java.io.File conflictPath java.util.Iterator treeConflictsIter org.tmatesoft.svn.core.wc.SVNStatus status org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File file org.tmatesoft.svn.core.internal.wc.SVNFileType fileType boolean special org.tmatesoft.svn.core.SVNNodeKind fileKind java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String entryName org.tmatesoft.svn.core.SVNDepth depth boolean getAll boolean noIgnore java.util.Collection ignorePatterns boolean skipThisDir org.tmatesoft.svn.core.wc.ISVNStatusHandler handler java.util.Map childrenFiles org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dirEntry String externals java.util.Map treeConflicts public static boolean isNameConflict (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry protected void cleanup () protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getAnchor () protected org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess getWCAccess () protected org.tmatesoft.svn.core.SVNDepth getDepth () protected boolean isReportAll () protected boolean isNoIgnore () protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo getAdminAreaInfo () protected org.tmatesoft.svn.core.wc.ISVNStatusHandler getDefaultHandler () protected boolean hasTarget () protected org.tmatesoft.svn.core.SVNLock getLock (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url private void handleDirEntry (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.SVNNodeKind, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.wc.SVNStatus status org.tmatesoft.svn.core.wc.SVNStatus status org.tmatesoft.svn.core.internal.wc.admin.SVNEntry fullEntry org.tmatesoft.svn.core.wc.SVNStatus status org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String entryName org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dirEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNNodeKind fileKind boolean special org.tmatesoft.svn.core.SVNDepth depth boolean getAll boolean noIgnore org.tmatesoft.svn.core.wc.ISVNStatusHandler handler java.io.File path private void sendUnversionedStatus (java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, boolean, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.util.Collection, boolean, org.tmatesoft.svn.core.wc.ISVNStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File file String name org.tmatesoft.svn.core.SVNNodeKind fileType boolean special org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir java.util.Collection ignorePatterns boolean noIgnore org.tmatesoft.svn.core.wc.ISVNStatusHandler handler String path boolean isIgnored boolean isExternal org.tmatesoft.svn.core.wc.SVNStatus status protected org.tmatesoft.svn.core.wc.SVNStatus assembleStatus (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.SVNNodeKind, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.SVNNodeKind fileKind boolean special boolean reportAll boolean isIgnored protected java.lang.String getWCRootPath () java.io.File root org.tmatesoft.svn.core.SVNException e protected java.lang.String getWCRootRelativePath (java.util.Collection, java.io.File) String pattern java.util.Iterator patterns java.util.Collection ignorePatterns java.io.File file boolean needToComputeWCRelativePath String rootRelativePath private boolean isExternal (java.lang.String) String externalPath java.util.Iterator paths String path public static java.util.Collection getIgnorePatterns (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.util.Collection) throws org.tmatesoft.svn.core.SVNException String token java.util.StringTokenizer tokens java.util.Collection patterns org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir java.util.Collection globalIgnores String localIgnores public static java.util.Collection getGlobalIgnores (org.tmatesoft.svn.core.wc.ISVNOptions) int i java.util.Collection patterns String[] ignores org.tmatesoft.svn.core.wc.ISVNOptions options public static boolean isIgnored (java.util.Collection, java.io.File) java.util.Collection patterns java.io.File file public static boolean isIgnored (java.util.Collection, java.io.File, java.lang.String) String pattern java.util.Iterator ps java.util.Collection patterns java.io.File file String relativePath String name String dirName boolean isDirectory public void setFileProvider (org.tmatesoft.svn.core.wc.ISVNStatusFileProvider) org.tmatesoft.svn.core.wc.ISVNStatusFileProvider fileProvider }
org/tmatesoft/svn/core/internal/wc/SVNUpdateEditor15.class
SVNUpdateEditor15.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor org.tmatesoft.svn.core.internal.wc.admin.ISVNCleanupHandler { private String mySwitchURL private String myTarget private String myTargetURL private String myRootURL private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo myAdminInfo private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo myCurrentDirectory private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo myCurrentFile private long myTargetRevision private boolean myIsRootOpen private boolean myIsTargetDeleted private boolean myIsUnversionedObstructionsAllowed private boolean myIsDepthSticky private java.util.Collection mySkippedPaths private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess myWCAccess private org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor myDeltaProcessor private org.tmatesoft.svn.core.SVNDepth myRequestedDepth private String[] myExtensionPatterns private org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher myFileFetcher private boolean myIsLockOnDemand private void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, java.lang.String[], java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher, boolean) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info String switchURL boolean allowUnversionedObstructions boolean depthIsSticky org.tmatesoft.svn.core.SVNDepth depth String[] preservedExtensions String targetURL String rootURL org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher fileFetcher boolean lockOnDemand public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public long getTargetRevision () public void openRoot (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map attributes long revision public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea org.tmatesoft.svn.core.SVNException svne String path long revision String name org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.SVNProperties attributes org.tmatesoft.svn.core.SVNNodeKind kind long previousRevision boolean isDeleted org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNEvent event private void handleLeftLocalModificationsError (org.tmatesoft.svn.core.SVNException) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException originalError org.tmatesoft.svn.core.SVNException error public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.wc.SVNEvent event String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo parentDirectory String name java.io.File childDir org.tmatesoft.svn.core.internal.wc.SVNFileType kind org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map attributes boolean force String rootURL org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException java.util.Collection skippedPaths org.tmatesoft.svn.core.wc.SVNEvent event boolean hasPropConflicts String path long revision org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map attributes private java.util.Collection getSkippedPaths () public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path private void absentEntry (java.lang.String, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.SVNNodeKind kind String name org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map attributes public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value private void clearWCProperty (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator ents org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String target public void closeDir () throws org.tmatesoft.svn.core.SVNException String name java.util.Iterator names org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties oldBaseProps org.tmatesoft.svn.core.SVNProperties baseMap String oldExternal String newExternal String path org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties oldBaseProps org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNProperties modifiedWCProps org.tmatesoft.svn.core.SVNProperties modifiedEntryProps org.tmatesoft.svn.core.SVNProperties modifiedProps org.tmatesoft.svn.core.wc.SVNStatusType propStatus org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException java.io.File targetFile public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String commitPath String name org.tmatesoft.svn.core.SVNPropertyValue value public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.InputStream baseIS String commitPath String baseChecksum org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean replaced boolean useRevertBase String checksum java.io.File baseSrcFile java.io.File baseTmpFile public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String commitPath org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String actualSourceChecksum String commitPath public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String commitPath String textChecksum public void abortEdit () throws org.tmatesoft.svn.core.SVNException private void checkIfPathIsUnderRoot (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err int i String testPath int ind String path private void maybeBumpDirInfo (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo dirInfo private void completeDirectory (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNDepth ambientDepth int directoryDepth java.util.Map attributes org.tmatesoft.svn.core.internal.wc.admin.SVNEntry currentEntry java.util.Iterator ents org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo dirInfo org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File target private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo addFile (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo, java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo parent String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.SVNFileType kind org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo addFileWithHistory (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo, java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumOutputStream checksumOS org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea srcArea String srcTextBasePath java.io.InputStream srcIS java.io.OutputStream copiedBaseOS org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumOutputStream checksumBaseTextOS java.io.OutputStream baseTextOS org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo parent String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry pathEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry srcEntry org.tmatesoft.svn.core.SVNProperties baseProperties org.tmatesoft.svn.core.SVNProperties workingProperties private org.tmatesoft.svn.core.internal.wc.admin.SVNEntry locateCopyFrom (java.lang.String, long, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err int i org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne String copyFromPath long copyFromRevision java.io.File dstDir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry String dstReposPath String copyFromParent String ancestorPath int levelsUP java.io.File currentWD org.tmatesoft.svn.core.internal.wc.SVNFileType kind org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess ancestorAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea ancestorArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry ancestorEntry org.tmatesoft.svn.core.SVNURL ancestorURL String extraComponents java.io.File currentWDParent org.tmatesoft.svn.core.internal.wc.admin.SVNEntry fileEntry org.tmatesoft.svn.core.SVNURL fileURL private void changeFileProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo) String name org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo fileInfo private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo openFile (java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.util.Collection skippedPaths java.io.File file org.tmatesoft.svn.core.wc.SVNEvent event String path org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo parent org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean hasTextConflicts boolean hasPropConflicts private void closeFile (java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo, org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean replaced boolean useRevertBase org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String propName java.util.Iterator names org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties oldBaseProps org.tmatesoft.svn.core.SVNProperties baseMap String absBasePath String absTmpBasePath String extPattern int i boolean matches int dotInd String absCopiedWorkingTextPath String copiedWorkingTextPath java.io.File mergeLeftFile String pathExt boolean deleteLeftMergeFile boolean deleteCopiedBaseText String absMergeLeftFilePath String mergeLeftFilePath String leftLabel String rightLabel String mineLabel org.tmatesoft.svn.core.internal.wc.SVNFileType kind String tmpPath String absCopiedBaseTextPath String copiedBaseTextPath org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEvent event String textChecksum org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo fileInfo org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo dirInfo String checksum boolean isTextUpdated org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry fileEntry long previousRevision org.tmatesoft.svn.core.SVNURL previousURL org.tmatesoft.svn.core.SVNProperties modifiedWCProps org.tmatesoft.svn.core.SVNProperties modifiedEntryProps org.tmatesoft.svn.core.SVNProperties modifiedProps String commitTime org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.wc.SVNStatusType textStatus org.tmatesoft.svn.core.wc.SVNStatusType lockStatus boolean magicPropsChanged org.tmatesoft.svn.core.wc.SVNStatusType propStatus boolean isLocallyModified boolean isReplaced org.tmatesoft.svn.core.SVNProperties logAttributes String absDirPath String basePath String tmpBasePath org.tmatesoft.svn.core.wc.SVNStatusType mergeOutcome java.io.File workingFile boolean deletedCopiedBaseText private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo createFileInfo (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo parent String path boolean added org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNFileInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo createDirectoryInfo (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo, java.lang.String, boolean) org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dirEntry java.io.File areaPath org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo parent String path boolean added org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo info String name public static org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15 createUpdateEditor (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, java.lang.String[], org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info String switchURL boolean allowUnversionedObstructions boolean depthIsSticky org.tmatesoft.svn.core.SVNDepth depth String[] preservedExtensions org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher fileFetcher boolean lockOnDemand org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15 editor public void cleanup (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area static synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo access$600 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15 x0 static synthetic boolean access$700 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15 x0 }
org/tmatesoft/svn/core/internal/wc/SVNStatusEditor$WrapperSVNStatusFileProvider.class
SVNStatusEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNStatusEditor$WrapperSVNStatusFileProvider extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNStatusFileProvider { private final org.tmatesoft.svn.core.wc.ISVNStatusFileProvider myDefault private final org.tmatesoft.svn.core.wc.ISVNStatusFileProvider myDelegate private void <init> (org.tmatesoft.svn.core.wc.ISVNStatusFileProvider, org.tmatesoft.svn.core.wc.ISVNStatusFileProvider) org.tmatesoft.svn.core.wc.ISVNStatusFileProvider defaultProvider org.tmatesoft.svn.core.wc.ISVNStatusFileProvider delegate public java.util.Map getChildrenFiles (java.io.File) java.io.File parent java.util.Map result synthetic void <init> (org.tmatesoft.svn.core.wc.ISVNStatusFileProvider, org.tmatesoft.svn.core.wc.ISVNStatusFileProvider, org.tmatesoft.svn.core.internal.wc.SVNStatusEditor$1) org.tmatesoft.svn.core.wc.ISVNStatusFileProvider x0 org.tmatesoft.svn.core.wc.ISVNStatusFileProvider x1 org.tmatesoft.svn.core.internal.wc.SVNStatusEditor$1 x2 }
org/tmatesoft/svn/core/internal/wc/SVNAdminHelper.class
SVNAdminHelper.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNAdminHelper extends java.lang.Object { public static final String DUMPFILE_MAGIC_HEADER public static final String DUMPFILE_CONTENT_LENGTH public static final String DUMPFILE_NODE_ACTION public static final String DUMPFILE_NODE_COPYFROM_PATH public static final String DUMPFILE_NODE_COPYFROM_REVISION public static final String DUMPFILE_NODE_KIND public static final String DUMPFILE_NODE_PATH public static final String DUMPFILE_PROP_CONTENT_LENGTH public static final String DUMPFILE_PROP_DELTA public static final String DUMPFILE_REVISION_NUMBER public static final String DUMPFILE_TEXT_CONTENT_LENGTH public static final String DUMPFILE_TEXT_DELTA public static final String DUMPFILE_UUID public static final String DUMPFILE_TEXT_CONTENT_MD5 public static final String DUMPFILE_TEXT_CONTENT_SHA1 public static final String DUMPFILE_TEXT_COPY_SOURCE_MD5 public static final String DUMPFILE_TEXT_COPY_SOURCE_SHA1 public static final String DUMPFILE_TEXT_DELTA_BASE_MD5 public static final String DUMPFILE_TEXT_DELTA_BASE_SHA1 public static final int DUMPFILE_FORMAT_VERSION public static final int NODE_ACTION_ADD public static final int NODE_ACTION_CHANGE public static final int NODE_ACTION_DELETE public static final int NODE_ACTION_REPLACE public static final int NODE_ACTION_UNKNOWN public void <init> () public static int writeRevisionProperties (org.tmatesoft.svn.core.io.SVNRepository, long, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propNamesIter org.tmatesoft.svn.core.io.SVNRepository toRepository long revision org.tmatesoft.svn.core.SVNProperties revProps int filteredCount public static void removePropertiesNotInSource (org.tmatesoft.svn.core.io.SVNRepository, long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String propName java.util.Iterator propNamesIter org.tmatesoft.svn.core.io.SVNRepository repository long revision org.tmatesoft.svn.core.SVNProperties sourceProps org.tmatesoft.svn.core.SVNProperties targetProps public static org.tmatesoft.svn.core.internal.io.fs.FSFS openRepository (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File reposRootPath boolean openFS org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public static void closeRepository (org.tmatesoft.svn.core.internal.io.fs.FSFS) org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public static org.tmatesoft.svn.core.internal.io.fs.FSFS openRepositoryForRecovery (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File reposRootPath org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public static long getRevisionNumber (org.tmatesoft.svn.core.wc.SVNRevision, long, org.tmatesoft.svn.core.internal.io.fs.FSFS) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNRevision revision long youngestRevision org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs long revNumber public static void writeProperties (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException int ind String propName java.util.Iterator names org.tmatesoft.svn.core.SVNPropertyValue oldValue String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator names String propName java.util.Iterator names byte[] terminator org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNProperties oldProps java.io.OutputStream dumpStream java.util.LinkedList propNames public static void deltifyDir (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot String srcParentDir String srcEntry org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot tgtRoot String tgtFullPath org.tmatesoft.svn.core.io.ISVNEditor editor String srcFullPath org.tmatesoft.svn.core.SVNNodeKind tgtKind org.tmatesoft.svn.core.SVNNodeKind srcKind long rootRevision org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode srcNode org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode tgtNode int distance public static void generateIncompleteDataError () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err public static void generateStreamMalformedError () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err public static int readKeyOrValue (java.io.InputStream, byte[], int) throws org.tmatesoft.svn.core.SVNException java.io.IOException int r java.io.InputStream dumpStream byte[] buffer int len int read private static void addFileOrDir (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.io.ISVNEditor, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode tgtNode org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.io.ISVNEditor editor org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot tgtRoot String tgtPath String editPath org.tmatesoft.svn.core.SVNNodeKind tgtKind private static void replaceFileOrDir (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.io.ISVNEditor, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode tgtNode org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.io.ISVNEditor editor org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot tgtRoot String srcPath String tgtPath String editPath org.tmatesoft.svn.core.SVNNodeKind tgtKind long baseRevision private static void deltifyFiles (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.io.ISVNEditor, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode srcNode String srcHexDigest org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.io.ISVNEditor editor org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot tgtRoot String srcPath String tgtPath String editPath boolean changed private static void deltifyDirs (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.io.ISVNEditor, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode sourceNode org.tmatesoft.svn.core.internal.io.fs.FSEntry srcEntry String sourceFullPath org.tmatesoft.svn.core.SVNNodeKind srcKind int distance String name org.tmatesoft.svn.core.internal.io.fs.FSEntry tgtEntry org.tmatesoft.svn.core.SVNNodeKind tgtKind String targetFullPath String editFullPath java.util.Iterator tgtEntries String name org.tmatesoft.svn.core.internal.io.fs.FSEntry entry String editFullPath java.util.Iterator srcEntries org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.io.ISVNEditor editor org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot tgtRoot String srcPath String tgtPath String editPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode targetNode java.util.Map targetEntries java.util.Map sourceEntries private static void deltifyProperties (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.io.ISVNEditor, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode sourceNode boolean propsChanged String propName org.tmatesoft.svn.core.SVNPropertyValue propValue int i org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.io.ISVNEditor editor org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot tgtRoot String srcPath String tgtPath String editPath boolean isDir org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode targetNode org.tmatesoft.svn.core.SVNProperties sourceProps org.tmatesoft.svn.core.SVNProperties targetProps org.tmatesoft.svn.core.SVNProperties propsDiffs Object[] names private static void generateNotADirError (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String role String path org.tmatesoft.svn.core.SVNErrorMessage err }
org/tmatesoft/svn/core/internal/wc/SVNEventFactory.class
SVNEventFactory.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNEventFactory extends java.lang.Object { public void <init> () public static org.tmatesoft.svn.core.wc.SVNEvent createErrorEvent (org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.wc.SVNEventAction) org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.wc.SVNEventAction expectedAction org.tmatesoft.svn.core.wc.SVNEvent event public static org.tmatesoft.svn.core.wc.SVNEvent createLockEvent (java.io.File, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) java.io.File file org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public static org.tmatesoft.svn.core.wc.SVNEvent createSVNEvent (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, long, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.SVNMergeRange, java.lang.String) java.io.File file org.tmatesoft.svn.core.SVNNodeKind kind String mimetype long revision org.tmatesoft.svn.core.wc.SVNStatusType cstatus org.tmatesoft.svn.core.wc.SVNStatusType pstatus org.tmatesoft.svn.core.wc.SVNStatusType lstatus org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction expected org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNMergeRange range String changelistName public static org.tmatesoft.svn.core.wc.SVNEvent createSVNEvent (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, long, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.SVNMergeRange) java.io.File file org.tmatesoft.svn.core.SVNNodeKind kind String mimetype long revision org.tmatesoft.svn.core.wc.SVNStatusType cstatus org.tmatesoft.svn.core.wc.SVNStatusType pstatus org.tmatesoft.svn.core.wc.SVNStatusType lstatus org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction expected org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNMergeRange range public static org.tmatesoft.svn.core.wc.SVNEvent createSVNEvent (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, long, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.SVNMergeRange) java.io.File file org.tmatesoft.svn.core.SVNNodeKind kind String mimetype long revision org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction expected org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNMergeRange range public static org.tmatesoft.svn.core.wc.SVNEvent createSVNEvent (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, long, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.SVNMergeRange, long, long, org.tmatesoft.svn.core.SVNProperties, java.lang.String) java.io.File file org.tmatesoft.svn.core.SVNNodeKind kind String mimetype long revision org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction expected org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNMergeRange range long processedItemsCount long totalItemsCount org.tmatesoft.svn.core.SVNProperties revisionProperties String propertyName public static org.tmatesoft.svn.core.wc.SVNEvent createSVNEvent (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, long, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.SVNMergeRange, long, long) java.io.File file org.tmatesoft.svn.core.SVNNodeKind kind String mimetype long revision org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction expected org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNMergeRange range long processedItemsCount long totalItemsCount public static org.tmatesoft.svn.core.wc.SVNEvent createSVNEvent (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, long, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.SVNMergeRange, org.tmatesoft.svn.core.SVNProperties, java.lang.String) java.io.File file org.tmatesoft.svn.core.SVNNodeKind kind String mimetype long revision org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction expected org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.SVNProperties revisionProperties String propertyName }
org/tmatesoft/svn/core/internal/wc/SVNExternal$ExternalTokenizer.class
SVNExternal.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNExternal$ExternalTokenizer extends java.lang.Object implements java.util.Iterator { private String myNextToken private String myLine public void <init> (java.lang.String) String line public boolean hasNext () public java.lang.Object next () String next public void remove () private java.lang.String advance () char escaped char ch int quouteType int index StringBuffer result }
org/tmatesoft/svn/core/internal/wc/DefaultSVNConnectionOptions.class
DefaultSVNConnectionOptions.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNConnectionOptions extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNConnectionOptions { private static final String[] DEFAULT_PASSWORD_STORE_TYPES private final org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile myServersFile private final org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile myConfigFile public void <init> (org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile, org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile) org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile serversFile org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile configFile private org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile getServersFile () private org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile getConfigFile () public java.util.Collection getAuthTypes (org.tmatesoft.svn.core.SVNURL) String scheme java.util.StringTokenizer tokens org.tmatesoft.svn.core.SVNURL url java.util.List schemes String host java.util.Map hostProperties String authTypes private java.lang.String getAuthStorageEnabledOption (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url String host java.util.Map properties public boolean hasAuthStorageEnabledOption (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public boolean isAuthStorageEnabled (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url String storeAuthCreds public java.lang.String[] getPasswordStorageTypes () String type java.util.StringTokenizer types String storeTypesOption java.util.List storeTypes public boolean isStorePasswords (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url boolean store String value String host java.util.Map properties String storePasswords private java.lang.String getStorePlainTextPasswordOption (org.tmatesoft.svn.core.auth.SVNAuthentication) org.tmatesoft.svn.core.auth.SVNAuthentication auth org.tmatesoft.svn.core.SVNURL url String host java.util.Map properties public boolean isStorePlainTextPasswords (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException String realm org.tmatesoft.svn.core.auth.SVNAuthentication auth String storePlainTextPasswords public boolean isStoreSSLClientCertificatePassphrases (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url String host java.util.Map properties String storeCertPassphrases private java.lang.String getStorePlainTextPassphraseOption (org.tmatesoft.svn.core.auth.SVNAuthentication) org.tmatesoft.svn.core.auth.SVNAuthentication auth org.tmatesoft.svn.core.SVNURL url String host java.util.Map properties public boolean isStorePlainTextPassphrases (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException String realm org.tmatesoft.svn.core.auth.SVNAuthentication auth String storePlainTextPassphrases public java.lang.String getUserName (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url String host java.util.Map properties String userName private java.lang.String getDefaultSSHCommandLine () java.util.Map tunnels private java.lang.String getDefaultSSHOptionValue (java.lang.String, java.lang.String, java.lang.String) String value String sshCommandLine String optionName String systemProperty String fallbackSystemProperty public int getDefaultSSHPortNumber () NumberFormatException e String sshCommandLine String portOption String port public java.lang.String getDefaultSSHUserName () String userName public java.lang.String getDefaultSSHPassword () public java.lang.String getDefaultSSHKeyFile () public java.lang.String getDefaultSSHPassphrase () public java.lang.String getSSLClientCertFile (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url java.util.Map properties public java.lang.String getSSLClientCertPassword (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url java.util.Map properties public boolean trustDefaultSSLCertificateAuthority (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url String host java.util.Map properties public java.io.File[] getSSLAuthorityFiles (org.tmatesoft.svn.core.SVNURL) String fileName java.util.StringTokenizer files org.tmatesoft.svn.core.SVNURL url String host java.util.Map properties String sslAuthorityFilePaths java.util.Collection trustStorages public java.lang.String getProxyHost (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public java.lang.String getProxyPort (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public java.lang.String getProxyUserName (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public java.lang.String getProxyPassword (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url private java.lang.String getProxyOption (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String) org.tmatesoft.svn.core.SVNURL url String optionName String systemProperty String host java.util.Map properties String value private static boolean hostExceptedFromProxy (java.lang.String, java.util.Map) String exception java.util.StringTokenizer exceptions String host java.util.Map properties String proxyExceptions String proxyExceptionsSeparator public int getReadTimeout (org.tmatesoft.svn.core.SVNURL) NumberFormatException nfe String host java.util.Map properties String timeout org.tmatesoft.svn.core.SVNURL url String protocol public int getConnectTimeout (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url String protocol private java.util.Map getHostProperties (java.lang.String) java.util.Map hostProps String host java.util.Map globalProps String groupName private static java.lang.String getGroupName (java.util.Map, java.lang.String) String token java.util.StringTokenizer tokens String name String pattern java.util.Iterator names java.util.Map groups String host private static java.lang.String getOptionValue (java.lang.String, java.lang.String) String option java.util.StringTokenizer options String commandLine String optionName static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/SVNRevisionStatus.class
SVNRevisionStatus.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNRevisionStatus extends java.lang.Object { private long myMinRevision private long myMaxRevision private boolean myIsSwitched private boolean myIsModified private boolean myIsSparseCheckout public void <init> (long, long, boolean, boolean, boolean) long minRevision long maxRevision boolean isSwitched boolean isModified boolean isSparseCheckout public long getMinRevision () public long getMaxRevision () public boolean isSwitched () public boolean isModified () public boolean isSparseCheckout () }
org/tmatesoft/svn/core/internal/wc/SVNDepthFilterEditor$NodeBaton.class
SVNDepthFilterEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor$NodeBaton extends java.lang.Object { boolean myIsFiltered int myDirDepth org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor$NodeBaton myParentBaton final synthetic org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor, boolean, int, org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor$NodeBaton) boolean isFiltered int depth org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor$NodeBaton parent public boolean canEdit (org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNNodeKind entryKind int effectiveDepth org.tmatesoft.svn.core.SVNErrorMessage err }
org/tmatesoft/svn/core/internal/wc/ISVNInputFile.class
ISVNInputFile.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNInputFile extends java.lang.Object { public static final org.tmatesoft.svn.core.internal.wc.ISVNInputFile DUMMY_INPUT_FILE public abstract void seek (long) throws java.io.IOException public abstract long getFilePointer () throws java.io.IOException public abstract int read () throws java.io.IOException public abstract int read (byte[]) throws java.io.IOException public abstract int read (byte[], int, int) throws java.io.IOException public abstract long length () throws java.io.IOException public abstract void close () throws java.io.IOException static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/ISVNConnectionOptions.class
ISVNConnectionOptions.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNConnectionOptions extends java.lang.Object { public abstract java.util.Collection getAuthTypes (org.tmatesoft.svn.core.SVNURL) public abstract java.lang.String[] getPasswordStorageTypes () public abstract boolean isAuthStorageEnabled (org.tmatesoft.svn.core.SVNURL) public abstract boolean isStorePasswords (org.tmatesoft.svn.core.SVNURL) public abstract boolean isStorePlainTextPasswords (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException public abstract boolean isStoreSSLClientCertificatePassphrases (org.tmatesoft.svn.core.SVNURL) public abstract boolean isStorePlainTextPassphrases (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException public abstract java.lang.String getUserName (org.tmatesoft.svn.core.SVNURL) public abstract int getDefaultSSHPortNumber () public abstract java.lang.String getDefaultSSHUserName () public abstract java.lang.String getDefaultSSHPassword () public abstract java.lang.String getDefaultSSHKeyFile () public abstract java.lang.String getDefaultSSHPassphrase () public abstract java.lang.String getSSLClientCertFile (org.tmatesoft.svn.core.SVNURL) public abstract java.lang.String getSSLClientCertPassword (org.tmatesoft.svn.core.SVNURL) public abstract boolean trustDefaultSSLCertificateAuthority (org.tmatesoft.svn.core.SVNURL) public abstract java.io.File[] getSSLAuthorityFiles (org.tmatesoft.svn.core.SVNURL) public abstract java.lang.String getProxyHost (org.tmatesoft.svn.core.SVNURL) public abstract java.lang.String getProxyPort (org.tmatesoft.svn.core.SVNURL) public abstract java.lang.String getProxyUserName (org.tmatesoft.svn.core.SVNURL) public abstract java.lang.String getProxyPassword (org.tmatesoft.svn.core.SVNURL) public abstract int getReadTimeout (org.tmatesoft.svn.core.SVNURL) public abstract int getConnectTimeout (org.tmatesoft.svn.core.SVNURL) }
org/tmatesoft/svn/core/internal/wc/SVNPath.class
SVNPath.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNPath extends java.lang.Object { private String myTarget private org.tmatesoft.svn.core.wc.SVNRevision myPegRevision private java.io.File myFile public void <init> (java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision) String target org.tmatesoft.svn.core.wc.SVNRevision pegRevision public void <init> (java.lang.String) throws org.tmatesoft.svn.core.SVNException String target public void <init> (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String target boolean keepPegRevision public void <init> (java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException String target boolean keepPegRevision boolean parsePegRevision public java.lang.String getTarget () public boolean isURL () public boolean isFile () public java.io.File getFile () public org.tmatesoft.svn.core.SVNURL getURL () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.wc.SVNRevision getPegRevision () private void parsePegRevision (boolean) throws org.tmatesoft.svn.core.SVNException String revStr org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err boolean use int index protected static void assertControlChars (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err char ch String code int i String path }
org/tmatesoft/svn/core/internal/wc/SVNDiffEditor$SVNDirectoryInfo.class
SVNDiffEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo extends java.lang.Object { private boolean myIsAdded private String myPath private org.tmatesoft.svn.core.SVNProperties myPropertyDiff private org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo myParent private java.util.Set myComparedEntries private org.tmatesoft.svn.core.SVNDepth myDepth private void <init> () static synthetic java.util.Set access$000 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo x0 static synthetic java.lang.String access$100 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo x0 static synthetic org.tmatesoft.svn.core.SVNDepth access$200 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$300 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$302 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic boolean access$400 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo x0 static synthetic org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo access$500 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo x0 synthetic void <init> (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$1) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$1 x0 static synthetic org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo access$502 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo, org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo x0 org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo x1 static synthetic java.lang.String access$102 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo, java.lang.String) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo x0 String x1 static synthetic boolean access$402 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo, boolean) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo x0 boolean x1 static synthetic org.tmatesoft.svn.core.SVNDepth access$202 (org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo, org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.internal.wc.SVNDiffEditor$SVNDirectoryInfo x0 org.tmatesoft.svn.core.SVNDepth x1 }
org/tmatesoft/svn/core/internal/wc/ISVNCommitPathHandler.class
ISVNCommitPathHandler.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler extends java.lang.Object { public abstract boolean handleCommitPath (java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/SVNMergeDriver$SubTreeMergeInfoHandler.class
SVNMergeDriver.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$SubTreeMergeInfoHandler extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { private java.io.File myTargetPath private org.tmatesoft.svn.core.SVNURL myTargetReposRoot private java.util.Collection mySubTreesWithMergeInfoPaths final synthetic org.tmatesoft.svn.core.internal.wc.SVNMergeDriver this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver, java.io.File, org.tmatesoft.svn.core.SVNURL) java.io.File targetPath org.tmatesoft.svn.core.SVNURL targetReposRoot public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException String storedPath java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String mergeInfoProp public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error public java.util.Collection getSubTreesWithMergeInfoPaths () }
org/tmatesoft/svn/core/internal/wc/SVNUpdateEditor$SVNFileInfo.class
SVNUpdateEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo extends org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNEntryInfo { public String name public String commitTime public String checksum public String expectedSrcChecksum public String copiedBaseChecksum public java.io.File baseFile public java.io.File newBaseFile public boolean addedWithHistory public boolean receivedTextDelta private org.tmatesoft.svn.core.SVNProperties copiedBaseProperties private org.tmatesoft.svn.core.SVNProperties copiedWorkingProperties private java.io.File copiedBaseText private java.io.File copiedWorkingText private org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream sourceChecksumStream private boolean treeConficted private boolean isDeleted final synthetic org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor, org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo, java.lang.String) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo parent String path public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getAdminArea () throws org.tmatesoft.svn.core.SVNException static synthetic java.io.File access$300 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 static synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream access$402 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo, org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream x1 static synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream access$400 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 static synthetic boolean access$502 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo, boolean) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 boolean x1 static synthetic java.io.File access$302 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo, java.io.File) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 java.io.File x1 static synthetic java.io.File access$602 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo, java.io.File) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 java.io.File x1 static synthetic java.io.File access$600 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$702 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic org.tmatesoft.svn.core.SVNProperties access$802 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 org.tmatesoft.svn.core.SVNProperties x1 static synthetic org.tmatesoft.svn.core.SVNProperties access$700 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 static synthetic org.tmatesoft.svn.core.SVNProperties access$800 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 static synthetic boolean access$500 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 static synthetic boolean access$900 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 static synthetic boolean access$902 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo, boolean) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo x0 boolean x1 }
org/tmatesoft/svn/core/internal/wc/SVNSubstitutor.class
SVNSubstitutor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNSubstitutor extends java.lang.Object { private static final byte[] ALL private static final byte[] EOLS private static final byte[] KEYWORDS private static final int KEYWORD_MAX_LENGTH private boolean myIsRepair private boolean myIsExpand private java.util.Map myKeywords private byte[] myEOL private byte[] myLastEOL private byte[] myInteresting private byte[] myEOLBuffer private byte[] myKeywordBuffer private int[] myLastEOLLength private int myKeywordBufferLength private int myEOLBufferLength public void <init> (byte[], boolean, java.util.Map, boolean) byte[] eol boolean repair java.util.Map keywords boolean expand public java.nio.ByteBuffer translateChunk (java.nio.ByteBuffer, java.nio.ByteBuffer) throws org.tmatesoft.svn.core.SVNException byte[] keywordName int newLength byte p int len int nextSignOff java.nio.ByteBuffer src java.nio.ByteBuffer dst private boolean isInteresting (byte) int i byte p private byte[] matchKeyword (byte[], int, int) int i java.io.UnsupportedEncodingException e byte[] nameBytes byte[] src int offset int length String name int len private int translateKeyword (byte[], int, int, byte[]) java.io.UnsupportedEncodingException e byte[] src int offset int length byte[] name String nameStr byte[] value private static void unread (java.nio.ByteBuffer, int) java.nio.ByteBuffer buffer int length private static int substituteKeyword (byte[], int, int, byte[], byte[]) int i int maxValueLength int valueLength int valueLength byte[] src int offset int length byte[] keyword byte[] value int pointer private static java.nio.ByteBuffer substituteEOL (java.nio.ByteBuffer, byte[], int, byte[], int[], byte[], int, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.nio.ByteBuffer dst byte[] eol int eolLength byte[] lastEOL int[] lastEOLLength byte[] nextEOL int nextEOLLength boolean repair private static java.nio.ByteBuffer write (java.nio.ByteBuffer, byte[], int, int) java.nio.ByteBuffer newDst java.nio.ByteBuffer dst byte[] bytes int offset int length static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/SVNUpdateEditor15$SVNEntryInfo.class
SVNUpdateEditor15.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNEntryInfo extends java.lang.Object { public String URL public boolean IsAdded public boolean isExisted public boolean isAddExisted public org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15$SVNDirectoryInfo Parent public boolean isSkipped public long myPreviousRevision private String myPath private org.tmatesoft.svn.core.SVNProperties myChangedProperties private org.tmatesoft.svn.core.SVNProperties myChangedEntryProperties private org.tmatesoft.svn.core.SVNProperties myChangedWCProperties final synthetic org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15 this$0 protected void <init> (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor15, java.lang.String) String path protected java.lang.String getPath () public void propertyChanged (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) String strValue String name org.tmatesoft.svn.core.SVNPropertyValue value public org.tmatesoft.svn.core.SVNProperties getChangedWCProperties () public org.tmatesoft.svn.core.SVNProperties getChangedEntryProperties () public org.tmatesoft.svn.core.SVNProperties getChangedProperties () }
org/tmatesoft/svn/core/internal/wc/SVNFileUtil$1.class
SVNFileUtil.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.SVNFileUtil$1 extends java.io.OutputStream { void <init> () public void write (int) throws java.io.IOException int b }
org/tmatesoft/svn/core/internal/wc/SVNWCProperties.class
SVNWCProperties.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNWCProperties extends java.lang.Object { public static final String SVN_HASH_TERMINATOR private java.io.File myFile private String myPath public void <init> (java.io.File, java.lang.String) java.io.File properitesFile String path public java.io.File getFile () public java.lang.String getPath () public java.util.Collection properties (java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.util.Collection target java.io.ByteArrayOutputStream nameOS java.io.InputStream is public org.tmatesoft.svn.core.SVNProperties asMap () throws org.tmatesoft.svn.core.SVNException String name byte[] value org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNProperties result java.io.ByteArrayOutputStream nameOS java.io.InputStream is public boolean compareTo (org.tmatesoft.svn.core.internal.wc.SVNWCProperties, org.tmatesoft.svn.core.internal.wc.ISVNPropertyComparator) throws org.tmatesoft.svn.core.SVNException String missing java.util.Iterator props String added java.util.Iterator props int i boolean differs org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e String changed java.util.Iterator props org.tmatesoft.svn.core.internal.wc.SVNWCProperties properties org.tmatesoft.svn.core.internal.wc.ISVNPropertyComparator comparator boolean equals java.util.Collection props1 java.util.Collection props2 java.util.Collection tmp java.io.File tmpFile java.io.File tmpFile1 java.io.File tmpFile2 java.io.OutputStream os java.io.InputStream is java.io.InputStream is1 java.io.InputStream is2 public java.lang.String getPropertyValue (java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.UnsupportedEncodingException e byte[] bytes String name java.io.ByteArrayOutputStream os public java.io.OutputStream getPropertyValue (java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException String currentName org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e String name java.io.OutputStream os java.io.ByteArrayOutputStream nameOS java.io.InputStream is public void setPropertyValue (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value byte[] bytes int length public void setPropertyValue (java.lang.String, java.io.InputStream, int) throws org.tmatesoft.svn.core.SVNException String name java.io.InputStream is int length java.io.InputStream src java.io.OutputStream dst java.io.File tmpFile boolean empty public void setProperties (org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value java.util.Iterator names org.tmatesoft.svn.core.SVNProperties properties public org.tmatesoft.svn.core.SVNProperties compareTo (org.tmatesoft.svn.core.internal.wc.SVNWCProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNWCProperties properties org.tmatesoft.svn.core.SVNProperties locallyChangedProperties public static void setProperties (org.tmatesoft.svn.core.SVNProperties, java.io.File, java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties namesToValues java.io.File target java.io.File tmpFile String terminator java.io.OutputStream dst public static void setProperties (org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream, java.lang.String) throws org.tmatesoft.svn.core.SVNException String propertyName int i Object[] keys org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.SVNProperties namesToValues java.io.OutputStream target String terminator public static void appendProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String name org.tmatesoft.svn.core.SVNPropertyValue value java.io.OutputStream target byte[] bytes public static void appendPropertyDeleted (java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String name java.io.OutputStream target private static boolean copyProperties (java.io.InputStream, java.io.OutputStream, java.lang.String, java.io.InputStream, int) throws org.tmatesoft.svn.core.SVNException byte[] nameBytes int l byte[] nameBytes org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.InputStream is java.io.OutputStream os String name java.io.InputStream value int length int propCount private static boolean readProperty (char, java.io.InputStream, java.io.OutputStream) throws java.io.IOException byte[] value int r char type java.io.InputStream is java.io.OutputStream os int length private static void writeProperty (java.io.OutputStream, char, byte[]) throws java.io.IOException java.io.OutputStream os char type byte[] value private static void writeProperty (java.io.OutputStream, char, java.io.InputStream, int) throws java.io.IOException int r int i java.io.OutputStream os char type java.io.InputStream value int length private static int readLength (java.io.InputStream, char) throws java.io.IOException int b int i String length java.io.InputStream is char type byte[] buffer int r public boolean isEmpty () }
org/tmatesoft/svn/core/internal/wc/SVNMergeDriver.class
SVNMergeDriver.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.SVNMergeDriver extends org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate implements org.tmatesoft.svn.core.internal.wc.ISVNMergeStrategy { protected boolean myAreSourcesAncestral protected boolean myIsSameRepository protected boolean myIsDryRun protected boolean myIsRecordOnly protected boolean myIsForce protected boolean myIsTargetMissingChild protected boolean myHasExistingMergeInfo protected boolean myIsIgnoreAncestry protected boolean myIsSingleFileMerge protected boolean myIsMergeInfoCapable protected boolean myIsReIntegrateMerge protected boolean myIsAddNecessitatedMerge protected int myOperativeNotificationsNumber protected int myNotificationsNumber protected int myCurrentAncestorIndex protected java.util.Map myConflictedPaths protected java.util.Map myDryRunDeletions protected org.tmatesoft.svn.core.SVNURL myURL protected java.io.File myTarget private java.util.List myMergedPaths private java.util.List mySkippedPaths private java.util.List myChildrenWithMergeInfo private java.util.List myAddedPaths protected org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess myWCAccess protected org.tmatesoft.svn.core.io.SVNRepository myRepository1 protected org.tmatesoft.svn.core.io.SVNRepository myRepository2 private org.tmatesoft.svn.core.internal.wc16.SVNLogClient16 myLogClient private java.util.List myPathsWithNewMergeInfo private java.util.LinkedList myPathsWithDeletedMergeInfo private org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource myCurrentMergeSource private org.tmatesoft.svn.core.SVNMergeRangeList myImplicitSrcGap public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options protected void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public abstract org.tmatesoft.svn.core.wc.SVNDiffOptions getMergeOptions () public void getLogMergedMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void getLogMergedMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void getLogMergedMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void getLogMergedMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void getLogEligibleMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void getLogEligibleMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void getLogEligibleMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void getLogEligibleMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public java.util.Map getMergedMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision public java.util.Map getMergedMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision public java.util.Collection suggestMergeSources (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision public java.util.Collection suggestMergeSources (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc16.SVNDiffClient16 diffClient org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange[] ranges org.tmatesoft.svn.core.wc.SVNEvent mergeBeginEvent org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child Object[] childrenWithMergeInfoArray int newNearestAncestorIndex java.io.File mergedPath java.io.File skippedPath java.io.File addedPathParent boolean isRootOfAddedSubTree java.io.File addedPath org.tmatesoft.svn.core.wc.SVNEvent mergeBeginEvent org.tmatesoft.svn.core.wc.SVNEvent event double progress boolean isOperativeNotification public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException protected org.tmatesoft.svn.core.io.SVNLocationEntry getCopySource (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorCode errCode org.tmatesoft.svn.core.SVNException e java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision revision long[] pegRev org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.io.SVNLocationEntry copyFromEntry String targetPath org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$CopyFromReceiver receiver protected void getLogsForMergeInfoRangeList (org.tmatesoft.svn.core.SVNURL, java.lang.String[], org.tmatesoft.svn.core.SVNMergeRangeList, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL reposRootURL String[] paths org.tmatesoft.svn.core.SVNMergeRangeList rangeList boolean discoverChangedPaths String[] revProps org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.SVNMergeRange[] listRanges org.tmatesoft.svn.core.SVNMergeRange youngestRange org.tmatesoft.svn.core.wc.SVNRevision youngestRev org.tmatesoft.svn.core.SVNMergeRange oldestRange org.tmatesoft.svn.core.wc.SVNRevision oldestRev org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$LogHandlerFilter filterHandler org.tmatesoft.svn.core.internal.wc16.SVNLogClient16 logClient protected java.util.Map getMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry long[] revNum org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL reposRoot boolean[] indirect java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL[] repositoryRoot org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess protected java.util.Map getMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL[]) throws org.tmatesoft.svn.core.SVNException long revisionNum org.tmatesoft.svn.core.SVNURL reposRoot String relPath org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL[] repositoryRoot org.tmatesoft.svn.core.io.SVNRepository repository protected void runPeggedMerge (org.tmatesoft.svn.core.SVNURL, java.io.File, java.util.Collection, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetEntry org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL wcReposRoot java.util.List mergeSources org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL sourceReposRoot org.tmatesoft.svn.core.SVNURL srcURL java.io.File srcPath java.util.Collection rangesToMerge org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File targetWCPath org.tmatesoft.svn.core.SVNDepth depth boolean dryRun boolean force boolean ignoreAncestry boolean recordOnly protected void runMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.io.SVNLocationEntry youngestLocation org.tmatesoft.svn.core.wc.SVNRevision sRev org.tmatesoft.svn.core.wc.SVNRevision eRev org.tmatesoft.svn.core.wc.SVNRevision sRev org.tmatesoft.svn.core.wc.SVNRevision eRev org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.wc.SVNRevisionRange range java.util.List ranges org.tmatesoft.svn.core.SVNURL youngestCommonURL org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource mergeSrc org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNURL wcReposRoot long[] latestRev org.tmatesoft.svn.core.SVNURL sourceReposRoot long rev1 long rev2 boolean sameRepos String youngestCommonPath long youngestCommonRevision boolean related boolean ancestral java.util.List mergeSources org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File targetWCPath org.tmatesoft.svn.core.SVNDepth depth boolean dryRun boolean force boolean ignoreAncestry boolean recordOnly org.tmatesoft.svn.core.io.SVNRepository repository1 org.tmatesoft.svn.core.io.SVNRepository repository2 protected void runMergeReintegrate (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err Object source org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String srcMergeInfoCatalogString org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne long[] rev1 String sourceReposRelPath String targetReposRelPath org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$SubTreeMergeInfoHandler handler long rev2 org.tmatesoft.svn.core.SVNURL[] url1 java.util.Map unmergedToSourceMergeInfoCatalog org.tmatesoft.svn.core.io.SVNLocationEntry youngestCommonAncestor String youngestAncestorPath long youngestAncestorRevision org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.SVNURL wcReposRoot org.tmatesoft.svn.core.SVNURL sourceReposRoot org.tmatesoft.svn.core.io.SVNRepository sourceRepository org.tmatesoft.svn.core.io.SVNRepository targetRepository org.tmatesoft.svn.core.SVNURL srcURL java.io.File srcPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File targetWCPath boolean dryRun protected void doMerge (java.util.Map, java.util.List, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNEvent mergeCompletedEvent org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource mergeSource org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.SVNURL url2 long revision1 long revision2 int i java.util.Map resultCatalog java.util.List mergeSources java.io.File target org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea boolean sourcesAncestral boolean sourcesRelated boolean sameRepository boolean ignoreAncestry boolean force boolean dryRun boolean recordOnly boolean reintegrateMerge org.tmatesoft.svn.core.SVNDepth depth boolean checkedMergeInfoCapability protected void addPathWithNewMergeInfo (java.io.File) java.io.File path protected void addPathWithDeletedMergeInfo (java.io.File) java.io.File path protected org.tmatesoft.svn.core.io.SVNRepository ensureRepository (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL url public java.lang.Object[] calculateRemainingRangeList (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.SVNURL, boolean[], org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNMergeRange) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath mergeTarget java.util.Map[] fullMergeInfo java.io.File targetFile org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNURL sourceRoot boolean[] indirect org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.SVNMergeRangeList remainingRangeList java.util.Map targetMergeInfo java.util.Map implicitMergeInfo boolean honorMergeInfo protected void findGapsInMergeSourceHistory (long[], java.lang.String, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException String path java.util.Iterator paths org.tmatesoft.svn.core.SVNMergeRangeList implicitMergeRangeList org.tmatesoft.svn.core.SVNMergeRangeList requestedMergeRangeList org.tmatesoft.svn.core.SVNMergeRangeList gapRangeList long[] gap String mergeSrcCanonPath org.tmatesoft.svn.core.SVNURL url1 long rev1 org.tmatesoft.svn.core.SVNURL url2 long rev2 org.tmatesoft.svn.core.io.SVNRepository repos long youngRev long oldRev org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL oldURL java.util.Map implicitSrcMergeInfo org.tmatesoft.svn.core.SVNMergeRangeList rangelist protected void doFileMerge (org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 java.io.File targetWCPath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea boolean sourcesRelated protected void doFileMerge (java.util.Map, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL oldSessionURL org.tmatesoft.svn.core.wc.SVNStatusType cstatus org.tmatesoft.svn.core.wc.SVNStatusType[] mergeResult org.tmatesoft.svn.core.SVNProperties propsDiff org.tmatesoft.svn.core.SVNMergeRange nextRange boolean headerSent org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNProperties props1 org.tmatesoft.svn.core.SVNProperties props2 java.io.File f1 java.io.File f2 String mimeType2 String mimeType1 org.tmatesoft.svn.core.wc.SVNStatusType[] mergeResult org.tmatesoft.svn.core.io.SVNRepository repos1 org.tmatesoft.svn.core.io.SVNRepository repos2 int i org.tmatesoft.svn.core.SVNMergeRangeList rangeListToMerge org.tmatesoft.svn.core.SVNMergeRange[] rangesToMerge java.util.Map merges org.tmatesoft.svn.core.SVNMergeRangeList filteredRangeList org.tmatesoft.svn.core.SVNErrorMessage error java.util.Map resultCatalog org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 java.io.File targetWCPath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea boolean sourcesRelated boolean isRollBack org.tmatesoft.svn.core.SVNURL primaryURL boolean honorMergeInfo boolean recordMergeInfo boolean[] indirect boolean[] isTreeConflict java.util.Map targetMergeInfo java.util.Map implicitMergeInfo org.tmatesoft.svn.core.SVNURL sourceRootURL String mergeInfoPath org.tmatesoft.svn.core.SVNMergeRange conflictedRange org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNMergeRange range Object[] mergeInfoBundle org.tmatesoft.svn.core.SVNMergeRangeList remainingRangeList org.tmatesoft.svn.core.SVNMergeRange[] remainingRanges org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback callback String targetName protected void doMergeInfoUnawareDirectoryMerge (org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNDepth depth java.io.File targetWCPath boolean isRollBack org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath item org.tmatesoft.svn.core.SVNMergeRange itemRange protected void recordMergeInfoForDirectoryMerge (java.util.Map, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.SVNMergeRange, java.lang.String, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath parent int j boolean isInSwitchedSubTree org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child String childReposPath org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childEntry String childMergeSourcePath org.tmatesoft.svn.core.SVNMergeRangeList childMergeRangeList java.util.Map childMerges int i java.util.Map resultCatalog org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetEntry org.tmatesoft.svn.core.SVNMergeRange range String mergeInfoPath org.tmatesoft.svn.core.SVNDepth depth boolean isRollBack protected void recordMergeInfoForAddedSubtrees (org.tmatesoft.svn.core.SVNMergeRange, java.lang.String, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map mergeMergeInfo org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath targetMergePath org.tmatesoft.svn.core.SVNMergeRange rng String addedPathStr String targetMergePathStr String commonAncestorPath String relativeAddedPath org.tmatesoft.svn.core.SVNMergeRangeList rangeList boolean[] inherited java.util.Map addedPathMergeInfo java.io.File addedPath org.tmatesoft.svn.core.SVNPropertyValue addedPathParentPropValue String addedPathParentPropValueStr java.util.Iterator addedPathsIter org.tmatesoft.svn.core.SVNMergeRange range String mergeInfoPath org.tmatesoft.svn.core.SVNDepth depth protected void doDirectoryMerge (org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNDepth depth protected void doDirectoryMerge (java.util.Map, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange conflictedRange org.tmatesoft.svn.core.SVNURL realURL1 org.tmatesoft.svn.core.SVNURL realURL2 org.tmatesoft.svn.core.SVNURL oldURL1 org.tmatesoft.svn.core.SVNURL oldURL2 long nextEndRev long endRev long startRev java.util.Map resultCatalog org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNDepth depth boolean isRollBack org.tmatesoft.svn.core.SVNURL primaryURL boolean honorMergeInfo boolean recordMergeInfo boolean sameURLs org.tmatesoft.svn.core.internal.wc.SVNMergeCallback mergeCallback org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL sourceRootURL String mergeInfoPath org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath targetMergePath org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor editor org.tmatesoft.svn.core.SVNErrorMessage err protected org.tmatesoft.svn.core.SVNProperties filterSelfReferentialMergeInfo (org.tmatesoft.svn.core.SVNProperties, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL startURL org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] locations int i org.tmatesoft.svn.core.SVNMergeRangeList adjustedRangeList String sourcePath org.tmatesoft.svn.core.SVNMergeRangeList rangeList org.tmatesoft.svn.core.SVNMergeRange[] ranges java.util.LinkedList adjustedRanges org.tmatesoft.svn.core.SVNURL mergeSourceURL java.util.Iterator youngerMergeInfoIter java.util.Map implicitMergeInfo String filteredMergeInfoStr org.tmatesoft.svn.core.SVNURL mergeSourceRootURL org.tmatesoft.svn.core.SVNURL targetURL org.tmatesoft.svn.core.SVNURL oldURL java.util.Map filteredYoungerMergeInfo java.util.Map mergeInfo java.util.Map[] mergeInfoArr java.util.Map youngerMergeInfo java.util.Map filteredMergeInfo String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propNamesIter org.tmatesoft.svn.core.SVNProperties props java.io.File path boolean honorMergeInfo org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetEntry org.tmatesoft.svn.core.SVNProperties adjustedProperties protected org.tmatesoft.svn.core.internal.wc16.SVNLogClient16 getLogClient () protected void recordTreeConflict (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.wc.SVNConflictReason) throws org.tmatesoft.svn.core.SVNException java.io.File victim org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNConflictAction action org.tmatesoft.svn.core.wc.SVNConflictReason reason org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict protected void recordTreeConflictOnAdd (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.wc.SVNConflictReason) throws org.tmatesoft.svn.core.SVNException java.io.File victim org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNConflictAction action org.tmatesoft.svn.core.wc.SVNConflictReason reason org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict org.tmatesoft.svn.core.wc.SVNTreeConflictDescription existingConflict protected org.tmatesoft.svn.core.wc.SVNTreeConflictDescription makeTreeConflict (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.wc.SVNConflictReason) throws org.tmatesoft.svn.core.SVNException java.io.File victim org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNConflictAction action org.tmatesoft.svn.core.wc.SVNConflictReason reason org.tmatesoft.svn.core.SVNURL srcReposRoot String child org.tmatesoft.svn.core.SVNURL leftURL org.tmatesoft.svn.core.SVNURL rightURL org.tmatesoft.svn.core.internal.wc.SVNConflictVersion leftConflictVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion rightConflictVersion org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflictDescription private org.tmatesoft.svn.core.internal.wc.SVNMergeCallback getMergeCallback (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea private void processChildrenWithNewMergeInfo () throws org.tmatesoft.svn.core.SVNException int parentIndex org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath parent java.util.Map pathInheritedMergeInfo org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath newChild java.io.File pathWithNewMergeInfo org.tmatesoft.svn.core.internal.wc.admin.SVNEntry pathEntry boolean[] indirect java.util.Map pathExplicitMergeInfo org.tmatesoft.svn.core.SVNURL oldURL java.util.Iterator pathsIter private void processChildrenWithDeletedMergeInfo () org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath path java.util.Iterator children private java.util.Map splitMergeInfoOnRevision (java.util.Map[], long) org.tmatesoft.svn.core.SVNMergeRange youngerRange int j org.tmatesoft.svn.core.SVNMergeRange range java.util.LinkedList youngerRanges int i String mergeSourcePath org.tmatesoft.svn.core.SVNMergeRangeList rangeList org.tmatesoft.svn.core.SVNMergeRange[] ranges java.util.Iterator mergeInfoIter java.util.Map[] mergeInfo long revision java.util.Map youngerMergeInfo private void ensureWCReflectsRepositorySubTree (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File targetWCPath org.tmatesoft.svn.core.internal.wc.SVNRevisionStatus wcStatus private void ensureAllMissingRangesArePhantoms (org.tmatesoft.svn.core.io.SVNRepository, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL fullURL org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNMergeRange mergeRange org.tmatesoft.svn.core.SVNDirEntry dirEntry int i String path org.tmatesoft.svn.core.SVNMergeRangeList rangeList org.tmatesoft.svn.core.SVNMergeRange[] ranges java.util.Iterator pathsIter String catalogPath java.util.Map historyAsMergeInfo java.util.Iterator unmergedHistoryIter org.tmatesoft.svn.core.io.SVNRepository repository java.util.Map unmergedHistory private java.util.Map findUnmergedMergeInfo (boolean[], long[], long[], java.util.Map, java.util.Map, java.lang.String, java.lang.String, long, long, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException long[] endPoints long youngRev java.util.Map explicitSrcTgtHistoryIntersection org.tmatesoft.svn.core.SVNMergeInfo sourceMergeInfo org.tmatesoft.svn.core.SVNNodeKind kind java.util.Map subTreeCatalog String path java.util.Collection segments String srcPath java.util.Map targetHistoryAsMergeInfo org.tmatesoft.svn.core.SVNMergeInfo sourceMergeInfoObject java.util.Map srcMergeInfo java.util.Map srcHistoryAsMergeInfo java.util.Map commonMergeInfo java.util.Map filteredMergeInfo java.util.Iterator targetSegmentsIter org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorCode errCode org.tmatesoft.svn.core.SVNException svne long[] endPoints long youngRev java.util.Map targetHistoryAsMergeInfo java.util.Map explicitSrcTgtHistoryIntersection java.util.Map srcHistoryAsMergeInfo java.util.Map commonMergeInfo java.util.Map filteredMergeInfo String srcPath org.tmatesoft.svn.core.SVNMergeInfo sourceMergeInfoObject java.util.Map srcMergeInfo String targetPath java.util.Collection segments boolean tgtPathExists java.util.Iterator srcCatalogIter boolean[] neverSynched long[] youngestMergedRev long[] ycAncestorRev java.util.Map srcCatalog java.util.Map targetSegments String sourceReposPath String targetReposPath long targetRev long srcRev org.tmatesoft.svn.core.io.SVNRepository sourceRepository org.tmatesoft.svn.core.io.SVNRepository targetRepository java.util.Map newCatalog String srcRelPath private java.util.Map calculateLeftHandSide (org.tmatesoft.svn.core.SVNURL[], long[], java.lang.String, java.util.Collection, long, java.lang.String, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException String path String relPath java.util.Collection segments java.util.Iterator subTreesPathIter org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL[] leftURL long[] leftRev String targetReposRelPath java.util.Collection subTreesWithMergeInfo long targetRev String sourceReposRelPath org.tmatesoft.svn.core.SVNURL sourceReposRoot long sourceRev org.tmatesoft.svn.core.io.SVNRepository sourceRepository org.tmatesoft.svn.core.io.SVNRepository targetRepository java.util.Map segmentsMap java.util.Map mergeInfoCatalog boolean[] neverSynched long[] youngestMergedRev org.tmatesoft.svn.core.SVNURL sourceURL org.tmatesoft.svn.core.SVNURL targetURL org.tmatesoft.svn.core.io.SVNLocationEntry youngestLocation String youngestCommonAncestorPath java.util.Map unmergedCatalog private boolean mergeRangeContainsRevision (org.tmatesoft.svn.core.SVNMergeRange, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNMergeRange range long rev private void mergeCousinsAndSupplementMergeInfo (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, long, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource fauxSource java.util.List fauxSources org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e String path java.util.Map mergeinfo java.io.File file java.util.Iterator paths java.util.Map addResultsCatalog java.util.Map removeResultsCatalog java.io.File targetWCPath org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.io.SVNRepository repository1 org.tmatesoft.svn.core.io.SVNRepository repository2 org.tmatesoft.svn.core.SVNURL url1 long rev1 org.tmatesoft.svn.core.SVNURL url2 long rev2 long youngestCommonRev org.tmatesoft.svn.core.SVNURL sourceReposRoot org.tmatesoft.svn.core.SVNURL wcReposRoot org.tmatesoft.svn.core.SVNDepth depth boolean ignoreAncestry boolean force boolean recordOnly boolean dryRun java.util.List addSources java.util.List removeSources org.tmatesoft.svn.core.wc.SVNRevision sRev org.tmatesoft.svn.core.wc.SVNRevision eRev org.tmatesoft.svn.core.wc.SVNRevisionRange range java.util.List ranges boolean sameRepos public boolean isSameRepository () protected boolean isHonorMergeInfo () public boolean isRecordMergeInfo () protected org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource getCurrentMergeSource () private java.util.List normalizeMergeSources (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.util.Collection, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.wc.SVNRevisionRange revRange org.tmatesoft.svn.core.wc.SVNRevision rangeStart org.tmatesoft.svn.core.wc.SVNRevision rangeEnd long rangeStartRev long rangeEndRev java.util.Iterator rangesIter org.tmatesoft.svn.core.SVNMergeRange range long minRev long maxRev java.util.Iterator rangesIter org.tmatesoft.svn.core.io.SVNLocationSegment newSegment org.tmatesoft.svn.core.io.SVNLocationSegment segment2 org.tmatesoft.svn.core.SVNURL segmentURL org.tmatesoft.svn.core.io.SVNLocationEntry copyFromLocation String copyFromPath long copyFromRevision org.tmatesoft.svn.core.io.SVNLocationSegment segment org.tmatesoft.svn.core.SVNMergeRange range java.util.List mergeSources java.util.Iterator rangesIter java.io.File source org.tmatesoft.svn.core.SVNURL sourceURL org.tmatesoft.svn.core.SVNURL sourceRootURL org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.util.Collection rangesToMerge org.tmatesoft.svn.core.io.SVNRepository repository long[] youngestRevision long pegRevNum java.util.List mergeRanges org.tmatesoft.svn.core.SVNMergeRangeList mergeRangesList long oldestRequestedRev long youngestRequestedRev java.util.LinkedList segments long trimRevision org.tmatesoft.svn.core.io.SVNLocationSegment[] segmentsArray java.util.List resultMergeSources private java.util.List combineRangeWithSegments (org.tmatesoft.svn.core.SVNMergeRange, org.tmatesoft.svn.core.io.SVNLocationSegment[], org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException long tmpRev org.tmatesoft.svn.core.SVNURL tmpURL org.tmatesoft.svn.core.io.SVNLocationSegment segment String path1 long rev1 org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource mergeSource int i org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.io.SVNLocationSegment[] segments org.tmatesoft.svn.core.SVNURL sourceRootURL long minRev long maxRev boolean subtractive java.util.List mergeSources private org.tmatesoft.svn.core.io.SVNLocationEntry getYoungestCommonAncestor (java.io.File, org.tmatesoft.svn.core.SVNURL, long, java.io.File, org.tmatesoft.svn.core.SVNURL, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange[] commonRanges org.tmatesoft.svn.core.SVNMergeRange youngestCommonRange org.tmatesoft.svn.core.SVNMergeRangeList commonList java.util.Map$Entry historyEntry String path org.tmatesoft.svn.core.SVNMergeRangeList ranges1 org.tmatesoft.svn.core.SVNMergeRangeList ranges2 java.util.Iterator historyIter java.io.File path1 org.tmatesoft.svn.core.SVNURL url1 long revision1 java.io.File path2 org.tmatesoft.svn.core.SVNURL url2 long revision2 java.util.Map history1 java.util.Map history2 long youngestCommonRevision String youngestCommonPath protected java.util.Map[] getFullMergeInfo (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, boolean, boolean, boolean[], org.tmatesoft.svn.core.SVNMergeInfoInheritance, org.tmatesoft.svn.core.io.SVNRepository, java.io.File, long, long) throws org.tmatesoft.svn.core.SVNException long[] targetRev org.tmatesoft.svn.core.SVNURL url java.util.Map implicitMergeInfo org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean getRecorded boolean getImplicit boolean[] indirect org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit org.tmatesoft.svn.core.io.SVNRepository repos java.io.File target long start long end java.util.Map[] result public java.util.Map calculateImplicitMergeInfo (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNURL, long[], long, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.SVNURL url long[] targetRev long start long end java.util.Map implicitMergeInfo boolean closeSession org.tmatesoft.svn.core.SVNURL sessionURL private int findNearestAncestor (java.lang.Object[], boolean, java.io.File) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child String childPath String pathStr int i Object[] childrenWithMergeInfoArray boolean pathIsOwnAncestor java.io.File path int ancestorIndex public java.util.Map getHistoryAsMergeInfo (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, long, long, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException java.util.Collection segments org.tmatesoft.svn.core.SVNURL url java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision long rangeYoungest long rangeOldest org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access long[] pegRevNum boolean closeSession public static java.util.Map getMergeInfoFromSegments (java.util.Collection) org.tmatesoft.svn.core.io.SVNLocationSegment segment String sourcePath java.util.Collection pathRanges org.tmatesoft.svn.core.SVNMergeRange range java.util.Iterator segmentsIter String path java.util.Collection pathRanges java.util.Iterator paths java.util.Collection segments java.util.Map mergeInfo java.util.Map result private void removeAbsentChildren (java.io.File, java.util.List) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child String topDir String childPath java.util.Iterator children java.io.File targetWCPath java.util.List childrenWithMergeInfo private void removeFirstRangeFromRemainingRanges (long, java.util.List) org.tmatesoft.svn.core.SVNMergeRange[] remainingRanges org.tmatesoft.svn.core.SVNMergeRange[] originalRemainingRanges org.tmatesoft.svn.core.SVNMergeRange firstRange org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child java.util.Iterator children long endRevision java.util.List childrenWithMergeInfo private org.tmatesoft.svn.core.SVNMergeRangeList removeNoOpMergeRanges (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNMergeRangeList) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange range long maxRev long minRev int i long changedRev java.util.Iterator changedRevsIter org.tmatesoft.svn.core.SVNMergeRange range long rangeMinRev long rangeMaxRev int i org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNMergeRangeList ranges long oldestRev long youngestRev org.tmatesoft.svn.core.SVNMergeRange[] mergeRanges java.util.List changedRevs long youngestChangedRevision long oldestChangedRevision java.util.List operativeRanges private org.tmatesoft.svn.core.SVNMergeRangeList filterNaturalHistoryFromMergeInfo (java.lang.String, java.util.Map, org.tmatesoft.svn.core.SVNMergeRange) org.tmatesoft.svn.core.SVNMergeRangeList impliedRangeList String srcPath java.util.Map implicitMergeInfo org.tmatesoft.svn.core.SVNMergeRange requestedRange org.tmatesoft.svn.core.SVNMergeRangeList requestedRangeList org.tmatesoft.svn.core.SVNMergeRangeList filteredRangeList private void sliceRemainingRanges (java.util.List, boolean, long) org.tmatesoft.svn.core.SVNMergeRange splitRange1 org.tmatesoft.svn.core.SVNMergeRange splitRange2 org.tmatesoft.svn.core.SVNMergeRange[] remainingRanges org.tmatesoft.svn.core.SVNMergeRange[] originalRemainingRanges org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child java.util.Iterator children java.util.List childrenWithMergeInfo boolean isRollBack long endRevision private long getMostInclusiveEndRevision (java.util.List, boolean) org.tmatesoft.svn.core.SVNMergeRange[] ranges org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child int i java.util.List childrenWithMergeInfo boolean isRollBack long endRev private void inheritImplicitMergeinfoFromParent (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath, org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath, long, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map[] mergeinfo org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath parent org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child long revision1 long revision2 org.tmatesoft.svn.core.io.SVNRepository repository String ancestorPath String childPath private void ensureImplicitMergeinfo (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath, org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath, boolean, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, long, long, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException boolean[] indirect java.util.Map[] mergeinfo org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath parent org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child boolean childInheritsParent org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry long revision1 long revision2 org.tmatesoft.svn.core.io.SVNRepository repository private long getMostInclusiveStartRevision (java.util.List, boolean) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child org.tmatesoft.svn.core.SVNMergeRange[] ranges org.tmatesoft.svn.core.SVNMergeRange range int i java.util.List childrenWithMergeInfo boolean isRollBack long startRev private void populateRemainingRanges (java.util.List, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, boolean, org.tmatesoft.svn.core.io.SVNRepository, java.lang.String) throws org.tmatesoft.svn.core.SVNException boolean[] indirect java.util.Map[] mergeInfo int parentIndex org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath parent boolean childInheritsImplicit org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childEntry java.util.ListIterator childrenIter int index Object[] childrenWithMergeInfoArray int parentIndex long start long end int j boolean properSubset boolean equals boolean overlapsOrAdjoins org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child String childRelativePath org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath parent org.tmatesoft.svn.core.SVNURL childURL1 org.tmatesoft.svn.core.SVNURL childURL2 org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childEntry boolean[] indirect java.util.Map[] mergeInfo boolean childInheritsImplicit java.util.ListIterator childrenIter java.util.List childrenWithMergeInfo org.tmatesoft.svn.core.SVNURL sourceRootURL org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 boolean honorMergeInfo org.tmatesoft.svn.core.io.SVNRepository repository String parentMergeSrcCanonPath long[] gap int index public org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor driveMergeReportEditor (java.io.File, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, java.util.List, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.SVNMergeCallback, org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange[] ranges org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath targetMergePath org.tmatesoft.svn.core.SVNMergeRangeList remainingRanges org.tmatesoft.svn.core.SVNDepth reportDepth long reportStart String targetPath java.io.File targetWCPath org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 java.util.List childrenWithMergeInfo boolean isRollBack org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.SVNMergeCallback mergeCallback org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor editor boolean honorMergeInfo long defaultStart long targetStart org.tmatesoft.svn.core.SVNURL oldURL public org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor getMergeReportEditor (long, long, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback, org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor) throws org.tmatesoft.svn.core.SVNException long defaultStart long revision org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback mergeCallback org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor editor private org.tmatesoft.svn.core.SVNErrorMessage makeMergeConflictError (java.io.File, org.tmatesoft.svn.core.SVNMergeRange) java.io.File targetPath org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.SVNErrorMessage error private java.util.List getMergeInfoPaths (java.util.List, java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.SVNURL, long, long, boolean, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childEntry2 org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childOfNonInheritableEntry java.util.Map mergeInfo org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childEntry java.io.File childPath org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath childOfNonInheritable java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry siblingEntry java.io.File siblingPath org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath siblingOfMissing java.util.Iterator siblings java.io.File parentPath int parentInd org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath parent org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child int i java.util.List children String mergeSrcPath org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNURL sourceRootURL long revision1 long revision2 boolean honorMergeInfo org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNDepth depth java.util.List childrenWithMergeInfo org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler handler public org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler getMergeInfoEntryHandler (java.lang.String, org.tmatesoft.svn.core.SVNURL, long, long, org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNDepth, java.util.List) String mergeSrcPath org.tmatesoft.svn.core.SVNURL sourceRootURL long revision1 long revision2 org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNDepth depth java.util.List childrenWithMergeInfo private boolean notifySingleFileMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNEvent, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File targetWCPath org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNStatusType cstate org.tmatesoft.svn.core.wc.SVNStatusType pstate org.tmatesoft.svn.core.wc.SVNEvent headerEvent boolean isHeaderSent org.tmatesoft.svn.core.wc.SVNEvent event private boolean isOperativeNotification (org.tmatesoft.svn.core.wc.SVNEvent) org.tmatesoft.svn.core.wc.SVNEvent event private void calculateMergeInheritance (org.tmatesoft.svn.core.SVNMergeRangeList, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, boolean, boolean, org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNMergeRangeList rangeList org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean wcPathIsMergeTarget boolean wcPathHasMissingChild org.tmatesoft.svn.core.SVNDepth depth private void recordSkips (java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File skippedPath org.tmatesoft.svn.core.wc.SVNStatus status java.util.Iterator skippedPaths java.util.Map merges String mergeInfoPath org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetEntry boolean isRollback int numberOfSkippedPaths private void updateWCMergeInfo (java.util.Map, java.io.File, java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.util.Map, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry pathEntry org.tmatesoft.svn.core.SVNException svne String childRelPath java.util.Map existingMerginfo org.tmatesoft.svn.core.SVNException svne java.util.Map$Entry pathToRangeList java.io.File path org.tmatesoft.svn.core.SVNMergeRangeList ranges java.util.Map mergeInfo String parent String child String reposPath org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator mergesEntries java.util.Map resultCatalog java.io.File targetPath String parentReposPath org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map merges boolean isRollBack public void calculateRemainingRanges (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath, org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNURL, long, java.util.Map, org.tmatesoft.svn.core.SVNMergeRangeList, boolean, boolean, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException java.util.Map gapMergeInfo org.tmatesoft.svn.core.SVNMergeRangeList explicitMergeInfoGapRanges boolean isRollback org.tmatesoft.svn.core.SVNMergeRangeList[] rangeListDiff org.tmatesoft.svn.core.SVNMergeRangeList deletedRangeList org.tmatesoft.svn.core.SVNMergeRangeList addedRangeList org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL startURL org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate$SVNRepositoryLocation[] locations org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath parent org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child org.tmatesoft.svn.core.SVNURL sourceRootURL org.tmatesoft.svn.core.SVNURL url1 long revision1 org.tmatesoft.svn.core.SVNURL url2 long revision2 java.util.Map targetMergeInfo org.tmatesoft.svn.core.SVNMergeRangeList implicitSrcGap boolean isSubtree boolean childInheritsImplicit org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.io.SVNRepository repository org.tmatesoft.svn.core.SVNURL primaryURL java.util.Map adjustedTargetMergeInfo String mergeInfoPath private void adjustDeletedSubTreeRanges (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath, org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath, long, long, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException long primaryURLDeletedRevision org.tmatesoft.svn.core.SVNMergeRangeList existingRangeList org.tmatesoft.svn.core.SVNMergeRangeList deletedRangeList org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNErrorCode errCode org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.io.SVNLocationSegment segment org.tmatesoft.svn.core.SVNMergeRangeList existingRangeList org.tmatesoft.svn.core.SVNMergeRangeList nonExistentRangeList org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath parent long revision1 long revision2 org.tmatesoft.svn.core.SVNURL primaryURL org.tmatesoft.svn.core.io.SVNRepository repository String relativePath boolean isRollback long pegRev long youngerRev long olderRev java.util.List locationSegments private void filterMergedRevisions (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath, org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.io.SVNRepository, java.lang.String, java.util.Map, long, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRangeList implicitRangeList org.tmatesoft.svn.core.SVNMergeRangeList[] diff org.tmatesoft.svn.core.SVNMergeRangeList deletedRangeList org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath parent org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.io.SVNRepository repository String mergeInfoPath java.util.Map targetMergeInfo long rev1 long rev2 boolean childInheritsImplicit org.tmatesoft.svn.core.SVNMergeRangeList targetRangeList org.tmatesoft.svn.core.SVNMergeRangeList targetImplicitRangeList org.tmatesoft.svn.core.SVNMergeRangeList explicitRangeList org.tmatesoft.svn.core.SVNMergeRangeList requestedMergeRangeList private java.io.File loadFile (org.tmatesoft.svn.core.io.SVNRepository, long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repository long revision org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea java.io.File tmpDir java.io.File result java.io.OutputStream os private static org.tmatesoft.svn.core.SVNProperties computePropsDiff (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNPropertyValue oldValue String newPropName java.util.Iterator names String oldPropName java.util.Iterator names org.tmatesoft.svn.core.SVNProperties props1 org.tmatesoft.svn.core.SVNProperties props2 org.tmatesoft.svn.core.SVNProperties propsDiff public static org.tmatesoft.svn.core.SVNProperties filterProperties (org.tmatesoft.svn.core.SVNProperties, boolean, boolean, boolean) org.tmatesoft.svn.core.SVNProperties props1 boolean leftRegular boolean leftEntry boolean leftWC public static org.tmatesoft.svn.core.SVNProperties filterProperties (org.tmatesoft.svn.core.SVNProperties, boolean, boolean, boolean, boolean) String propName java.util.Iterator names org.tmatesoft.svn.core.SVNProperties props1 boolean leftRegular boolean leftEntry boolean leftWC boolean leftKeywords org.tmatesoft.svn.core.SVNProperties result static synthetic int access$400 (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver, java.lang.Object[], boolean, java.io.File) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver x0 Object[] x1 boolean x2 java.io.File x3 static synthetic java.lang.String access$500 (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver, java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNMergeDriver x0 java.io.File x1 org.tmatesoft.svn.core.SVNURL x2 org.tmatesoft.svn.core.SVNURL x3 org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess x4 org.tmatesoft.svn.core.io.SVNRepository x5 }
org/tmatesoft/svn/core/internal/wc/AbstractDiffCallback.class
AbstractDiffCallback.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.AbstractDiffCallback extends java.lang.Object { private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea myAdminArea private java.io.File myBasePath private java.util.Set myDeletedPaths protected void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public void setBasePath (java.io.File) java.io.File path public abstract boolean isDiffUnversioned () public abstract boolean isDiffCopiedAsAdded () public abstract java.io.File createTempDirectory () throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc.SVNStatusType propertiesChanged (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc.SVNStatusType[] fileChanged (java.lang.String, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc.SVNStatusType[] fileAdded (java.lang.String, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc.SVNStatusType fileDeleted (java.lang.String, java.io.File, java.io.File, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc.SVNStatusType directoryAdded (java.lang.String, long, boolean[]) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc.SVNStatusType directoryDeleted (java.lang.String, boolean[]) throws org.tmatesoft.svn.core.SVNException public abstract void directoryOpened (java.lang.String, long, boolean[]) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc.SVNStatusType[] directoryClosed (java.lang.String, boolean[]) throws org.tmatesoft.svn.core.SVNException protected java.lang.String getDisplayPath (java.lang.String) String path protected void categorizeProperties (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) String name java.util.Iterator propNames org.tmatesoft.svn.core.SVNProperties original org.tmatesoft.svn.core.SVNProperties regular org.tmatesoft.svn.core.SVNProperties entry org.tmatesoft.svn.core.SVNProperties wc protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getAdminArea () protected org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess getWCAccess () protected void addDeletedPath (java.lang.String) String path protected boolean isPathDeleted (java.lang.String) String path protected void clearDeletedPaths () protected void setIsConflicted (boolean[], boolean) boolean[] isConflictedResult boolean isConflicted }
org/tmatesoft/svn/core/internal/wc/SVNPasswordCipher$1.class
SVNPasswordCipher.java package org.tmatesoft.svn.core.internal.wc synthetic org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc/SVNWCManager$2.class
SVNWCManager.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.SVNWCManager$2 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNStatusHandler { void <init> () public void handleStatus (org.tmatesoft.svn.core.wc.SVNStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNStatus status }
org/tmatesoft/svn/core/internal/wc/SVNAmbientDepthFilterEditor$1.class
SVNAmbientDepthFilterEditor.java package org.tmatesoft.svn.core.internal.wc synthetic org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc/DefaultSVNAuthenticationManager$DumbAuthenticationProvider.class
DefaultSVNAuthenticationManager.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$DumbAuthenticationProvider extends java.lang.Object implements org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider { private String myUserName private String myPassword private boolean myIsStore private String myPassphrase private java.io.File myPrivateKey final synthetic org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager, java.lang.String, java.lang.String, java.io.File, java.lang.String, boolean) String userName String password java.io.File privateKey String passphrase boolean store public org.tmatesoft.svn.core.auth.SVNAuthentication requestClientAuthentication (java.lang.String, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.auth.SVNAuthentication, boolean) org.tmatesoft.svn.core.auth.SVNSSHAuthentication sshAuth org.tmatesoft.svn.core.auth.SVNPasswordAuthentication partialAuth String defaultUserName String userName String kind org.tmatesoft.svn.core.SVNURL url String realm org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.auth.SVNAuthentication previousAuth boolean authMayBeStored public int acceptServerAuthentication (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.Object, boolean) org.tmatesoft.svn.core.SVNURL url String r Object serverAuth boolean resultMayBeStored static synthetic java.lang.String access$000 (org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$DumbAuthenticationProvider) org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$DumbAuthenticationProvider x0 static synthetic java.lang.String access$100 (org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$DumbAuthenticationProvider) org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$DumbAuthenticationProvider x0 }
org/tmatesoft/svn/core/internal/wc/SVNObjectsPool.class
SVNObjectsPool.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNObjectsPool extends java.lang.Object { private java.util.Map objectsPool public void <init> () public java.lang.Object getObject (java.lang.Object) Object existingValue Object value public void clear () public int size () }
org/tmatesoft/svn/core/internal/wc/SVNFileUtil.class
SVNFileUtil.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNFileUtil extends java.lang.Object { private static final String ID_COMMAND private static final String LN_COMMAND public static final String LS_COMMAND private static final String CHMOD_COMMAND private static final String ATTRIB_COMMAND private static final String ENV_COMMAND private static final String STAT_COMMAND public static final boolean isWindows public static final boolean isOS2 public static final boolean isOSX public static final boolean isBSD public static boolean isLinux public static final boolean isSolaris public static final boolean isOpenVMS public static final boolean is32Bit public static final boolean is64Bit public static final int STREAM_CHUNK_SIZE private static final int FILE_CREATION_ATTEMPTS_COUNT public static final java.io.OutputStream DUMMY_OUT public static final java.io.InputStream DUMMY_IN private static boolean ourUseUnsafeCopyOnly private static boolean ourCopyOnSetWritable private static boolean ourUseNIOCopying private static String nativeEOLMarker private static String ourGroupID private static String ourUserID private static java.io.File ourAppDataPath private static String ourAdminDirectoryName private static java.io.File ourSystemAppDataPath private static java.lang.reflect.Method ourSetWritableMethod private static java.lang.reflect.Method ourSetExecutableMethod private static volatile boolean ourIsSleepForTimeStamp public static final String BINARY_MIME_TYPE private static String ourTestEditor private static String ourTestMergeTool private static String ourTestFunction public void <init> () public static boolean isCaseInsensitiveFS () public static synchronized boolean useUnsafeCopyOnly () public static synchronized void setUseUnsafeCopyOnly (boolean) boolean useUnsafeCopyOnly public static synchronized boolean useCopyOnSetWritable () public static synchronized void setUseCopyOnSetWritable (boolean) boolean useCopyOnSetWritable public static synchronized boolean useNIOCopying () public static synchronized void setUseNIOCopying (boolean) boolean useNIOCopy public static java.lang.String getIdCommand () public static java.lang.String getLnCommand () public static java.lang.String getLsCommand () public static java.lang.String getChmodCommand () public static java.lang.String getAttribCommand () public static java.lang.String getEnvCommand () public static java.lang.String getStatCommand () public static java.io.File getParentFile (java.io.File) int i java.io.File file String path int up public static java.lang.String readFile (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe java.io.File file java.io.InputStream is public static java.lang.String readFile (java.io.InputStream) throws java.io.IOException java.io.InputStream input byte[] buf StringBuffer result int r public static int readIntoBuffer (java.io.InputStream, byte[], int, int) throws java.io.IOException int r java.io.InputStream is byte[] buff int off int len int read public static java.lang.String getBasePath (java.io.File) java.io.File adminDir java.io.File file java.io.File base String path public static void createEmptyFile (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.IOException ioe org.tmatesoft.svn.core.SVNErrorMessage err java.io.File file boolean created java.io.IOException ioError public static boolean createNewFile (java.io.File) throws java.io.IOException java.io.IOException e InterruptedException ie java.io.IOException ioError java.io.File file boolean created int count long sleep public static void createFile (java.io.File, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.io.File file String contents String charSet java.io.OutputStream os public static void writeToFile (java.io.File, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.io.File file String contents String charSet java.io.OutputStream os public static void writeVersionFile (java.io.File, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File file int version String contents java.io.File tmpFile java.io.OutputStream os public static synchronized java.io.File createUniqueFile (java.io.File, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File parent String name String suffix boolean useUUIDGenerator StringBuffer fileName java.io.File file int i org.tmatesoft.svn.core.SVNErrorMessage err public static synchronized java.io.File createUniqueDir (java.io.File, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File parent String name String suffix boolean useUUIDGenerator StringBuffer fileName java.io.File file int i org.tmatesoft.svn.core.SVNErrorMessage err public static void moveFile (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException ex2 org.tmatesoft.svn.core.SVNException ex org.tmatesoft.svn.core.SVNException ex2 org.tmatesoft.svn.core.SVNException ex org.tmatesoft.svn.core.SVNException ex2 org.tmatesoft.svn.core.SVNException ex java.io.File src java.io.File dst java.io.File tmpPath public static void moveDir (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException ex org.tmatesoft.svn.core.SVNException ex org.tmatesoft.svn.core.SVNException ex java.io.File src java.io.File dst java.io.File tmpPath public static void rename (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException boolean deleted InterruptedException e int i boolean wasRO long sleep org.tmatesoft.svn.core.SVNErrorMessage err java.io.File src java.io.File dst boolean renamed public static boolean setReadonly (java.io.File, boolean) Object result IllegalArgumentException e IllegalAccessException e java.lang.reflect.InvocationTargetException e java.io.File tmp Process p org.tmatesoft.svn.core.internal.wc.SVNFileType fileType Throwable th java.io.File file boolean readonly public static void setExecutable (java.io.File, boolean) IllegalArgumentException e IllegalAccessException e java.lang.reflect.InvocationTargetException e Throwable th java.io.File file boolean executable public static boolean symlinksSupported () public static void setSGID (java.io.File) Throwable th java.io.File dir public static java.io.File resolveSymlinkToFile (java.io.File) java.io.File file java.io.File targetFile public static java.io.File resolveSymlink (java.io.File) String symlinkName java.io.File file java.io.File targetFile public static void copy (java.io.File, java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException String name java.io.File src java.io.File dst boolean safe boolean copyAdminDirectories org.tmatesoft.svn.core.internal.wc.SVNFileType srcType public static void copyFile (java.io.File, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File src java.io.File dst boolean safe public static void copyFile (java.io.File, java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException long totalSize long toCopy java.io.IOException e java.io.IOException e java.io.IOException e java.io.IOException e java.io.IOException e java.io.IOException e java.io.IOException e java.nio.channels.FileChannel srcChannel java.nio.channels.FileChannel dstChannel java.io.FileInputStream is java.io.FileOutputStream os java.io.IOException e java.io.InputStream sis java.io.OutputStream dos java.io.File src java.io.File dst boolean safe boolean keepTimestamp java.io.File tmpDst boolean executable org.tmatesoft.svn.core.SVNErrorMessage error boolean useNIO public static boolean setLastModified (java.io.File, long) java.io.File file long timestamp public static boolean createSymlink (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File link java.io.File linkName String fileContents public static boolean createSymlink (java.io.File, java.lang.String) Throwable th java.io.File link String linkName public static boolean detranslateSymlink (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File src java.io.File linkFile String linkPath java.io.OutputStream os public static java.lang.String getSymlinkName (java.io.File) Throwable th java.io.File link String ls int index public static java.lang.String computeChecksum (java.lang.String) java.security.NoSuchAlgorithmException e String line java.security.MessageDigest digest public static java.lang.String computeChecksum (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.security.NoSuchAlgorithmException e int l org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File file java.security.MessageDigest digest java.io.InputStream is byte[] buffer public static boolean compareFiles (java.io.File, java.io.File, java.security.MessageDigest) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int b1 int b2 org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File f1 java.io.File f2 java.security.MessageDigest digest boolean equals java.io.InputStream is1 java.io.InputStream is2 public static void truncate (java.io.File, long) throws java.io.IOException org.tmatesoft.svn.core.SVNException e java.io.File file long truncateToSize java.io.RandomAccessFile raf public static void setHidden (java.io.File, boolean) Throwable th java.io.File file boolean hidden Process p public static void deleteAll (java.io.File, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException java.io.File dir org.tmatesoft.svn.core.wc.ISVNEventHandler cancelBaton public static void deleteAll (java.io.File, boolean) org.tmatesoft.svn.core.SVNException e java.io.File dir boolean deleteDirs public static void deleteAll (java.io.File, boolean, org.tmatesoft.svn.core.ISVNCanceller) throws org.tmatesoft.svn.core.SVNException java.io.File child int i java.io.File dir boolean deleteDirs org.tmatesoft.svn.core.ISVNCanceller cancelBaton org.tmatesoft.svn.core.internal.wc.SVNFileType fileType java.io.File[] children public static boolean deleteFile (java.io.File) throws org.tmatesoft.svn.core.SVNException InterruptedException e int i java.io.File file long sleep org.tmatesoft.svn.core.SVNErrorMessage err public static java.lang.String toHexDigest (java.security.MessageDigest) int i java.security.MessageDigest digest byte[] result StringBuffer hexDigest public static java.lang.String toHexDigest (byte[]) int i byte[] digest StringBuffer hexDigest public static byte[] fromHexDigest (java.lang.String) int hi int lo Integer ib byte b int i String hexDigest int digestLength byte[] digest public static java.lang.String getNativeEOLMarker (org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNOptions options public static long roundTimeStamp (long) long tstamp public static void sleepForTimestamp () InterruptedException e long time public static void setSleepForTimestamp (boolean) boolean sleep public static java.lang.String readLineFromStream (java.io.InputStream, java.lang.StringBuffer, java.nio.charset.CharsetDecoder) throws java.io.IOException String out java.io.InputStream is StringBuffer buffer java.nio.charset.CharsetDecoder decoder java.io.ByteArrayOutputStream byteBuffer int r String out public static java.lang.String detectMimeType (java.io.InputStream) throws java.io.IOException byte b int i java.io.InputStream is byte[] buffer int read int binaryCount public static java.lang.String detectMimeType (java.io.File, java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String name String pathExt int dotInd String mimeType java.io.IOException e org.tmatesoft.svn.core.SVNException e java.io.File file java.util.Map mimeTypes org.tmatesoft.svn.core.internal.wc.SVNFileType kind java.io.InputStream is public static boolean isExecutable (java.io.File) throws org.tmatesoft.svn.core.SVNException Throwable th String token java.util.StringTokenizer tokens java.io.File file Boolean executable String[] commandLine String line int index String mod String fuid String fgid public static java.io.File ensureDirectoryExists (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage error boolean created java.io.File path org.tmatesoft.svn.core.internal.wc.SVNFileType type org.tmatesoft.svn.core.SVNNodeKind kind public static void copyDirectory (java.io.File, java.io.File, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException boolean executable String name java.io.File file org.tmatesoft.svn.core.internal.wc.SVNFileType fileType java.io.File dst int i java.io.File srcDir java.io.File dstDir boolean copyAdminDir org.tmatesoft.svn.core.wc.ISVNEventHandler cancel java.io.File[] files public static java.io.OutputStream openFileForWriting (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File file public static java.io.OutputStream openFileForWriting (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File file boolean append java.io.OutputStream fos java.io.OutputStream result public static java.io.FileOutputStream createFileOutputStream (java.io.File, boolean) throws java.io.IOException InterruptedException e1 java.io.IOException e int i java.io.File file boolean append int retryCount java.io.FileOutputStream os long sleep public static java.io.RandomAccessFile openRAFileForWriting (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.FileNotFoundException e org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe java.io.File file boolean append java.io.RandomAccessFile raf java.io.RandomAccessFile result public static java.io.InputStream openFileForReading (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File file public static java.io.InputStream openFileForReading (java.io.File, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.util.SVNLogType logType public static java.io.InputStream openFileForReading (java.io.File, java.util.logging.Level, org.tmatesoft.svn.util.SVNLogType) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.FileNotFoundException nfe org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File file java.util.logging.Level logLevel org.tmatesoft.svn.util.SVNLogType logType java.io.InputStream fis java.io.InputStream result public static java.io.FileInputStream createFileInputStream (java.io.File) throws java.io.IOException InterruptedException e1 java.io.IOException e int i java.io.File file int retryCount java.io.FileInputStream is long sleep public static java.io.RandomAccessFile openRAFileForReading (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.FileNotFoundException e java.io.File file public static void closeFile (java.io.InputStream) java.io.IOException e java.io.InputStream is public static void closeFile (org.tmatesoft.svn.core.internal.wc.ISVNInputFile) java.io.IOException e org.tmatesoft.svn.core.internal.wc.ISVNInputFile inFile public static void closeFile (java.io.OutputStream) java.io.IOException e java.io.OutputStream os public static void closeFile (java.io.RandomAccessFile) java.io.IOException e java.io.RandomAccessFile raf public static java.lang.String execCommand (java.lang.String[]) throws org.tmatesoft.svn.core.SVNException String[] commandLine public static java.lang.String execCommand (java.lang.String[], boolean, org.tmatesoft.svn.core.internal.wc.ISVNReturnValueCallback) throws org.tmatesoft.svn.core.SVNException String[] commandLine boolean waitAfterRead org.tmatesoft.svn.core.internal.wc.ISVNReturnValueCallback callback public static java.lang.String execCommand (java.lang.String[], java.lang.String[], boolean, org.tmatesoft.svn.core.internal.wc.ISVNReturnValueCallback) throws org.tmatesoft.svn.core.SVNException int rc char ch int rc int r java.io.IOException e InterruptedException e String[] commandLine String[] env boolean waitAfterRead org.tmatesoft.svn.core.internal.wc.ISVNReturnValueCallback callback java.io.InputStream is boolean handleOutput StringBuffer result Process process public static void closeFile (java.io.Writer) java.io.IOException e java.io.Writer os public static void closeFile (java.io.Reader) java.io.IOException e java.io.Reader is public static java.lang.String getAdminDirectoryName () String defaultAdminDir public static void setAdminDirectoryName (java.lang.String) String name public static java.io.File getApplicationDataPath () String jnaAppData String envAppData public static java.io.File getSystemApplicationDataPath () String jnaAppData String envAppData public static java.lang.String getEnvironmentVariable (java.lang.String) Object value java.lang.reflect.Method getenv Throwable e1 Throwable e String name public static void setTestEnvironment (java.lang.String, java.lang.String, java.lang.String) String editor String mergeTool String function public static java.lang.String[] getTestEnvironment () public static java.util.Properties getEnvironment () throws java.lang.Throwable String key String value int idx java.io.BufferedReader br String line Process p java.util.Properties envVars Runtime r public static java.io.File createTempDirectory (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e String name java.io.File tmpFile public static java.io.File createTempFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e String prefix String suffix java.io.File tmpFile public static java.io.File getSystemConfigurationDirectory () public static java.lang.String readSingleLine (java.io.File) throws java.io.IOException java.io.File file java.io.BufferedReader reader String line java.io.InputStream is private static java.lang.String decode (java.nio.charset.CharsetDecoder, byte[]) java.nio.charset.CharsetDecoder decoder byte[] in java.nio.ByteBuffer inBuf java.nio.CharBuffer outBuf private static java.lang.String getCurrentUser () throws org.tmatesoft.svn.core.SVNException private static java.lang.String getCurrentGroup () throws org.tmatesoft.svn.core.SVNException private static boolean isHex (char) char ch public static boolean isAbsolute (java.io.File) java.io.File path public static java.lang.String getFilePath (java.io.File) java.io.File file String path public static java.lang.String getFileName (java.io.File) java.io.File file public static java.io.File getFileDir (java.io.File) java.io.File file java.io.File parentFile public static java.io.File createFilePath (java.lang.String) String path public static java.io.File createFilePath (java.io.File, java.io.File) java.io.File parent java.io.File child public static java.io.File createFilePath (java.io.File, java.lang.String) java.io.File parent String child public static java.io.File createFilePath (java.lang.String, java.lang.String) String parent String child public static java.lang.String getFileExtension (java.io.File) java.io.File path public static java.lang.String getFileNameExtension (java.lang.String) String name int dotInd public static boolean compare (java.io.InputStream, java.io.InputStream) int r1 int r2 java.io.IOException e java.io.InputStream is java.io.InputStream old public static java.io.InputStream readSymlink (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.UnsupportedEncodingException e StringBuffer sb org.tmatesoft.svn.core.internal.wc.SVNFileType type java.io.File link public static long getFileLength (java.io.File) java.io.UnsupportedEncodingException e org.tmatesoft.svn.core.internal.wc.SVNFileType type java.io.File file public static long getFileLastModified (java.io.File) NumberFormatException e String output Throwable th Long lastModified org.tmatesoft.svn.core.internal.wc.SVNFileType type java.io.File file static void <clinit> () NumberFormatException nfe java.io.IOException e SecurityException e NoSuchMethodException e SecurityException e NoSuchMethodException e String retryCountStr int retryCount String osName String osNameLC boolean windows String prefix java.util.Properties props java.io.InputStream is }
org/tmatesoft/svn/core/internal/wc/SVNCommitter.class
SVNCommitter.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNCommitter extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler { private java.util.Map myCommitItems private java.util.Map myModifiedFiles private java.util.Collection myTmpFiles private String myRepositoryRoot private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator myDeltaGenerator public void <init> (java.util.Map, java.lang.String, java.util.Collection) java.util.Map commitItems String reposRoot java.util.Collection tmpFiles public boolean handleCommitPath (java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String mimeType org.tmatesoft.svn.core.SVNException e String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propsIter String copyFromPath org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException e String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propsIter org.tmatesoft.svn.core.SVNException e String commitPath org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.wc.SVNCommitItem item org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.wc.SVNEvent event boolean closeDir java.io.File file long rev long cfRev boolean fileOpen java.util.Map outgoingProperties public void sendTextDeltas (org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNCommitter$CopyingStream localStream org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.wc.SVNCommitItem item org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File tmpFile String expectedChecksum String checksum String newChecksum org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream baseChecksummedIS java.io.InputStream sourceIS java.io.InputStream targetIS java.io.OutputStream tmpBaseStream java.io.File baseFile org.tmatesoft.svn.core.SVNErrorMessage error boolean useChecksummedStream boolean openSrcStream java.util.Iterator paths org.tmatesoft.svn.core.io.ISVNEditor editor private void sendPropertiesDelta (java.lang.String, org.tmatesoft.svn.core.wc.SVNCommitItem, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String name String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propNames String propName org.tmatesoft.svn.core.SVNPropertyValue value java.util.Iterator names java.io.File tmpPropsFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties tmpProps String commitPath org.tmatesoft.svn.core.wc.SVNCommitItem item org.tmatesoft.svn.core.io.ISVNEditor editor org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String name org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean replaced org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProps org.tmatesoft.svn.core.SVNProperties diff private java.lang.String getCopyFromPath (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url String path private void fixError (java.lang.String, org.tmatesoft.svn.core.SVNException, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNCommitInfo commit (java.util.Collection, java.util.Map, java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException java.util.Collection tmpFiles java.util.Map commitItems String repositoryRoot org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.internal.wc.SVNCommitter committer }
org/tmatesoft/svn/core/internal/wc/SVNCopyDriver$CopyCommitPathHandler.class
SVNCopyDriver.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyCommitPathHandler extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNCommitPathHandler { private java.util.Map myPathInfos private boolean myIsMove public void <init> (java.util.Map, boolean) java.util.Map pathInfos boolean isMove public boolean handleCommitPath (java.lang.String, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException String commitPath org.tmatesoft.svn.core.io.ISVNEditor commitEditor org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPathInfo pathInfo boolean doAdd boolean doDelete boolean closeDir }
org/tmatesoft/svn/core/internal/wc/ISVNSSLPasspharsePromptSupport.class
ISVNSSLPasspharsePromptSupport.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNSSLPasspharsePromptSupport extends java.lang.Object { public abstract boolean isSSLPassphrasePromtSupported () }
org/tmatesoft/svn/core/internal/wc/SVNEventExt.class
SVNEventExt.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNEventExt extends org.tmatesoft.svn.core.wc.SVNEvent { private long myProcessedItemsCount private long myTotalItemsCount public void <init> (org.tmatesoft.svn.core.SVNErrorMessage) org.tmatesoft.svn.core.SVNErrorMessage errorMessage public void <init> (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, long, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.SVNMergeRange, java.lang.String, long, long, org.tmatesoft.svn.core.SVNProperties, java.lang.String) java.io.File file org.tmatesoft.svn.core.SVNNodeKind kind String mimetype long revision org.tmatesoft.svn.core.wc.SVNStatusType cstatus org.tmatesoft.svn.core.wc.SVNStatusType pstatus org.tmatesoft.svn.core.wc.SVNStatusType lstatus org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction expected org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNMergeRange range String changelistName long processedItemsCount long totalItemsCount org.tmatesoft.svn.core.SVNProperties revisionProperties String propertyName public long getProcessedItemsCount () public long getTotalItemsCount () }
org/tmatesoft/svn/core/internal/wc/SVNCopyDriver$CopyPair.class
SVNCopyDriver.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPair extends java.lang.Object { public String mySource public String myOriginalSource public org.tmatesoft.svn.core.SVNNodeKind mySourceKind public org.tmatesoft.svn.core.wc.SVNRevision mySourceRevision public org.tmatesoft.svn.core.wc.SVNRevision mySourcePegRevision public long mySourceRevisionNumber public String myBaseName public String myDst private void <init> () public void setSourceRevisions (org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision synthetic void <init> (org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$1) org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$1 x0 }
org/tmatesoft/svn/core/internal/wc/ISVNAuthenticationStorageOptions.class
ISVNAuthenticationStorageOptions.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions extends java.lang.Object { public static final org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions DEFAULT public abstract boolean isNonInteractive () throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc.ISVNAuthStoreHandler getAuthStoreHandler () throws org.tmatesoft.svn.core.SVNException public abstract boolean isSSLPassphrasePromptSupported () public abstract org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider getGnomeKeyringPasswordProvider () static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/SVNStatusUtil.class
SVNStatusUtil.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNStatusUtil extends java.lang.Object { public void <init> () public static org.tmatesoft.svn.core.internal.wc.SVNRevisionStatus getRevisionStatus (java.io.File, java.lang.String, boolean, org.tmatesoft.svn.core.wc.ISVNEventHandler) throws org.tmatesoft.svn.core.SVNException String wcURLStr org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo anchor long[] minRev long[] maxRev boolean[] isSwitched boolean[] isModified boolean[] isSparseCheckOut org.tmatesoft.svn.core.SVNURL[] wcURL org.tmatesoft.svn.core.internal.wc.SVNStatusEditor editor java.io.File wcPath String trailURL boolean committed org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public static org.tmatesoft.svn.core.wc.SVNStatus getStatus (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea java.io.File parentPath public static org.tmatesoft.svn.core.wc.SVNStatus assembleStatus (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.SVNNodeKind, boolean, boolean, boolean, java.util.Map, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.wc.SVNStatus status org.tmatesoft.svn.core.wc.SVNStatusType text org.tmatesoft.svn.core.internal.wc.SVNFileType fileType String urlName String name java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.SVNNodeKind fileKind boolean special boolean reportAll boolean isIgnored java.util.Map repositoryLocks org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess boolean hasProps boolean isTextModified boolean isPropsModified boolean isLocked boolean isSwitched boolean isSpecial boolean isFileExternal org.tmatesoft.svn.core.wc.SVNStatusType textStatus org.tmatesoft.svn.core.wc.SVNStatusType propStatus org.tmatesoft.svn.core.SVNLock repositoryLock int wcFormatNumber org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.SVNLock localLock java.io.File conflictNew java.io.File conflictOld java.io.File conflictWrk java.io.File conflictProp org.tmatesoft.svn.core.wc.SVNStatus status public static org.tmatesoft.svn.core.SVNLock getLock (java.util.Map, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) String path java.util.Map repositoryLocks org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL reposRoot String urlString String root String path }
org/tmatesoft/svn/core/internal/wc/SVNWCProperties$1.class
SVNWCProperties.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNWCProperties$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNPropertyComparator { final synthetic org.tmatesoft.svn.core.SVNProperties val$locallyChangedProperties final synthetic org.tmatesoft.svn.core.internal.wc.SVNWCProperties this$0 void <init> (org.tmatesoft.svn.core.internal.wc.SVNWCProperties, org.tmatesoft.svn.core.SVNProperties) public void propertyAdded (java.lang.String, java.io.InputStream, int) String name java.io.InputStream value int length public void propertyChanged (java.lang.String, java.io.InputStream, int) java.io.IOException e int i java.io.UnsupportedEncodingException e String name java.io.InputStream newValue int length java.io.ByteArrayOutputStream os byte[] bytes public void propertyDeleted (java.lang.String) String name }
org/tmatesoft/svn/core/internal/wc/SVNCancellableOutputStream$IOCancelException.class
SVNCancellableOutputStream.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNCancellableOutputStream$IOCancelException extends java.io.IOException { private static final long serialVersionUID public void <init> (java.lang.String) String message }
org/tmatesoft/svn/core/internal/wc/SVNUpdateEditor$SVNEntryInfo.class
SVNUpdateEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNEntryInfo extends java.lang.Object { public String URL public boolean IsAdded public boolean isExisted public boolean isAddExisted public org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo Parent public boolean isSkipped public long myPreviousRevision private String myPath private org.tmatesoft.svn.core.SVNProperties myChangedProperties private org.tmatesoft.svn.core.SVNProperties myChangedEntryProperties private org.tmatesoft.svn.core.SVNProperties myChangedWCProperties protected org.tmatesoft.svn.core.SVNProperties treeConflictCreationAttributes final synthetic org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor this$0 protected void <init> (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor, java.lang.String) String path protected java.lang.String getPath () public void propertyChanged (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) String strValue String name org.tmatesoft.svn.core.SVNPropertyValue value public org.tmatesoft.svn.core.SVNProperties getChangedWCProperties () public org.tmatesoft.svn.core.SVNProperties getChangedEntryProperties () public org.tmatesoft.svn.core.SVNProperties getChangedProperties () }
org/tmatesoft/svn/core/internal/wc/DefaultSVNSSLTrustManager.class
DefaultSVNSSLTrustManager.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNSSLTrustManager extends java.lang.Object implements javax.net.ssl.X509TrustManager { private org.tmatesoft.svn.core.SVNURL myURL private org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager myAuthManager private java.security.cert.X509Certificate[] myTrustedCerts private String myRealm private java.io.File myAuthDirectory private boolean myIsUseKeyStore private java.io.File[] myServerCertFiles private javax.net.ssl.X509TrustManager[] myDefaultTrustManagers public void <init> (java.io.File, org.tmatesoft.svn.core.SVNURL, java.io.File[], boolean, org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager) java.io.File authDir org.tmatesoft.svn.core.SVNURL url java.io.File[] serverCertFiles boolean useKeyStore org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager authManager private javax.net.ssl.X509TrustManager[] getDefaultTrustManagers () private javax.net.ssl.X509TrustManager[] initDefaultTrustManagers () javax.net.ssl.TrustManager trustManager int i javax.net.ssl.TrustManagerFactory tmf javax.net.ssl.TrustManager[] trustManagers java.util.List x509TrustManagers java.security.NoSuchAlgorithmException e java.security.NoSuchProviderException e java.security.KeyStoreException e private void init () java.security.cert.X509Certificate cert int i java.security.cert.X509Certificate cert int c javax.net.ssl.X509TrustManager trustManager java.security.cert.X509Certificate[] acceptedCerts int i java.util.Collection trustedCerts javax.net.ssl.X509TrustManager[] trustManagers public java.security.cert.X509Certificate[] getAcceptedIssuers () public void checkClientTrusted (java.security.cert.X509Certificate[], java.lang.String) throws java.security.cert.CertificateException java.security.cert.X509Certificate[] certs String arg1 public void checkServerTrusted (java.security.cert.X509Certificate[], java.lang.String) throws java.security.cert.CertificateException int result org.tmatesoft.svn.core.SVNException e boolean store boolean trustServer int result String data String stored org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider authProvider int failures java.security.cert.X509Certificate[] certs String algorithm private boolean checkServerTrustedByDefault (java.security.cert.X509Certificate[], java.lang.String) java.security.cert.CertificateException e javax.net.ssl.X509TrustManager trustManager boolean trusted int i java.security.cert.X509Certificate[] certs String algorithm javax.net.ssl.X509TrustManager[] trustManagers private java.lang.String getStoredServerCertificate (java.lang.String) String storedRealm org.tmatesoft.svn.core.SVNException e String realm java.io.File file org.tmatesoft.svn.core.internal.wc.SVNWCProperties props private void storeServerCertificate (java.lang.String, java.lang.String, int) throws org.tmatesoft.svn.core.SVNException String realm String data int failures java.io.File file org.tmatesoft.svn.core.internal.util.SVNHashMap map java.io.File tmpFile public static java.security.cert.X509Certificate loadCertificate (java.io.File) org.tmatesoft.svn.core.SVNException e java.security.cert.CertificateFactory factory java.security.cert.CertificateException e java.io.File pemFile java.io.InputStream is }
org/tmatesoft/svn/core/internal/wc/SVNStatusEditor$1.class
SVNStatusEditor.java package org.tmatesoft.svn.core.internal.wc synthetic org.tmatesoft.svn.core.internal.wc.SVNStatusEditor$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc/SVNCopyDriver$CopyPathInfo.class
SVNCopyDriver.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$CopyPathInfo extends java.lang.Object { public String mySourceRelativePath public boolean isDirAdded public boolean isResurrection public org.tmatesoft.svn.core.SVNNodeKind mySourceKind public String mySource public String mySourcePath public String myDstPath public String myMergeInfoProp public long mySourceRevisionNumber private void <init> () synthetic void <init> (org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$1) org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$1 x0 }
org/tmatesoft/svn/core/internal/wc/ISVNAuthStoreHandler.class
ISVNAuthStoreHandler.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNAuthStoreHandler extends java.lang.Object { public abstract boolean canStorePlainTextPasswords (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException public abstract boolean canStorePlainTextPassphrases (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/SVNMergeDriver$LogHandlerFilter.class
SVNMergeDriver.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$LogHandlerFilter extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { org.tmatesoft.svn.core.ISVNLogEntryHandler myRealHandler org.tmatesoft.svn.core.SVNMergeRangeList myRangeList final synthetic org.tmatesoft.svn.core.internal.wc.SVNMergeDriver this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver, org.tmatesoft.svn.core.ISVNLogEntryHandler, org.tmatesoft.svn.core.SVNMergeRangeList) org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.SVNMergeRangeList rangeList public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry org.tmatesoft.svn.core.SVNMergeRange range org.tmatesoft.svn.core.SVNMergeRangeList thisRangeList org.tmatesoft.svn.core.SVNMergeRangeList intersection }
org/tmatesoft/svn/core/internal/wc/DefaultSVNPersistentAuthenticationProvider$IPasswordStorage.class
DefaultSVNPersistentAuthenticationProvider.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage extends java.lang.Object { public abstract java.lang.String getPassType () public abstract boolean savePassword (java.lang.String, java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException public abstract java.lang.String readPassword (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException public abstract boolean savePassphrase (java.lang.String, java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication, org.tmatesoft.svn.core.SVNProperties, boolean) throws org.tmatesoft.svn.core.SVNException public abstract java.lang.String readPassphrase (java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/DefaultDumpFilterHandler$RevisionItem.class
DefaultDumpFilterHandler.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$RevisionItem extends java.lang.Object { long myRevision boolean myWasDropped final synthetic org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler, long, boolean) long revision boolean dropped public boolean wasDropped () public long getRevision () }
org/tmatesoft/svn/core/internal/wc/SVNDiffStatusEditor$SVNSummarize.class
SVNDiffStatusEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize extends java.lang.Object { private java.io.File myFile private String myPath private org.tmatesoft.svn.core.SVNNodeKind myKind private org.tmatesoft.svn.core.wc.SVNStatusType myType private boolean myPropChanged private org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize myParent final synthetic org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor, org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize parent String path org.tmatesoft.svn.core.SVNNodeKind kind public org.tmatesoft.svn.core.wc.SVNDiffStatus toStatus () throws org.tmatesoft.svn.core.SVNException static synthetic org.tmatesoft.svn.core.wc.SVNStatusType access$002 (org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize, org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize x0 org.tmatesoft.svn.core.wc.SVNStatusType x1 static synthetic org.tmatesoft.svn.core.wc.SVNStatusType access$000 (org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize) org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize x0 static synthetic boolean access$102 (org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize, boolean) org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize x0 boolean x1 static synthetic org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize access$200 (org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize) org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize x0 }
org/tmatesoft/svn/core/internal/wc/SVNMergeDriver$MergeSource.class
SVNMergeDriver.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource extends java.lang.Object { private org.tmatesoft.svn.core.SVNURL myURL1 private long myRevision1 private org.tmatesoft.svn.core.SVNURL myURL2 private long myRevision2 final synthetic org.tmatesoft.svn.core.internal.wc.SVNMergeDriver this$0 protected void <init> (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver) public org.tmatesoft.svn.core.SVNURL getURL1 () public org.tmatesoft.svn.core.SVNURL getURL2 () public long getRevision1 () public long getRevision2 () static synthetic org.tmatesoft.svn.core.SVNURL access$002 (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource x0 org.tmatesoft.svn.core.SVNURL x1 static synthetic org.tmatesoft.svn.core.SVNURL access$102 (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource x0 org.tmatesoft.svn.core.SVNURL x1 static synthetic long access$202 (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource, long) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource x0 long x1 static synthetic long access$302 (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource, long) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource x0 long x1 static synthetic org.tmatesoft.svn.core.SVNURL access$000 (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource x0 static synthetic org.tmatesoft.svn.core.SVNURL access$100 (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource x0 static synthetic long access$200 (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource x0 static synthetic long access$300 (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource x0 }
org/tmatesoft/svn/core/internal/wc/SVNNodeEditor$DiffItem.class
SVNNodeEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$DiffItem extends java.lang.Object { String myMimeType java.io.File myTmpFile final synthetic org.tmatesoft.svn.core.internal.wc.SVNNodeEditor this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNNodeEditor, java.lang.String, java.io.File) String mimeType java.io.File tmpFile }
org/tmatesoft/svn/core/internal/wc/SVNDiffConflictChoiceStyle.class
SVNDiffConflictChoiceStyle.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle extends java.lang.Object { public static final org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle CHOOSE_MODIFIED_LATEST public static final org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle CHOOSE_RESOLVED_MODIFIED_LATEST public static final org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle CHOOSE_MODIFIED_ORIGINAL_LATEST public static final org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle CHOOSE_MODIFIED public static final org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle CHOOSE_LATEST public static final org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle CHOOSE_ONLY_CONFLICTS private void <init> () static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/SVNUpdateEditor$SVNDirectoryInfo.class
SVNUpdateEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo extends org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNEntryInfo implements org.tmatesoft.svn.core.internal.wc.admin.ISVNCleanupHandler { public int RefCount private org.tmatesoft.svn.core.internal.wc.admin.SVNLog log public int LogCount public org.tmatesoft.svn.core.SVNDepth myAmbientDepth public boolean wasIncomplete public boolean anyChangesInChildren final synthetic org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor, java.lang.String) String path public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getAdminArea () throws org.tmatesoft.svn.core.SVNException String path java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area public org.tmatesoft.svn.core.internal.wc.admin.SVNLog getLog () throws org.tmatesoft.svn.core.SVNException public void flushLog () throws org.tmatesoft.svn.core.SVNException public void runLogs () throws org.tmatesoft.svn.core.SVNException public void cleanup (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area static synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNLog access$1002 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo, org.tmatesoft.svn.core.internal.wc.admin.SVNLog) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo x0 org.tmatesoft.svn.core.internal.wc.admin.SVNLog x1 }
org/tmatesoft/svn/core/internal/wc/SVNNodeEditor.class
SVNNodeEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNNodeEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private static final char TYPE_REPLACED private org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node myCurrentNode private org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node myRootNode private org.tmatesoft.svn.core.internal.io.fs.FSRoot myBaseRoot private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS private java.util.Map myFiles private org.tmatesoft.svn.core.wc.ISVNEventHandler myCancelHandler private java.io.File myTempDirectory public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSRoot, org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.FSRoot baseRoot org.tmatesoft.svn.core.wc.ISVNEventHandler handler public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node node public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node fileNode public void closeDir () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String textChecksum public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node child java.util.Iterator children org.tmatesoft.svn.core.SVNErrorMessage err String path long revision String name org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node node org.tmatesoft.svn.core.io.SVNLocationEntry baseLocation org.tmatesoft.svn.core.internal.io.fs.FSRoot baseRoot org.tmatesoft.svn.core.SVNNodeKind kind public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node node public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node fileNode public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void diff (org.tmatesoft.svn.core.internal.io.fs.FSRoot, long, org.tmatesoft.svn.core.wc.admin.ISVNGNUDiffGenerator, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot baseRoot org.tmatesoft.svn.core.internal.io.fs.FSRoot root long baseRevision org.tmatesoft.svn.core.wc.admin.ISVNGNUDiffGenerator generator java.io.OutputStream os public void traverseTree (boolean, org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler) throws org.tmatesoft.svn.core.SVNException boolean includeCopyInfo org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler handler public void traverseChangedDirs (org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler handler private void diffImpl (org.tmatesoft.svn.core.internal.io.fs.FSRoot, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node, org.tmatesoft.svn.core.wc.admin.ISVNGNUDiffGenerator, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot revRoot org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot int kind String rev1 String rev2 boolean hasDiff org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode baseNode String displayPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode localNode org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties propsDiff org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node childNode String childPath String childBasePath java.util.Iterator children org.tmatesoft.svn.core.internal.io.fs.FSRoot root org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot baseRoot String path String basePath org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node node org.tmatesoft.svn.core.wc.admin.ISVNGNUDiffGenerator generator java.io.OutputStream os org.tmatesoft.svn.core.internal.wc.DefaultSVNGNUDiffGenerator defaultGenerator boolean isCopy boolean printedHeader boolean doDiff boolean isOriginalEmpty org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$DiffItem originalFile org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$DiffItem newFile private org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$DiffItem prepareTmpFile (org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String, org.tmatesoft.svn.core.wc.ISVNDiffGenerator) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node org.tmatesoft.svn.core.SVNProperties nodeProps java.io.InputStream contents java.io.OutputStream tmpOS org.tmatesoft.svn.core.internal.io.fs.FSRoot root String path org.tmatesoft.svn.core.wc.ISVNDiffGenerator generator String mimeType java.io.File tmpFile private java.io.File createTempFile (org.tmatesoft.svn.core.wc.ISVNDiffGenerator) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.wc.ISVNDiffGenerator generator java.io.File tmpFile private java.io.File getTempDirectory (org.tmatesoft.svn.core.wc.ISVNDiffGenerator) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.ISVNDiffGenerator generator private void cleanup () private void traverseChangedDirsImpl (org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node, java.lang.String, org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node child java.util.Iterator children org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node childNode String fullPath java.util.Iterator children org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node node String path org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler handler boolean proceed private void traverseChangedTreeImpl (org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node, java.lang.String, boolean, org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler) throws org.tmatesoft.svn.core.SVNException String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node childNode String fullPath java.util.Iterator children org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node node String path boolean includeCopyInfo org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler handler org.tmatesoft.svn.core.wc.admin.SVNChangeEntry changeEntry private org.tmatesoft.svn.core.io.SVNLocationEntry findRealBaseLocation (org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNLocationEntry location org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node node private org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node addOrOpen (java.lang.String, char, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node, java.lang.String, long) String path char action org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node parent String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node node }
org/tmatesoft/svn/core/internal/wc/ISVNUpdateEditor.class
ISVNUpdateEditor.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { public abstract long getTargetRevision () }
org/tmatesoft/svn/core/internal/wc/SVNMergeDriver$MergeInfoFetcher.class
SVNMergeDriver.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeInfoFetcher extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { private org.tmatesoft.svn.core.SVNDepth myDepth private java.util.List myChildrenWithMergeInfo final synthetic org.tmatesoft.svn.core.internal.wc.SVNMergeDriver this$0 protected void <init> (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver, org.tmatesoft.svn.core.SVNDepth, java.util.List) org.tmatesoft.svn.core.SVNDepth depth java.util.List childrenWithMergeInfo public void <init> (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver) public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props boolean hasMissingChild boolean hasNonInheritable org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath child java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File target org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea boolean isSwitched boolean hasMergeInfo boolean pathIsMergeTarget String mergeInfoProp java.io.File parent public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc/DefaultSVNPersistentAuthenticationProvider$MacOsKeychainPasswordStorage.class
DefaultSVNPersistentAuthenticationProvider.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$MacOsKeychainPasswordStorage extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage { final synthetic org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider this$0 protected void <init> (org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider) public java.lang.String getPassType () public boolean savePassword (java.lang.String, java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String realm String password org.tmatesoft.svn.core.auth.SVNAuthentication auth org.tmatesoft.svn.core.SVNProperties authParameters public java.lang.String readPassword (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String realm String userName org.tmatesoft.svn.core.SVNProperties authParameters public boolean savePassphrase (java.lang.String, java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication, org.tmatesoft.svn.core.SVNProperties, boolean) throws org.tmatesoft.svn.core.SVNException String realm String passphrase org.tmatesoft.svn.core.auth.SVNAuthentication auth org.tmatesoft.svn.core.SVNProperties authParameters boolean force public java.lang.String readPassphrase (java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String realm org.tmatesoft.svn.core.SVNProperties authParameters }
org/tmatesoft/svn/core/internal/wc/SVNDepthFilterEditor.class
SVNDepthFilterEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private org.tmatesoft.svn.core.io.ISVNEditor myDelegate private org.tmatesoft.svn.core.SVNDepth myRequestedDepth private boolean myHasTarget private org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor$NodeBaton myCurrentNodeBaton private void <init> (org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNEditor, boolean) org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.io.ISVNEditor delegate boolean hasTarget public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor$NodeBaton childNodeBaton public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor$NodeBaton childNodeBaton public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String textChecksum public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor$NodeBaton childNodeBaton public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor$NodeBaton childNodeBaton public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public static org.tmatesoft.svn.core.io.ISVNEditor getDepthFilterEditor (org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNEditor, boolean) org.tmatesoft.svn.core.SVNDepth requestedDepth org.tmatesoft.svn.core.io.ISVNEditor delegate boolean hasTarget static synthetic boolean access$000 (org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor) org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor x0 static synthetic org.tmatesoft.svn.core.SVNDepth access$100 (org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor) org.tmatesoft.svn.core.internal.wc.SVNDepthFilterEditor x0 }
org/tmatesoft/svn/core/internal/wc/SVNDiffStatusEditor.class
SVNDiffStatusEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize myCurrentDirSummarize private org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor$SVNSummarize myCurrentFileSummarize private org.tmatesoft.svn.core.io.SVNRepository myRepository private org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler myHandler private long myRevision private org.tmatesoft.svn.core.SVNURL myRootURL private java.io.File myAnchor private String myTarget public void <init> (java.io.File, java.lang.String, org.tmatesoft.svn.core.io.SVNRepository, long, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) java.io.File anchor String target org.tmatesoft.svn.core.io.SVNRepository repos long revision org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.SVNNodeKind kind String statusPath org.tmatesoft.svn.core.wc.SVNDiffStatus status private void diffDeletedDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name String entryPath String statusPath org.tmatesoft.svn.core.wc.SVNDiffStatus status org.tmatesoft.svn.core.SVNDirEntry entry java.util.Iterator i$ String path java.util.Collection entries private java.lang.String getStatusPath (java.lang.String) String path String statusPath public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String textChecksum public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path static synthetic java.io.File access$300 (org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor) org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor x0 static synthetic java.lang.String access$400 (org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor, java.lang.String) org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor x0 String x1 static synthetic org.tmatesoft.svn.core.SVNURL access$500 (org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor) org.tmatesoft.svn.core.internal.wc.SVNDiffStatusEditor x0 }
org/tmatesoft/svn/core/internal/wc/SVNDumpEditor$1.class
SVNDumpEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNDumpEditor$1 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNDeltaConsumer { private boolean isHeaderWritten final synthetic org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream val$countingStream final synthetic org.tmatesoft.svn.core.internal.wc.SVNDumpEditor this$0 void <init> (org.tmatesoft.svn.core.internal.wc.SVNDumpEditor, org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream) public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path }
org/tmatesoft/svn/core/internal/wc/SVNPasswordCipher.class
SVNPasswordCipher.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher extends java.lang.Object { public static final String SIMPLE_CIPHER_TYPE public static final String WINCRYPT_CIPHER_TYPE private static final org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher EMPTY_CIPHER private static final org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher SIMPLE_CIPHER private static final org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher WINCRYPT_CIPHER private static java.util.Map ourInstances private static String ourDefaultType public static org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher getInstance (java.lang.String) String type public static boolean hasCipher (java.lang.String) String type public static void setDefaultCipherType (java.lang.String) String type public static java.lang.String getDefaultCipherType () public static void registerCipher (java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher) String type org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher cipher protected void <init> () public abstract java.lang.String encrypt (java.lang.String) public abstract java.lang.String decrypt (java.lang.String) public abstract java.lang.String getCipherType () static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/DefaultSVNHostOptionsProvider.class
DefaultSVNHostOptionsProvider.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNHostOptionsProvider extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNHostOptionsProvider { private final java.io.File myConfigDirectory private org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile myServersFile private java.util.Map myServersOptions public void <init> () public void <init> (java.io.File) java.io.File configDirectory public void setInMemoryServersOptions (java.util.Map) java.util.Map serversOptions protected org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile getServersFile () org.tmatesoft.svn.core.internal.wc.SVNConfigFile userConfig org.tmatesoft.svn.core.internal.wc.SVNConfigFile systemConfig public org.tmatesoft.svn.core.internal.wc.ISVNHostOptions getHostOptions (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url }
org/tmatesoft/svn/core/internal/wc/ISVNFileFetcher.class
ISVNFileFetcher.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher extends java.lang.Object { public abstract long fetchFile (java.lang.String, long, java.io.OutputStream, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/DefaultSVNMergerAction.class
DefaultSVNMergerAction.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNMergerAction extends java.lang.Object { public static final org.tmatesoft.svn.core.internal.wc.DefaultSVNMergerAction MARK_CONFLICTED public static final org.tmatesoft.svn.core.internal.wc.DefaultSVNMergerAction CHOOSE_BASE public static final org.tmatesoft.svn.core.internal.wc.DefaultSVNMergerAction CHOOSE_REPOSITORY public static final org.tmatesoft.svn.core.internal.wc.DefaultSVNMergerAction CHOOSE_WORKING public static final org.tmatesoft.svn.core.internal.wc.DefaultSVNMergerAction MARK_RESOLVED public static final org.tmatesoft.svn.core.internal.wc.DefaultSVNMergerAction CHOOSE_MERGED_FILE public static final org.tmatesoft.svn.core.internal.wc.DefaultSVNMergerAction CHOOSE_REPOSITORY_CONFLICTED public static final org.tmatesoft.svn.core.internal.wc.DefaultSVNMergerAction CHOOSE_WORKING_CONFLICTED private void <init> () static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/DefaultSVNAuthenticationManager$2.class
DefaultSVNAuthenticationManager.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$2 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions { final synthetic org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager this$0 void <init> (org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager) public boolean isNonInteractive () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.internal.wc.ISVNAuthStoreHandler getAuthStoreHandler () throws org.tmatesoft.svn.core.SVNException public boolean isSSLPassphrasePromptSupported () public org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider getGnomeKeyringPasswordProvider () }
org/tmatesoft/svn/core/internal/wc/ISVNAuthenticationStorageOptions$1.class
ISVNAuthenticationStorageOptions.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions { void <init> () public boolean isNonInteractive () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.internal.wc.ISVNAuthStoreHandler getAuthStoreHandler () throws org.tmatesoft.svn.core.SVNException public boolean isSSLPassphrasePromptSupported () public org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider getGnomeKeyringPasswordProvider () }
org/tmatesoft/svn/core/internal/wc/SVNUpdateEditor$2.class
SVNUpdateEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$2 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { final synthetic java.io.File val$path final synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea val$adminArea final synthetic org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor this$0 void <init> (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea eArea java.util.Map eAttrs org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea eArea java.io.File ePath org.tmatesoft.svn.core.internal.wc.admin.SVNEntry e public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc/SVNAmbientDepthFilterEditor$FileBaton.class
SVNAmbientDepthFilterEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$FileBaton extends java.lang.Object { boolean myIsAmbientlyExcluded final synthetic org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor this$0 private void <init> (org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor) synthetic void <init> (org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor, org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$1) org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor x0 org.tmatesoft.svn.core.internal.wc.SVNAmbientDepthFilterEditor$1 x1 }
org/tmatesoft/svn/core/internal/wc/SVNPasswordCipher$CompositePasswordCipher.class
SVNPasswordCipher.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher$CompositePasswordCipher extends org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher { private java.util.List myCiphers private String myCipherType private void <init> (java.util.List, java.lang.String) java.util.List chiphers String cipherType public void <init> (org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher) org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher chipher public synchronized void addCipher (org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher) org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher chipher public synchronized java.lang.String decrypt (java.lang.String) org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher chipher java.util.Iterator chiphers String encyrptedData public synchronized java.lang.String encrypt (java.lang.String) org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher chipher java.util.Iterator chiphers String rawData public java.lang.String getCipherType () synthetic void <init> (java.util.List, java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher$1) java.util.List x0 String x1 org.tmatesoft.svn.core.internal.wc.SVNPasswordCipher$1 x2 }
org/tmatesoft/svn/core/internal/wc/ISVNReusableEditor.class
ISVNReusableEditor.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNReusableEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { public abstract void reset (long, long) public abstract void cleanup () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/IOExceptionWrapper.class
IOExceptionWrapper.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper extends java.io.IOException { private static final long serialVersionUID private org.tmatesoft.svn.core.SVNException myOriginalException public void <init> (org.tmatesoft.svn.core.SVNException) org.tmatesoft.svn.core.SVNException cause public org.tmatesoft.svn.core.SVNException getOriginalException () }
org/tmatesoft/svn/core/internal/wc/SVNCopyDriver$1.class
SVNCopyDriver.java package org.tmatesoft.svn.core.internal.wc synthetic org.tmatesoft.svn.core.internal.wc.SVNCopyDriver$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc/AbstractSVNMerger.class
AbstractSVNMerger.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.AbstractSVNMerger extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNMerger { private byte[] myStart private byte[] mySeparator private byte[] myEnd private org.tmatesoft.svn.core.wc.SVNDiffOptions myDiffOptions protected void <init> (byte[], byte[], byte[]) byte[] start byte[] sep byte[] end protected byte[] getConflictSeparatorMarker () protected byte[] getConflictStartMarker () protected byte[] getConflictEndMarker () protected org.tmatesoft.svn.core.wc.SVNDiffOptions getDiffOptions () public org.tmatesoft.svn.core.wc.SVNMergeResult mergeText (org.tmatesoft.svn.core.wc.SVNMergeFileSet, boolean, org.tmatesoft.svn.core.wc.SVNDiffOptions) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatusType status org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props boolean isSpecial boolean isSameContents org.tmatesoft.svn.core.wc.SVNMergeFileSet files boolean dryRun org.tmatesoft.svn.core.wc.SVNDiffOptions options org.tmatesoft.svn.core.wc.SVNStatusType status org.tmatesoft.svn.core.wc.SVNMergeResult result protected abstract org.tmatesoft.svn.core.wc.SVNMergeResult processMergedFiles (org.tmatesoft.svn.core.wc.SVNMergeFileSet, org.tmatesoft.svn.core.wc.SVNMergeResult) throws org.tmatesoft.svn.core.SVNException protected abstract org.tmatesoft.svn.core.wc.SVNStatusType mergeText (java.io.File, java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNDiffOptions, java.io.File) throws org.tmatesoft.svn.core.SVNException protected abstract org.tmatesoft.svn.core.wc.SVNStatusType mergeBinary (java.io.File, java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNDiffOptions, java.io.File) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/SVNMergeDriver$CopyFromReceiver.class
SVNMergeDriver.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$CopyFromReceiver extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { private String myTargetPath private org.tmatesoft.svn.core.io.SVNLocationEntry myCopyFromLocation public void <init> (java.lang.String) String targetPath public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException String relPath String copyFromPath String changedPath org.tmatesoft.svn.core.SVNLogEntryPath logEntryPath java.util.Iterator changedPathsIter java.util.TreeMap sortedChangedPaths org.tmatesoft.svn.core.SVNLogEntry logEntry java.util.Map changedPaths public org.tmatesoft.svn.core.io.SVNLocationEntry getCopyFromLocation () }
org/tmatesoft/svn/core/internal/wc/SVNWCManager$1.class
SVNWCManager.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.SVNWCManager$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { final synthetic org.tmatesoft.svn.core.wc.ISVNEventHandler val$eventHandler void <init> (org.tmatesoft.svn.core.wc.ISVNEventHandler) public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress }
org/tmatesoft/svn/core/internal/wc/SVNMergeCallback15.class
SVNMergeCallback15.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNMergeCallback15 extends org.tmatesoft.svn.core.internal.wc.SVNMergeCallback { public void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNURL, boolean, boolean, org.tmatesoft.svn.core.wc.SVNDiffOptions, java.util.Map, org.tmatesoft.svn.core.internal.wc.SVNMergeDriver) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNURL url boolean force boolean dryRun org.tmatesoft.svn.core.wc.SVNDiffOptions options java.util.Map conflictedPathsGetter org.tmatesoft.svn.core.internal.wc.SVNMergeDriver mergeDriver public org.tmatesoft.svn.core.wc.SVNStatusType propertiesChanged (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties filteredProps org.tmatesoft.svn.core.SVNPropertyValue mergeInfoProp String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propsIter java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergeSource mergeSource org.tmatesoft.svn.core.wc.SVNStatusType status org.tmatesoft.svn.core.SVNException e String path org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties diff boolean[] isTreeConflicted org.tmatesoft.svn.core.SVNProperties regularProps public org.tmatesoft.svn.core.wc.SVNStatusType directoryAdded (java.lang.String, long, boolean[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.ISVNEventHandler oldEventHandler org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.wc.ISVNEventHandler oldEventHandler org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String path long revision boolean[] isTreeConflicted java.io.File mergedFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.SVNURL copyFromURL long copyFromRevision org.tmatesoft.svn.core.internal.wc.SVNFileType fileType public org.tmatesoft.svn.core.wc.SVNStatusType directoryDeleted (java.lang.String, boolean[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.ISVNEventHandler oldEventHandler org.tmatesoft.svn.core.wc.ISVNEventHandler handler String path boolean[] isTreeConflicted java.io.File mergedFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.SVNFileType fileType public void directoryOpened (java.lang.String, long, boolean[]) throws org.tmatesoft.svn.core.SVNException String path long revision boolean[] isTreeConflicted public org.tmatesoft.svn.core.wc.SVNStatusType[] fileChanged (java.lang.String, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException boolean executable boolean same String localLabel String baseLabel String latestLabel org.tmatesoft.svn.core.wc.SVNStatusType mergeResult boolean textModified String path java.io.File file1 java.io.File file2 long revision1 long revision2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties diff boolean[] isTreeConflicted boolean needsMerge java.io.File mergedFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.wc.SVNStatusType[] result org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.SVNFileType fileType String name public org.tmatesoft.svn.core.wc.SVNStatusType[] fileAdded (java.lang.String, java.io.File, java.io.File, long, long, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propChangesIter String targePath String minePath String relativePath String copyFromURL long copyFromRevision org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String path java.io.File file1 java.io.File file2 long revision1 long revision2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties originalProperties org.tmatesoft.svn.core.SVNProperties diff boolean[] isTreeConflicted org.tmatesoft.svn.core.wc.SVNStatusType[] result org.tmatesoft.svn.core.SVNProperties newProps java.io.File mergedFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.SVNFileType fileType public org.tmatesoft.svn.core.wc.SVNStatusType fileDeleted (java.lang.String, java.io.File, java.io.File, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.ISVNEventHandler oldEventHandler String path java.io.File file1 java.io.File file2 String mimeType1 String mimeType2 org.tmatesoft.svn.core.SVNProperties originalProperties boolean[] isTreeConflicted java.io.File mergedFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.SVNFileType fileType public org.tmatesoft.svn.core.wc.SVNStatusType[] directoryClosed (java.lang.String, boolean[]) throws org.tmatesoft.svn.core.SVNException String path boolean[] isTreeConflicted protected void delete (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean force boolean dryRun org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea root }
org/tmatesoft/svn/core/internal/wc/SVNCommitter$CopyingStream.class
SVNCommitter.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNCommitter$CopyingStream extends java.io.InputStream { private java.io.InputStream myInput private java.io.OutputStream myOutput final synthetic org.tmatesoft.svn.core.internal.wc.SVNCommitter this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNCommitter, java.io.OutputStream, java.io.InputStream) java.io.OutputStream os java.io.InputStream is public int read () throws java.io.IOException int r public int read (byte[]) throws java.io.IOException byte[] b int r public int read (byte[], int, int) throws java.io.IOException byte[] b int off int len int r }
org/tmatesoft/svn/core/internal/wc/DefaultLoadHandler$1.class
DefaultLoadHandler.java package org.tmatesoft.svn.core.internal.wc synthetic org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc/SVNPropertiesManager.class
SVNPropertiesManager.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNPropertiesManager extends java.lang.Object { private static final java.util.Collection NOT_ALLOWED_FOR_FILE private static final java.util.Collection NOT_ALLOWED_FOR_DIR public void <init> () public static void validateRevisionProperties (org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNProperties revisionProperties public static boolean setWCProperty (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.io.File path String propName org.tmatesoft.svn.core.SVNPropertyValue propValue boolean write org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties wcProps org.tmatesoft.svn.core.SVNPropertyValue oldValue public static org.tmatesoft.svn.core.SVNPropertyValue getWCProperty (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.io.File path String propName org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir public static void deleteWCProperties (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String name boolean recursive public static org.tmatesoft.svn.core.SVNPropertyValue getProperty (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException String[] presentProperties org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.io.File path String propName org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String[] cachableProperties org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir public static boolean setProperty (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction action java.util.Collection oldKeywords java.util.Collection newKeywords org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access java.io.File path String propName org.tmatesoft.svn.core.SVNPropertyValue propValue boolean skipChecks org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir boolean updateTimeStamp org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties properties org.tmatesoft.svn.core.SVNPropertyValue oldValue org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.internal.wc.admin.SVNLog log boolean modified public static org.tmatesoft.svn.core.wc.SVNStatusType mergeProperties (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, java.io.File, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File path org.tmatesoft.svn.core.SVNProperties baseProperties org.tmatesoft.svn.core.SVNProperties diff boolean baseMerge boolean dryRun org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File parent String name org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.wc.SVNStatusType result public static java.util.Map computeAutoProperties (org.tmatesoft.svn.core.wc.ISVNOptions, java.io.File, java.util.Map) throws org.tmatesoft.svn.core.SVNException String mimeType org.tmatesoft.svn.core.wc.ISVNOptions options java.io.File file java.util.Map properties public static java.util.Map getWorkingCopyPropertyValues (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.lang.String, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String propName org.tmatesoft.svn.core.SVNDepth depth boolean base java.util.Map pathsToPropValues org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler handler org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public static void recordWCMergeInfo (java.io.File, java.util.Map, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException java.io.File path java.util.Map mergeInfo org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.SVNPropertyValue value public static java.util.Map parseMergeInfo (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean base java.util.Map fileToProp java.util.Map result org.tmatesoft.svn.core.SVNPropertyValue propValue public static boolean isValidPropertyName (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int i String name public static boolean propNeedsTranslation (java.lang.String) String propertyName private static java.util.Collection getKeywords (java.lang.String) java.util.StringTokenizer tokens String value java.util.Collection keywords private static boolean contains (java.lang.String[], java.lang.String) int i String[] values String value public static org.tmatesoft.svn.core.SVNPropertyValue validatePropertyValue (java.lang.Object, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean, org.tmatesoft.svn.core.wc.ISVNOptions, org.tmatesoft.svn.core.internal.wc.ISVNFileContentFetcher) throws org.tmatesoft.svn.core.SVNException String str org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage err java.util.Map mergeInfo Object path org.tmatesoft.svn.core.SVNNodeKind kind String name org.tmatesoft.svn.core.SVNPropertyValue value boolean force org.tmatesoft.svn.core.wc.ISVNOptions options org.tmatesoft.svn.core.internal.wc.ISVNFileContentFetcher fileContentFetcher private static boolean hasSVNProperties (org.tmatesoft.svn.core.SVNProperties) String propName java.util.Iterator names org.tmatesoft.svn.core.SVNProperties props private static void validatePropertyName (java.lang.Object, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException Object path String name org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNErrorMessage err public static void validateMimeType (java.lang.String) throws org.tmatesoft.svn.core.SVNException String value String type org.tmatesoft.svn.core.SVNErrorMessage err public static java.lang.String determineEncodingByMimeType (java.lang.String) String token java.util.StringTokenizer tokenizer String mimeType public static void validateEOLProperty (java.lang.Object, org.tmatesoft.svn.core.internal.wc.ISVNFileContentFetcher) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper wrapper java.io.IOException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper wrapper java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage error Object path org.tmatesoft.svn.core.internal.wc.ISVNFileContentFetcher fetcher org.tmatesoft.svn.core.internal.wc.admin.SVNTranslatorOutputStream out private static void handleInconsistentEOL (org.tmatesoft.svn.core.SVNException, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper wrapper org.tmatesoft.svn.core.SVNException svne Object path org.tmatesoft.svn.core.SVNErrorMessage errorMessage Throwable cause static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/ISVNMergeInfoFilter.class
ISVNMergeInfoFilter.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNMergeInfoFilter extends java.lang.Object { public abstract boolean omitMergeInfo (java.lang.String, java.util.Map) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/SVNAdminUtil.class
SVNAdminUtil.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNAdminUtil extends java.lang.Object { private static final byte[] FORMAT_TEXT private static final byte[] README_TEXT private static final boolean SKIP_README private static final String BASE_EXT private static final String REVERT_EXT private static final String WORK_EXT private static final String TEXT_BASE_DIR_NAME private static final String PROP_BASE_DIR_NAME private static final String PROP_WORK_DIR_NAME private static final String PROP_WC_DIR_NAME private static final String TMP_DIR_NAME private static final String DIR_PROPS_FILE private static final String DIR_BASE_PROPS_FILE private static final String DIR_REVERT_PROPS_FILE private static final String DIR_WC_PROPS_FILE public void <init> () public static void createReadmeFile (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File adminDir java.io.OutputStream os public static void createFormatFile (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File adminDir java.io.OutputStream os public static java.lang.String getTextBasePath (java.lang.String, boolean) String name boolean tmp StringBuffer buffer public static java.lang.String getTextRevertPath (java.lang.String, boolean) String name boolean tmp StringBuffer buffer public static java.lang.String getPropPath (java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, boolean) String name org.tmatesoft.svn.core.SVNNodeKind kind boolean tmp StringBuffer buffer public static java.lang.String getPropBasePath (java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, boolean) String name org.tmatesoft.svn.core.SVNNodeKind kind boolean tmp StringBuffer buffer public static java.lang.String getPropRevertPath (java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, boolean) String name org.tmatesoft.svn.core.SVNNodeKind kind boolean tmp StringBuffer buffer public static java.lang.String getWCPropPath (java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, boolean) String name org.tmatesoft.svn.core.SVNNodeKind kind boolean tmp StringBuffer buffer public static java.io.File createTmpFile (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public static java.io.File createTmpFile (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String prefix String suffix boolean tmp StringBuffer buffer String adminPath java.io.File dir public static int getVersion (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err1 NumberFormatException e java.io.File path java.io.File adminDir java.io.File entriesFile int formatVersion java.io.BufferedReader reader String line public static void unserializeExternalFileData (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.lang.String) throws org.tmatesoft.svn.core.SVNException StringBuffer buffer org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String rawExternalFileData org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision String path public static org.tmatesoft.svn.core.wc.SVNRevision parseRevision (java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err StringBuffer str int ind org.tmatesoft.svn.core.wc.SVNRevision revision String subStr public static java.lang.String serializeExternalFileData (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException String revStr String pegRevStr org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String representation String path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNRevision pegRevision public static java.lang.String asString (org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNRevision revision String path org.tmatesoft.svn.core.SVNErrorMessage err static void <clinit> () String eol }
org/tmatesoft/svn/core/internal/wc/SVNCancellableOutputStream.class
SVNCancellableOutputStream.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNCancellableOutputStream extends java.io.FilterOutputStream { private org.tmatesoft.svn.core.ISVNCanceller myEventHandler public void <init> (java.io.OutputStream, org.tmatesoft.svn.core.ISVNCanceller) java.io.OutputStream out org.tmatesoft.svn.core.ISVNCanceller eventHandler public void write (byte[], int, int) throws java.io.IOException org.tmatesoft.svn.core.SVNCancelException e byte[] b int off int len public void write (byte[]) throws java.io.IOException org.tmatesoft.svn.core.SVNCancelException e byte[] b }
org/tmatesoft/svn/core/internal/wc/FSMergerBySequence.class
FSMergerBySequence.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.FSMergerBySequence extends java.lang.Object { public static final String DEFAULT_EOL public static final int NOT_MODIFIED public static final int MERGED public static final int CONFLICTED private final byte[] myConflictStart private final byte[] myConflictSeparator private final byte[] myConflictEnd private final byte[] myOriginalMarker public void <init> (byte[], byte[], byte[]) byte[] conflictStart byte[] conflictSeparator byte[] conflictEnd public void <init> (byte[], byte[], byte[], byte[]) byte[] conflictStart byte[] conflictSeparator byte[] conflictEnd byte[] originalMarker public int merge (de.regnis.q.sequence.line.QSequenceLineRAData, de.regnis.q.sequence.line.QSequenceLineRAData, de.regnis.q.sequence.line.QSequenceLineRAData, org.tmatesoft.svn.core.wc.SVNDiffOptions, java.io.OutputStream, org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle) throws java.io.IOException de.regnis.q.sequence.core.QSequenceException ex de.regnis.q.sequence.QSequenceDifferenceBlock localStartBlock de.regnis.q.sequence.QSequenceDifferenceBlock latestStartBlock de.regnis.q.sequence.line.QSequenceLineCache baseLines de.regnis.q.sequence.line.QSequenceLineCache localLines de.regnis.q.sequence.line.QSequenceLineCache latestLines org.tmatesoft.svn.core.internal.wc.FSMergerBySequenceList local org.tmatesoft.svn.core.internal.wc.FSMergerBySequenceList latest java.util.List transformedLocalLines int baseLineIndex boolean conflict boolean merged boolean chooseOnlyConflicts java.io.OutputStream realResult de.regnis.q.sequence.line.QSequenceLineRAData baseData de.regnis.q.sequence.line.QSequenceLineRAData localData de.regnis.q.sequence.line.QSequenceLineRAData latestData org.tmatesoft.svn.core.wc.SVNDiffOptions options java.io.OutputStream result org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle style de.regnis.q.sequence.line.QSequenceLineResult localResult de.regnis.q.sequence.line.QSequenceLineResult latestResult de.regnis.q.sequence.line.simplifier.QSequenceLineTeeSimplifier mySimplifer private java.util.List transformLocalLines (java.util.List, de.regnis.q.sequence.line.QSequenceLineCache) throws java.io.IOException de.regnis.q.sequence.QSequenceDifferenceBlock block int baseTo int index int baseTo java.util.List blocks de.regnis.q.sequence.line.QSequenceLineCache localLines java.util.List transformedLocalLines org.tmatesoft.svn.core.internal.wc.FSMergerBySequenceList blockList int localIndex int baseIndex private boolean isBefore (de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.QSequenceDifferenceBlock) de.regnis.q.sequence.QSequenceDifferenceBlock block1 de.regnis.q.sequence.QSequenceDifferenceBlock block2 private boolean intersect (de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.QSequenceDifferenceBlock, int) de.regnis.q.sequence.QSequenceDifferenceBlock block1 de.regnis.q.sequence.QSequenceDifferenceBlock block2 int baseLineCount int from1 int from2 int to1 int to2 private int appendLines (java.io.OutputStream, de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.line.QSequenceLineCache, int, java.util.List) throws java.io.IOException int changedLineIndex java.io.OutputStream result de.regnis.q.sequence.QSequenceDifferenceBlock block de.regnis.q.sequence.line.QSequenceLineCache changedLines int baseLineIndex java.util.List transformedLocalLines private boolean isEqualChange (de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.line.QSequenceLineCache, de.regnis.q.sequence.line.QSequenceLineCache) throws java.io.IOException de.regnis.q.sequence.line.QSequenceLine localLine de.regnis.q.sequence.line.QSequenceLine latestLine int index de.regnis.q.sequence.QSequenceDifferenceBlock localBlock de.regnis.q.sequence.QSequenceDifferenceBlock latestBlock de.regnis.q.sequence.line.QSequenceLineCache localLines de.regnis.q.sequence.line.QSequenceLineCache latestLines private boolean checkConflict (org.tmatesoft.svn.core.internal.wc.FSMergerBySequenceList, org.tmatesoft.svn.core.internal.wc.FSMergerBySequenceList, de.regnis.q.sequence.line.QSequenceLineCache, de.regnis.q.sequence.line.QSequenceLineCache, int) throws java.io.IOException org.tmatesoft.svn.core.internal.wc.FSMergerBySequenceList localChanges org.tmatesoft.svn.core.internal.wc.FSMergerBySequenceList latestChanges de.regnis.q.sequence.line.QSequenceLineCache localLines de.regnis.q.sequence.line.QSequenceLineCache latestLines int baseLineCount boolean conflict private int createConflict (java.io.OutputStream, de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.line.QSequenceLineCache, de.regnis.q.sequence.line.QSequenceLineCache, int, java.util.List, org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle) throws java.io.IOException int index int index java.io.OutputStream result de.regnis.q.sequence.QSequenceDifferenceBlock localStart de.regnis.q.sequence.QSequenceDifferenceBlock localEnd de.regnis.q.sequence.QSequenceDifferenceBlock latestStart de.regnis.q.sequence.QSequenceDifferenceBlock latestEnd de.regnis.q.sequence.line.QSequenceLineCache localLines de.regnis.q.sequence.line.QSequenceLineCache latestLines int baseLineIndex java.util.List transformedLocalLines org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle style int minBaseFrom int maxBaseTo int localFrom int localTo int latestFrom int latestTo private int createOnlyConflictWithContext (java.io.OutputStream, de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.QSequenceDifferenceBlock, de.regnis.q.sequence.line.QSequenceLineCache, de.regnis.q.sequence.line.QSequenceLineCache, de.regnis.q.sequence.line.QSequenceLineCache) throws java.io.IOException int index int index int index java.io.OutputStream result de.regnis.q.sequence.QSequenceDifferenceBlock localStart de.regnis.q.sequence.QSequenceDifferenceBlock localEnd de.regnis.q.sequence.QSequenceDifferenceBlock latestStart de.regnis.q.sequence.QSequenceDifferenceBlock latestEnd de.regnis.q.sequence.line.QSequenceLineCache localLines de.regnis.q.sequence.line.QSequenceLineCache latestLines de.regnis.q.sequence.line.QSequenceLineCache baseLines int minBaseFrom int maxBaseTo int localFrom int localTo int latestFrom int latestTo int localLinesNum String localContext int localStartFrom int originalLinesNum String originalContext int originalStartFrom int latestLinesNum String latestContext int latestStartFrom private void appendTransformedLocalLines (int, int, java.util.List, java.io.OutputStream) throws java.io.IOException de.regnis.q.sequence.line.QSequenceLine sequenceLine int baseLineIndex int to java.util.List transformedLocalLines java.io.OutputStream result private void writeLine (java.io.OutputStream, de.regnis.q.sequence.line.QSequenceLine) throws java.io.IOException java.io.OutputStream os de.regnis.q.sequence.line.QSequenceLine line byte[] bytes private void writeBytesAndEol (java.io.OutputStream, byte[]) throws java.io.IOException java.io.OutputStream os byte[] bytes private void writeBytes (java.io.OutputStream, byte[]) throws java.io.IOException java.io.OutputStream os byte[] bytes private de.regnis.q.sequence.line.simplifier.QSequenceLineTeeSimplifier createSimplifier (org.tmatesoft.svn.core.wc.SVNDiffOptions) org.tmatesoft.svn.core.wc.SVNDiffOptions options de.regnis.q.sequence.line.simplifier.QSequenceLineSimplifier eolSimplifier de.regnis.q.sequence.line.simplifier.QSequenceLineSimplifier spaceSimplifier static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/SVNUpdateEditor.class
SVNUpdateEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor org.tmatesoft.svn.core.internal.wc.admin.ISVNCleanupHandler { private String mySwitchURL private String myTarget private String myTargetURL private String myRootURL private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo myAdminInfo private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo myCurrentDirectory private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo myCurrentFile private long myTargetRevision private boolean myIsRootOpen private boolean myIsTargetDeleted private boolean myIsUnversionedObstructionsAllowed private boolean myIsDepthSticky private java.util.Collection mySkippedTrees private java.util.Collection myDeletedTrees private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess myWCAccess private org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor myDeltaProcessor private org.tmatesoft.svn.core.SVNDepth myRequestedDepth private String[] myExtensionPatterns private org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher myFileFetcher private boolean myIsLockOnDemand private void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, java.lang.String[], java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher, boolean) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info String switchURL boolean allowUnversionedObstructions boolean depthIsSticky org.tmatesoft.svn.core.SVNDepth depth String[] preservedExtensions String targetURL String rootURL org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher fileFetcher boolean lockOnDemand private java.util.Collection getSkippedTrees () private java.util.Collection getDeletedTrees () private void addSkippedTree (java.io.File) java.io.File path private void addDeletedTree (java.io.File) java.io.File path private boolean inSkippedTree (java.io.File) java.io.File path private boolean inDeletedTree (java.io.File, boolean) java.io.File path boolean includeRoot public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public long getTargetRevision () public void openRoot (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map attributes long revision private void doDeleteEntry (java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.wc.SVNEvent event String path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo parent org.tmatesoft.svn.core.SVNURL theirURL java.io.File fullPath String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNNodeKind kind long previousRevision org.tmatesoft.svn.core.SVNURL url java.io.File victim org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.SVNProperties attributes private java.io.File alreadyInTreeConflict (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea boolean isWCRoot org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict int i java.io.File path java.io.File ancestor java.util.List ancestors org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access private org.tmatesoft.svn.core.wc.SVNTreeConflictDescription checkTreeConflict (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException boolean[] allEditsAreDeletes org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea boolean modified org.tmatesoft.svn.core.SVNURL switchURL org.tmatesoft.svn.core.SVNNodeKind leftKind org.tmatesoft.svn.core.SVNURL repoRoot String repoPath org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcLeftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion srcRightVersion org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.SVNProperties command java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.wc.SVNConflictAction action org.tmatesoft.svn.core.SVNNodeKind theirKind org.tmatesoft.svn.core.SVNURL theirURL boolean allModsAreDeletes boolean isSubtreeOfLocallyDeleted org.tmatesoft.svn.core.wc.SVNConflictReason reason public boolean treeHasLocalModifications (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, boolean[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea boolean[] allModsAreDeletes boolean[] modified org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler entryHandler private boolean entryHasLocalModifications (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String) throws org.tmatesoft.svn.core.SVNException boolean modified boolean propsModified boolean propsModified boolean propsModified org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea tmpArea boolean textModified boolean propsModified org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea java.io.File path org.tmatesoft.svn.core.SVNNodeKind kind String schedule boolean modified private void scheduleExistingEntryForReAdd (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.io.File, org.tmatesoft.svn.core.SVNURL, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler entryHandler org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File path org.tmatesoft.svn.core.SVNURL theirURL boolean modifyCopyFrom java.io.File parentPath String entryName java.util.Map attributes org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision String name org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL theirURL private void handleLeftLocalModificationsError (org.tmatesoft.svn.core.SVNException) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException originalError org.tmatesoft.svn.core.SVNException error public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryInParent org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNURL theirURL org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryInParent org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.SVNEvent event String path String copyFromPath long copyFromRevision java.io.File fullPath String name boolean isLocallyDeleted org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo parentDirectory java.io.File victim org.tmatesoft.svn.core.internal.wc.SVNFileType kind org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map attributes boolean force String rootURL org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.SVNURL theirURL org.tmatesoft.svn.core.wc.SVNEventAction eventAction org.tmatesoft.svn.core.wc.SVNStatusType propStatus org.tmatesoft.svn.core.wc.SVNEvent event String path long revision org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo parentInfo org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File fullPath org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict java.io.File victim boolean hasPropConflicts java.util.Map attributes public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path private void absentEntry (java.lang.String, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path org.tmatesoft.svn.core.SVNNodeKind kind String name org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map attributes public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value private void clearWCProperty (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator ents org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String target public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo parentDirectoryInfo org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo parentDirectoryInfo String name java.util.Iterator names org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties oldBaseProps org.tmatesoft.svn.core.SVNProperties baseMap String oldExternal String newExternal String path org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties oldBaseProps org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEvent event java.io.File fullPath org.tmatesoft.svn.core.SVNProperties modifiedWCProps org.tmatesoft.svn.core.SVNProperties modifiedEntryProps org.tmatesoft.svn.core.SVNProperties modifiedProps org.tmatesoft.svn.core.wc.SVNStatusType propStatus org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea private void handleDuplicateEntries () throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator names org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.wc.SVNEvent event String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator names org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area java.util.Map entries java.util.Set duplicates java.util.Set entryNames org.tmatesoft.svn.core.internal.wc.admin.SVNLog log public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException java.io.File targetFile public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String commitPath String name org.tmatesoft.svn.core.SVNPropertyValue value public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.InputStream baseIS String commitPath String baseChecksum org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean replaced boolean useRevertBase String checksum java.io.File baseSrcFile java.io.File baseTmpFile public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String commitPath org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String actualSourceChecksum String commitPath public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String commitPath String textChecksum public void abortEdit () throws org.tmatesoft.svn.core.SVNException private void checkIfPathIsUnderRoot (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err int i String testPath int ind String path private void maybeBumpDirInfo (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo dirInfo private void completeDirectory (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo) throws org.tmatesoft.svn.core.SVNException java.io.File target org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea targetArea org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNDepth ambientDepth int directoryDepth java.util.Map attributes org.tmatesoft.svn.core.internal.wc.admin.SVNEntry currentEntry java.util.Iterator ents org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo dirInfo java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File target private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo addFile (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo, java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNErrorMessage error boolean equals org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.SVNURL theirURL org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo parent String path String copyFromPath long copyFromRevision java.io.File fullPath boolean isLocallyDeleted org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File victim private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo addFileWithHistory (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo, org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumOutputStream checksumOS org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea srcArea String srcTextBasePath java.io.InputStream srcIS java.io.OutputStream copiedBaseOS org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumOutputStream checksumBaseTextOS java.io.OutputStream baseTextOS org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo parent org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo info String copyFromPath long copyFromRevision org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry pathEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry srcEntry org.tmatesoft.svn.core.SVNProperties baseProperties org.tmatesoft.svn.core.SVNProperties workingProperties private org.tmatesoft.svn.core.internal.wc.admin.SVNEntry locateCopyFrom (java.lang.String, long, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err int i org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne String copyFromPath long copyFromRevision java.io.File dstDir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dstEntry String dstReposPath String copyFromParent String ancestorPath int levelsUP java.io.File currentWD org.tmatesoft.svn.core.internal.wc.SVNFileType kind org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess ancestorAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea ancestorArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry ancestorEntry org.tmatesoft.svn.core.SVNURL ancestorURL String extraComponents java.io.File currentWDParent org.tmatesoft.svn.core.internal.wc.admin.SVNEntry fileEntry org.tmatesoft.svn.core.SVNURL fileURL private void changeFileProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo) String name org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo fileInfo public org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo openFile (java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.SVNURL theirURL org.tmatesoft.svn.core.wc.SVNEventAction eventAction org.tmatesoft.svn.core.wc.SVNEvent event String path org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo parent java.io.File fullPath org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean isLocallyDeleted java.io.File victim org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict String name boolean hasTextConflicts boolean hasPropConflicts private org.tmatesoft.svn.core.SVNProperties getTreeConflictCreationAttributes (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict java.util.Map conflicts String conflictData org.tmatesoft.svn.core.SVNProperties command private void closeFile (java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo, org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean replaced boolean useRevertBase org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String propName java.util.Iterator names org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties oldBaseProps org.tmatesoft.svn.core.SVNProperties baseMap String absBasePath String absTmpBasePath String extPattern int i boolean matches int dotInd String absCopiedWorkingTextPath String copiedWorkingTextPath String pathExt boolean deleteLeftMergeFile boolean deleteCopiedBaseText java.io.File mergeLeftFile String absMergeLeftFilePath String mergeLeftFilePath String leftLabel String rightLabel String mineLabel org.tmatesoft.svn.core.internal.wc.SVNFileType kind String tmpPath String absCopiedBaseTextPath String copiedBaseTextPath org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction expectedAction org.tmatesoft.svn.core.wc.SVNEvent event String textChecksum org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo fileInfo org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo dirInfo java.io.File fullPath String checksum boolean isTextUpdated org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry fileEntry long previousRevision org.tmatesoft.svn.core.SVNURL previousURL org.tmatesoft.svn.core.SVNProperties modifiedWCProps org.tmatesoft.svn.core.SVNProperties modifiedEntryProps org.tmatesoft.svn.core.SVNProperties modifiedProps String commitTime org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.wc.SVNStatusType textStatus org.tmatesoft.svn.core.wc.SVNStatusType lockStatus boolean magicPropsChanged org.tmatesoft.svn.core.wc.SVNStatusType propStatus boolean isLocallyModified boolean isReplaced org.tmatesoft.svn.core.SVNProperties logAttributes String absDirPath String basePath String tmpBasePath org.tmatesoft.svn.core.wc.SVNStatusType mergeOutcome java.io.File workingFile boolean deletedCopiedBaseText private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo createFileInfo (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo parent String path boolean added org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNFileInfo info org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry private org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo createDirectoryInfo (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo, java.lang.String, boolean) org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dirEntry java.io.File areaPath org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo parent String path boolean added org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor$SVNDirectoryInfo info String name public static org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor createUpdateEditor (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, java.lang.String[], org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info String switchURL boolean allowUnversionedObstructions boolean depthIsSticky org.tmatesoft.svn.core.SVNDepth depth String[] preservedExtensions org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher fileFetcher boolean lockOnDemand org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor editor public void cleanup (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area static synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access$000 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor x0 static synthetic boolean access$100 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor x0 org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea x1 java.io.File x2 org.tmatesoft.svn.core.SVNNodeKind x3 String x4 static synthetic boolean access$200 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor x0 static synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo access$1100 (org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor) org.tmatesoft.svn.core.internal.wc.SVNUpdateEditor x0 }
org/tmatesoft/svn/core/internal/wc/SVNFileType.class
SVNFileType.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNFileType extends java.lang.Object { public static final org.tmatesoft.svn.core.internal.wc.SVNFileType UNKNOWN public static final org.tmatesoft.svn.core.internal.wc.SVNFileType NONE public static final org.tmatesoft.svn.core.internal.wc.SVNFileType FILE public static final org.tmatesoft.svn.core.internal.wc.SVNFileType SYMLINK public static final org.tmatesoft.svn.core.internal.wc.SVNFileType DIRECTORY private static final boolean ourFastSymlinkResoution private static final boolean ourCanonPathCacheUsed private static boolean ourDetectSymlinks private static final java.util.Set ADMIN_FILE_PARENTS private int myType private void <init> (int) int type public java.lang.String toString () public static synchronized void setSymlinkSupportEnabled (boolean) boolean enabled public static synchronized boolean isSymlinkSupportEnabled () public static org.tmatesoft.svn.core.internal.wc.SVNFileType getType (java.io.File) org.tmatesoft.svn.core.internal.wc.SVNFileType ft java.io.File child int i java.io.File[] children java.io.IOException e String absolutePath String canonicalPath java.io.File file boolean detectSymlinks public static boolean equals (org.tmatesoft.svn.core.internal.wc.SVNFileType, org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.internal.wc.SVNFileType type org.tmatesoft.svn.core.SVNNodeKind nodeKind private static boolean isAdminFile (java.io.File) java.io.File file String path String adminDir private static boolean isSymlink (java.io.File) Throwable th java.io.File file String line public int getID () public boolean isFile () public static org.tmatesoft.svn.core.SVNNodeKind getNodeKind (org.tmatesoft.svn.core.internal.wc.SVNFileType) org.tmatesoft.svn.core.internal.wc.SVNFileType type static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/DefaultSVNPersistentAuthenticationProvider$WinCryptPasswordStorage.class
DefaultSVNPersistentAuthenticationProvider.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$WinCryptPasswordStorage extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider$IPasswordStorage { final synthetic org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider this$0 protected void <init> (org.tmatesoft.svn.core.internal.wc.DefaultSVNPersistentAuthenticationProvider) public java.lang.String getPassType () public boolean savePassword (java.lang.String, java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication, org.tmatesoft.svn.core.SVNProperties) String realm String password org.tmatesoft.svn.core.auth.SVNAuthentication auth org.tmatesoft.svn.core.SVNProperties authParameters String encrypted public java.lang.String readPassword (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties) String realm String userName org.tmatesoft.svn.core.SVNProperties authParameters String encrypted public boolean savePassphrase (java.lang.String, java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication, org.tmatesoft.svn.core.SVNProperties, boolean) String realm String passphrase org.tmatesoft.svn.core.auth.SVNAuthentication auth org.tmatesoft.svn.core.SVNProperties authParameters boolean force String encrypted public java.lang.String readPassphrase (java.lang.String, org.tmatesoft.svn.core.SVNProperties) String realm org.tmatesoft.svn.core.SVNProperties authParameters String encrypted }
org/tmatesoft/svn/core/internal/wc/SVNCompositeConfigFile.class
SVNCompositeConfigFile.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile extends java.lang.Object { private org.tmatesoft.svn.core.internal.wc.SVNConfigFile myUserFile private org.tmatesoft.svn.core.internal.wc.SVNConfigFile mySystemFile private java.util.Map myGroupsToOptions public void <init> (org.tmatesoft.svn.core.internal.wc.SVNConfigFile, org.tmatesoft.svn.core.internal.wc.SVNConfigFile) org.tmatesoft.svn.core.internal.wc.SVNConfigFile systemFile org.tmatesoft.svn.core.internal.wc.SVNConfigFile userFile public java.util.Map getProperties (java.lang.String) java.util.Map groupOptions String groupName java.util.Map system java.util.Map user public void setGroupsToOptions (java.util.Map) java.util.Map groupToOptions public java.lang.String getPropertyValue (java.lang.String, java.lang.String) java.util.Map groupOptions String groupName String propertyName String value public void setPropertyValue (java.lang.String, java.lang.String, java.lang.String, boolean) String groupName String propertyName String propertyValue boolean save public boolean isModfied () public void save () }
org/tmatesoft/svn/core/internal/wc/ISVNHostOptions.class
ISVNHostOptions.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNHostOptions extends java.lang.Object { public abstract java.util.Collection getAuthTypes () public abstract boolean isAuthStorageEnabled () public abstract boolean isStorePasswords () public abstract boolean isStoreSSLClientCertificatePassphrases () public abstract boolean isStorePlainTextPasswords (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException public abstract boolean isStorePlainTextPassphrases (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException public abstract java.lang.String getUserName () public abstract java.lang.String getSSLClientCertFile () public abstract java.lang.String getSSLClientCertPassword () public abstract boolean trustDefaultSSLCertificateAuthority () public abstract java.io.File[] getSSLAuthorityFiles () public abstract java.lang.String getProxyHost () public abstract java.lang.String getProxyPort () public abstract java.lang.String getProxyUserName () public abstract java.lang.String getProxyPassword () public abstract int getReadTimeout () public abstract int getConnectTimeout () }
org/tmatesoft/svn/core/internal/wc/DefaultSVNAuthenticationManager$ExtendedHostOptions.class
DefaultSVNAuthenticationManager.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$ExtendedHostOptions extends org.tmatesoft.svn.core.internal.wc.DefaultSVNHostOptions { final synthetic org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager, org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile serversFile org.tmatesoft.svn.core.SVNURL url public boolean isAuthStorageEnabled () public boolean isStorePlainTextPasswords (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.ISVNAuthStoreHandler handler String realm org.tmatesoft.svn.core.auth.SVNAuthentication auth public boolean isStorePlainTextPassphrases (java.lang.String, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.ISVNAuthStoreHandler handler String realm org.tmatesoft.svn.core.auth.SVNAuthentication auth }
org/tmatesoft/svn/core/internal/wc/DefaultLoadHandler$NodeBaton.class
DefaultLoadHandler.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$NodeBaton extends java.lang.Object { String myPath org.tmatesoft.svn.core.SVNNodeKind myKind int myAction String myBaseChecksum String myResultChecksum String myCopySourceChecksum long myCopyFromRevision String myCopyFromPath final synthetic org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler this$0 private void <init> (org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler) synthetic void <init> (org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler, org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$1) org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler x0 org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler$1 x1 }
org/tmatesoft/svn/core/internal/wc/ISVNReturnValueCallback.class
ISVNReturnValueCallback.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNReturnValueCallback extends java.lang.Object { public abstract void handleReturnValue (int) throws org.tmatesoft.svn.core.SVNException public abstract void handleChar (char) throws org.tmatesoft.svn.core.SVNException public abstract boolean isHandleProgramOutput () }
org/tmatesoft/svn/core/internal/wc/ISVNGnomeKeyringPasswordProvider.class
ISVNGnomeKeyringPasswordProvider.java package org.tmatesoft.svn.core.internal.wc public abstract org.tmatesoft.svn.core.internal.wc.ISVNGnomeKeyringPasswordProvider extends java.lang.Object { public abstract java.lang.String getKeyringPassword (java.lang.String) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/SVNMergeDriver$3.class
SVNMergeDriver.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$3 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { final synthetic long val$reportStart final synthetic org.tmatesoft.svn.core.SVNDepth val$reportDepth final synthetic boolean val$honorMergeInfo final synthetic java.util.List val$childrenWithMergeInfo final synthetic boolean val$isRollBack final synthetic long val$revision2 final synthetic String val$targetPath final synthetic org.tmatesoft.svn.core.internal.wc.SVNMergeDriver this$0 void <init> (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver, long, org.tmatesoft.svn.core.SVNDepth, boolean, java.util.List, boolean, long, java.lang.String) public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNMergeRange parentRange org.tmatesoft.svn.core.SVNMergeRange childRange org.tmatesoft.svn.core.SVNMergeRangeList remainingRangesList org.tmatesoft.svn.core.SVNMergeRange[] remainingRanges org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath childMergePath org.tmatesoft.svn.core.internal.wc.SVNMergeDriver$MergePath parent Object[] childrenWithMergeInfoArray int parentIndex org.tmatesoft.svn.core.SVNMergeRange range String childPath String relChildPath int i org.tmatesoft.svn.core.io.ISVNReporter reporter }
org/tmatesoft/svn/core/internal/wc/SVNRemoteDiffEditor$SVNDirectoryInfo.class
SVNRemoteDiffEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$SVNDirectoryInfo extends java.lang.Object { protected boolean myIsAdded protected boolean myIsSkip protected boolean myIsTreeConflicted protected String myRepositoryPath protected java.io.File myWCFile protected org.tmatesoft.svn.core.SVNProperties myBaseProperties protected org.tmatesoft.svn.core.SVNProperties myPropertyDiff protected org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$SVNDirectoryInfo myParent final synthetic org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor, org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$SVNDirectoryInfo, java.lang.String, boolean) org.tmatesoft.svn.core.internal.wc.SVNRemoteDiffEditor$SVNDirectoryInfo parent String path boolean added public void loadFromRepository (long) throws org.tmatesoft.svn.core.SVNException long baseRevision }
org/tmatesoft/svn/core/internal/wc/DefaultSVNAuthenticationManager.class
DefaultSVNAuthenticationManager.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager extends java.lang.Object implements org.tmatesoft.svn.core.auth.ISVNAuthenticationManager org.tmatesoft.svn.core.internal.wc.ISVNSSLPasspharsePromptSupport org.tmatesoft.svn.core.auth.ISVNSSHHostVerifier { private boolean myIsStoreAuth private java.io.File myConfigDirectory private org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions myAuthOptions private org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions myDefaultOptions private org.tmatesoft.svn.core.internal.wc.ISVNHostOptionsProvider myHostOptionsProvider private org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorage myRuntimeAuthStorage private org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider[] myProviders private org.tmatesoft.svn.core.auth.SVNAuthentication myPreviousAuthentication private org.tmatesoft.svn.core.SVNErrorMessage myPreviousErrorMessage private int myLastProviderIndex private org.tmatesoft.svn.core.auth.SVNAuthentication myLastLoadedAuth private boolean myIsAuthenticationForced public void <init> (java.io.File, boolean, java.lang.String, java.lang.String) java.io.File configDirectory boolean storeAuth String userName String password public void <init> (java.io.File, boolean, java.lang.String, java.lang.String, java.io.File, java.lang.String) java.io.File configDirectory boolean storeAuth String userName String password java.io.File privateKey String passphrase public void setInMemoryServersOptions (java.util.Map) org.tmatesoft.svn.core.internal.wc.DefaultSVNHostOptionsProvider defaultHostOptionsProvider java.util.Map serversOptions public void setInMemoryConfigOptions (java.util.Map) java.util.Map configOptions public org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions getAuthenticationStorageOptions () public void setAuthenticationStorageOptions (org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions) org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions authOptions public void setAuthenticationProvider (org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider) org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider provider protected java.io.File getConfigDirectory () public org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions getDefaultOptions () public org.tmatesoft.svn.core.internal.wc.ISVNHostOptionsProvider getHostOptionsProvider () protected void setHostOptionsProvider (org.tmatesoft.svn.core.internal.wc.ISVNHostOptionsProvider) org.tmatesoft.svn.core.internal.wc.ISVNHostOptionsProvider hostOptionsProvider public java.util.Collection getAuthTypes (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public org.tmatesoft.svn.core.auth.ISVNProxyManager getProxyManager (org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.internal.wc.ISVNHostOptions hostOptions String proxyHost String proxyPort String proxyUser String proxyPassword public javax.net.ssl.TrustManager getTrustManager (org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.internal.wc.ISVNHostOptions hostOptions boolean trustAll java.io.File[] serverCertFiles java.io.File authDir public org.tmatesoft.svn.core.auth.SVNAuthentication getFirstAuthentication (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.auth.SVNAuthentication auth int i String kind String realm org.tmatesoft.svn.core.SVNURL url public org.tmatesoft.svn.core.auth.SVNAuthentication getNextAuthentication (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.auth.SVNAuthentication auth int i String kind String realm org.tmatesoft.svn.core.SVNURL url int index public void acknowledgeAuthentication (boolean, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.auth.SVNAuthentication) throws org.tmatesoft.svn.core.SVNException boolean accepted String kind String realm org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.auth.SVNAuthentication authentication public void acknowledgeTrustManager (javax.net.ssl.TrustManager) javax.net.ssl.TrustManager manager private boolean hasExplicitCredentials (java.lang.String) org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager$DumbAuthenticationProvider authProvider String userName String password String kind public void setRuntimeStorage (org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorage) org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorage storage protected org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorage getRuntimeAuthStorage () protected org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider getAuthenticationProvider () protected org.tmatesoft.svn.core.auth.SVNSSHAuthentication getDefaultSSHAuthentication (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url String userName String password String keyFile int port String passphrase protected org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider createDefaultAuthenticationProvider (java.lang.String, java.lang.String, java.io.File, java.lang.String, boolean) String userName String password java.io.File privateKey String passphrase boolean allowSave protected org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider createRuntimeAuthenticationProvider () protected org.tmatesoft.svn.core.auth.ISVNAuthenticationProvider createCacheAuthenticationProvider (java.io.File, java.lang.String) java.io.File authDir String userName org.tmatesoft.svn.core.internal.wc.ISVNAuthenticationStorageOptions delegatingOptions public boolean isAuthenticationForced () public void setAuthenticationForced (boolean) boolean forced public int getReadTimeout (org.tmatesoft.svn.core.io.SVNRepository) org.tmatesoft.svn.core.io.SVNRepository repository public int getConnectTimeout (org.tmatesoft.svn.core.io.SVNRepository) org.tmatesoft.svn.core.io.SVNRepository repository public void verifyHostKey (java.lang.String, int, java.lang.String, byte[]) throws org.tmatesoft.svn.core.SVNException int accepted org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.internal.wc.ISVNHostOptions hostOptions boolean storageEnabled String hostName int port String keyAlgorithm byte[] hostKey String realm byte[] existingFingerprints private static boolean equals (byte[], byte[]) int i byte[] b1 byte[] b2 public boolean isSSLPassphrasePromtSupported () static synthetic java.io.File access$300 (org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager) org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager x0 static synthetic boolean access$400 (org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager) org.tmatesoft.svn.core.internal.wc.DefaultSVNAuthenticationManager x0 }
org/tmatesoft/svn/core/internal/wc/SVNRemoteStatusEditor.class
SVNRemoteStatusEditor.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor extends org.tmatesoft.svn.core.internal.wc.SVNStatusEditor implements org.tmatesoft.svn.core.io.ISVNEditor org.tmatesoft.svn.core.wc.ISVNStatusHandler { private boolean myIsRootOpen private org.tmatesoft.svn.core.wc.SVNStatus myAnchorStatus private org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo myDirectoryInfo private org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$FileInfo myFileInfo public void <init> (org.tmatesoft.svn.core.wc.ISVNOptions, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.ISVNOptions options org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info boolean noIgnore boolean reportAll org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNStatusHandler handler public void setRepositoryInfo (org.tmatesoft.svn.core.SVNURL, java.util.Map) org.tmatesoft.svn.core.SVNURL root java.util.Map repositoryLocks public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException java.io.File dirPath String name org.tmatesoft.svn.core.internal.wc.SVNFileType type org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.SVNStatus status String path long revision java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File dirPath String name org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException long number NumberFormatException nfe String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatusType contentsStatus org.tmatesoft.svn.core.wc.SVNStatusType propertiesStatus org.tmatesoft.svn.core.wc.SVNStatusType contentsStatus org.tmatesoft.svn.core.wc.SVNStatusType propertiesStatus boolean wasDeleted org.tmatesoft.svn.core.wc.SVNStatus dirStatus org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir java.io.File targetPath org.tmatesoft.svn.core.wc.SVNStatus tgtStatus org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo parent public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException long number NumberFormatException nfe String path String name org.tmatesoft.svn.core.SVNPropertyValue value public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatusType contentsStatus org.tmatesoft.svn.core.wc.SVNStatusType propertiesStatus String path String textChecksum org.tmatesoft.svn.core.wc.SVNStatusType contentsStatus org.tmatesoft.svn.core.wc.SVNStatusType propertiesStatus org.tmatesoft.svn.core.SVNLock remoteLock public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path private void handleStatusHash (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, java.util.Map, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.SVNDepth depthMinusOne java.io.File path org.tmatesoft.svn.core.wc.SVNStatus status java.util.Iterator paths org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dirEntry java.util.Map hash boolean deleted org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNStatusHandler handler private void tweakStatusHash (org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$FileInfo, java.io.File, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.SVNLock) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$FileInfo fileInfo java.io.File path org.tmatesoft.svn.core.wc.SVNStatusType text org.tmatesoft.svn.core.wc.SVNStatusType props org.tmatesoft.svn.core.SVNLock lock java.util.Map hash org.tmatesoft.svn.core.wc.SVNStatus status private void tweakStatusHash (org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo, org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo, java.io.File, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL remoteURL org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo dirInfo org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo childDir java.io.File path org.tmatesoft.svn.core.wc.SVNStatusType text org.tmatesoft.svn.core.wc.SVNStatusType props org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.wc.SVNRevision revision java.util.Map hash org.tmatesoft.svn.core.wc.SVNStatus status private void tweakAnchorStatus (org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo) org.tmatesoft.svn.core.wc.SVNStatusType text org.tmatesoft.svn.core.wc.SVNStatusType props org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo anchorInfo private boolean isSendableStatus (org.tmatesoft.svn.core.wc.SVNStatus) org.tmatesoft.svn.core.wc.SVNStatus status private org.tmatesoft.svn.core.wc.SVNStatus createStatus (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentDir java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry public void handleStatus (org.tmatesoft.svn.core.wc.SVNStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatus status static synthetic org.tmatesoft.svn.core.wc.SVNStatus access$000 (org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor) org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor x0 }
org/tmatesoft/svn/core/internal/wc/ISVNInputFile$1.class
ISVNInputFile.java package org.tmatesoft.svn.core.internal.wc final org.tmatesoft.svn.core.internal.wc.ISVNInputFile$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNInputFile { void <init> () public void seek (long) throws java.io.IOException long pos public long getFilePointer () throws java.io.IOException public int read () throws java.io.IOException public int read (byte[]) throws java.io.IOException byte[] b public int read (byte[], int, int) throws java.io.IOException byte[] b int off int len public void close () throws java.io.IOException public long length () throws java.io.IOException }
org/tmatesoft/svn/core/internal/wc/SVNNodeEditor$Node.class
SVNNodeEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node extends java.lang.Object { org.tmatesoft.svn.core.SVNNodeKind myKind char myAction boolean myHasTextModifications boolean myHasPropModifications String myName long myCopyFromRevision String myCopyFromPath org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$Node myParent java.util.LinkedList myChildren final synthetic org.tmatesoft.svn.core.internal.wc.SVNNodeEditor this$0 private void <init> (org.tmatesoft.svn.core.internal.wc.SVNNodeEditor) synthetic void <init> (org.tmatesoft.svn.core.internal.wc.SVNNodeEditor, org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$1) org.tmatesoft.svn.core.internal.wc.SVNNodeEditor x0 org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$1 x1 }
org/tmatesoft/svn/core/internal/wc/SVNRemoteStatusEditor$DirectoryInfo.class
SVNRemoteStatusEditor.java package org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNStatusHandler { public java.io.File myPath public String myName public org.tmatesoft.svn.core.SVNURL myURL public org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo myParent public org.tmatesoft.svn.core.SVNDepth myDepth public org.tmatesoft.svn.core.wc.SVNRevision myRemoteRevision public java.util.Date myRemoteDate public String myRemoteAuthor public org.tmatesoft.svn.core.SVNNodeKind myRemoteKind public boolean myIsAdded public boolean myIsPropertiesChanged public boolean myIsContentsChanged public java.util.Map myChildrenStatuses final synthetic org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor this$0 public void <init> (org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor, java.lang.String, org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatus thisDirStatus org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.wc.SVNStatusType textStatus String path org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo parent org.tmatesoft.svn.core.wc.SVNStatus parentStatus private org.tmatesoft.svn.core.SVNURL computeURL () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatus status org.tmatesoft.svn.core.SVNURL url public void handleStatus (org.tmatesoft.svn.core.wc.SVNStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNStatus status static synthetic org.tmatesoft.svn.core.SVNURL access$100 (org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNRemoteStatusEditor$DirectoryInfo x0 }
org/tmatesoft/svn/core/internal/wc/DefaultSVNOptions.class
DefaultSVNOptions.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNOptions org.tmatesoft.svn.core.wc.ISVNMergerFactory { private static final String MISCELLANY_GROUP private static final String AUTH_GROUP private static final String AUTOPROPS_GROUP private static final String SVNKIT_GROUP private static final String OLD_SVNKIT_GROUP private static final String HELPERS_GROUP private static final String USE_COMMIT_TIMES private static final String GLOBAL_IGNORES private static final String ENABLE_AUTO_PROPS private static final String STORE_AUTH_CREDS private static final String KEYWORD_TIMEZONE private static final String KEYWORD_LOCALE private static final String EDITOR_CMD private static final String DIFF_CMD private static final String MERGE_TOOL_CMD private static final String NO_UNLOCK private static final String LOG_ENCODING private static final String PRESERVED_CONFLICT_FILE_EXTENSIONS private static final String INTERACTIVE_COFLICTS private static final String MIME_TYPES_FILE private static final String GLOBAL_CHARSET private static final String PASSWORD_STORES private static final String DEFAULT_IGNORES private static final String YES private static final String NO private static final String DEFAULT_LOCALE private static final String DEFAULT_TIMEZONE private static final String[] DEFAULT_PASSWORD_STORE_TYPES private boolean myIsReadonly private java.io.File myConfigDirectory private org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile myConfigFile private org.tmatesoft.svn.core.wc.ISVNMergerFactory myMergerFactory private org.tmatesoft.svn.core.wc.ISVNConflictHandler myConflictResolver private String myKeywordLocale private String myKeywordTimezone private java.text.SimpleDateFormat myKeywordDateFormat private java.util.Map myConfigOptions public void <init> () public void <init> (java.io.File, boolean) java.io.File directory boolean readOnly public boolean isUseCommitTimes () String value public void setInMemoryConfigOptions (java.util.Map) java.util.Map configOptions public void setUseCommitTimes (boolean) boolean useCommitTimes private boolean isUseAutoProperties () String value public void setUseAutoProperties (boolean) boolean useAutoProperties public boolean isAuthStorageEnabled () String value public boolean isKeepLocks () String value public void setAuthStorageEnabled (boolean) boolean storeAuth public void setKeepLocks (boolean) boolean keep public static boolean isIgnored (org.tmatesoft.svn.core.wc.ISVNOptions, java.lang.String) String pattern int i org.tmatesoft.svn.core.wc.ISVNOptions options String name String[] patterns public java.lang.String[] getIgnorePatterns () String token java.util.StringTokenizer tokens String value java.util.Collection tokensList public void setIgnorePatterns (java.lang.String[]) String pattern int i String[] patterns StringBuffer value String valueStr public void deleteIgnorePattern (java.lang.String) String s int i String pattern String[] patterns java.util.Collection newPatterns public void addIgnorePattern (java.lang.String) String pattern String[] patterns java.util.Collection oldPatterns public java.util.Map getAutoProperties () public void setAutoProperties (java.util.Map) String pattern String value java.util.Iterator names String pattern String value java.util.Iterator names java.util.Map autoProperties java.util.Map existingProperties public java.lang.String getEditor () public java.lang.String getMergeTool () public void deleteAutoProperty (java.lang.String) String pattern public void setAutoProperty (java.lang.String, java.lang.String) String pattern String properties public boolean isInteractiveConflictResolution () String value public void setInteractiveConflictResolution (boolean) boolean interactive public java.util.Map applyAutoProperties (java.io.File, java.util.Map) String name String pValue String t int index char ch int i StringBuffer token String pattern String value java.util.Iterator names java.io.File file java.util.Map target String fileName java.util.Map autoProperties public org.tmatesoft.svn.core.wc.ISVNMergerFactory getMergerFactory () public void setMergerFactory (org.tmatesoft.svn.core.wc.ISVNMergerFactory) org.tmatesoft.svn.core.wc.ISVNMergerFactory mergerFactory public java.lang.String getPropertyValue (java.lang.String) String propertyName String value public void setPropertyValue (java.lang.String, java.lang.String) String propertyName String propertyValue public void setConflictHandler (org.tmatesoft.svn.core.wc.ISVNConflictHandler) org.tmatesoft.svn.core.wc.ISVNConflictHandler resolver public org.tmatesoft.svn.core.wc.ISVNConflictHandler getConflictResolver () public static boolean matches (java.lang.String, java.lang.String) String pattern String fileName java.util.regex.Pattern compiled public org.tmatesoft.svn.core.wc.ISVNMerger createMerger (byte[], byte[], byte[]) byte[] conflictStart byte[] conflictSeparator byte[] conflictEnd public org.tmatesoft.svn.core.internal.io.svn.ISVNConnector createTunnelConnector (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url String subProtocolName java.util.Map tunnels String tunnel public java.text.DateFormat getKeywordDateFormat () java.util.TimeZone tz java.util.Locale newLocale String localeID String tzID public java.lang.String[] getPreservedConflictFileExtensions () String token java.util.StringTokenizer tokens String value java.util.Collection tokensList public boolean isAllowAllForwardMergesFromSelf () public java.lang.String getLogEncoding () public java.lang.String getGlobalCharset () public void setGlobalCharset (java.lang.String) String charset public java.lang.String getNativeCharset () public byte[] getNativeEOL () public java.util.Map getFileExtensionsToMimeTypes () String token java.util.StringTokenizer tokens String extension int i String mimeType java.util.LinkedList tokensList String line java.io.IOException e String mimeTypesFile java.io.BufferedReader reader java.util.Map extensionsToMimeTypes public java.lang.String getDiffCommand () public void setDiffCommand (java.lang.String) String diffCmd public java.lang.String[] getPasswordStorageTypes () String type java.util.StringTokenizer types String storeTypesOption java.util.List storeTypes private java.lang.String getDefaultSSHCommandLine () java.util.Map tunnels private java.lang.String getDefaultSSHOptionValue (java.lang.String, java.lang.String, java.lang.String) String value String sshCommandLine String optionName String systemProperty String fallbackSystemProperty public int getDefaultSSHPortNumber () NumberFormatException e String sshCommandLine String portOption String port public java.lang.String getDefaultSSHUserName () String userName public java.lang.String getDefaultSSHPassword () public java.lang.String getDefaultSSHKeyFile () public java.lang.String getDefaultSSHPassphrase () private org.tmatesoft.svn.core.internal.wc.SVNCompositeConfigFile getConfigFile () org.tmatesoft.svn.core.internal.wc.SVNConfigFile userConfig org.tmatesoft.svn.core.internal.wc.SVNConfigFile systemConfig private static java.lang.String getOptionValue (java.lang.String, java.lang.String) String option java.util.StringTokenizer options String commandLine String optionName private static java.util.regex.Pattern compileNamePatter (java.lang.String) char ch int i java.util.regex.PatternSyntaxException e String wildcard StringBuffer result private static java.util.Locale toLocale (java.lang.String) String str int len char ch0 char ch1 char ch3 char ch4 private static java.io.File getDefaultConfigDir () public static boolean getBooleanValue (java.lang.String, boolean) String value boolean defaultValue static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/DefaultSVNGNUDiffGenerator.class
DefaultSVNGNUDiffGenerator.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.DefaultSVNGNUDiffGenerator extends org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator implements org.tmatesoft.svn.core.wc.admin.ISVNGNUDiffGenerator { private String myHeader private boolean myIsHeaderWritten private org.tmatesoft.svn.core.internal.io.fs.FSRoot myOriginalRoot private String myOriginalPath private org.tmatesoft.svn.core.internal.io.fs.FSRoot myNewRoot private String myNewPath private boolean myIsDiffWritten public void <init> () public void displayHeader (int, java.lang.String, java.lang.String, long, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e int type String path String copyFromPath long copyFromRevision java.io.OutputStream result public void displayFileDiff (java.lang.String, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e String path java.io.File file1 java.io.File file2 String rev1 String rev2 String mimeType1 String mimeType2 java.io.OutputStream result org.tmatesoft.svn.core.internal.io.fs.CountingOutputStream counitngStream public void setHeaderWritten (boolean) boolean written protected boolean displayHeader (java.io.OutputStream, java.lang.String, boolean) throws java.io.IOException String header java.io.OutputStream os String path boolean deleted protected void displayBinary (java.io.OutputStream, java.lang.String, java.lang.String) throws java.io.IOException java.io.OutputStream os String mimeType1 String mimeType2 protected void displayHeaderFields (java.io.OutputStream, java.lang.String, java.lang.String) throws java.io.IOException org.tmatesoft.svn.core.SVNException svne java.io.OutputStream os String label1 String label2 String originalLabel String newLabel protected void setOriginalFile (org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String) org.tmatesoft.svn.core.internal.io.fs.FSRoot originalRoot String originalPath protected void setNewFile (org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String) org.tmatesoft.svn.core.internal.io.fs.FSRoot newRoot String newPath private java.lang.String generateLabel (org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot revisionRoot org.tmatesoft.svn.core.internal.io.fs.FSTransactionRoot txnRoot org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.SVNProperties props int tInd org.tmatesoft.svn.core.internal.io.fs.FSRoot root String path String date String txnName long rev String dateString protected boolean useLocalFileSeparatorChar () public void setDiffWritten (boolean) boolean b public boolean isDiffWritten () public void printHeader (java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.OutputStream os }
org/tmatesoft/svn/core/internal/wc/SVNNodeEditor$1.class
SVNNodeEditor.java package org.tmatesoft.svn.core.internal.wc synthetic org.tmatesoft.svn.core.internal.wc.SVNNodeEditor$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc/SVNMethodCallLogger.class
SVNMethodCallLogger.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNMethodCallLogger extends java.lang.Object implements java.lang.reflect.InvocationHandler { static java.lang.reflect.Method OBJECT_TOSTRING static java.lang.reflect.Method OBJECT_HASHCODE static java.lang.reflect.Method OBJECT_EQUALS private final Object myTarget private final Class[] myCallSites public static java.lang.Object newInstance (java.lang.Object, java.lang.Class[]) Object object Class[] callSites public void <init> (java.lang.Object, java.lang.Class[]) Object target Class[] callSites public java.lang.Object invoke (java.lang.Object, java.lang.reflect.Method, java.lang.Object[]) throws java.lang.Throwable IllegalAccessException e IllegalArgumentException e java.lang.reflect.InvocationTargetException e Throwable th Object proxy java.lang.reflect.Method method Object[] args Object result Throwable failure String message private java.lang.String createMessage (java.lang.reflect.Method, java.lang.Object[], java.lang.Object, java.lang.Throwable) Class parameterClass Object arg int i java.lang.reflect.Method method Object[] args Object result Throwable failure StringBuffer buffer Class[] parameters private java.lang.String getShortClassName (java.lang.Class) Class cls int dotIdx private java.lang.String findCallSite () Class allowedCallSite int j StackTraceElement stackTraceElement int i Throwable traceProvider StackTraceElement[] stackTrace StringBuffer buffer private java.lang.String generateStackTrace (java.lang.Throwable) java.io.UnsupportedEncodingException e Throwable th java.io.ByteArrayOutputStream baos java.io.PrintWriter writer static void <clinit> () NoSuchMethodException e }
org/tmatesoft/svn/core/internal/wc/SVNAdminDeltifier.class
SVNAdminDeltifier.java package org.tmatesoft.svn.core.internal.wc public org.tmatesoft.svn.core.internal.wc.SVNAdminDeltifier extends java.lang.Object { private org.tmatesoft.svn.core.internal.io.fs.FSFS myFSFS private org.tmatesoft.svn.core.SVNDepth myDepth private boolean myIsIncludeEntryProperties private boolean myIsIgnoreAncestry private boolean myIsSendTextDeltas private org.tmatesoft.svn.core.io.ISVNEditor myEditor private org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner myDeltaCombiner private org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator myDeltaGenerator public void <init> (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, org.tmatesoft.svn.core.io.ISVNEditor) org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.SVNDepth depth boolean includeEntryProperties boolean ignoreAncestry boolean sendTextDeltas org.tmatesoft.svn.core.io.ISVNEditor editor public void setEditor (org.tmatesoft.svn.core.io.ISVNEditor) org.tmatesoft.svn.core.io.ISVNEditor editor public void deltifyDir (org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot String srcParentDir String srcEntry org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot tgtRoot String tgtFullPath String srcFullPath org.tmatesoft.svn.core.SVNNodeKind tgtKind org.tmatesoft.svn.core.SVNNodeKind srcKind long rootRevision org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode srcNode org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode tgtNode int distance private void addFileOrDir (org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode tgtNode org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot tgtRoot String tgtPath String editPath org.tmatesoft.svn.core.SVNNodeKind tgtKind private void deltifyDirs (org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode sourceNode int distance org.tmatesoft.svn.core.internal.io.fs.FSEntry srcEntry String sourceFullPath org.tmatesoft.svn.core.SVNNodeKind srcKind String name org.tmatesoft.svn.core.internal.io.fs.FSEntry tgtEntry org.tmatesoft.svn.core.SVNNodeKind tgtKind String targetFullPath String editFullPath java.util.Iterator tgtEntries String name org.tmatesoft.svn.core.internal.io.fs.FSEntry srcEntry String editFullPath java.util.Iterator srcEntries org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot tgtRoot String srcPath String tgtPath String editPath org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode targetNode java.util.Map targetEntries java.util.Map sourceEntries private void replaceFileOrDir (org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode tgtNode org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot tgtRoot String srcPath String tgtPath String editPath org.tmatesoft.svn.core.SVNNodeKind tgtKind long baseRevision private void deltifyFiles (org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode srcNode String srcHexDigest org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot tgtRoot String srcPath String tgtPath String editPath boolean changed private void deltifyProperties (org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot, java.lang.String, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties revisionProps String committedDateStr String lastAuthor String uuid org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node long committedRevision org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode sourceNode boolean propsChanged String propName org.tmatesoft.svn.core.SVNPropertyValue propValue int i org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot srcRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot tgtRoot String srcPath String tgtPath String editPath boolean isDir org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode targetNode org.tmatesoft.svn.core.SVNProperties sourceProps org.tmatesoft.svn.core.SVNProperties targetProps org.tmatesoft.svn.core.SVNProperties propsDiffs Object[] names private static void generateNotADirError (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String role String path org.tmatesoft.svn.core.SVNErrorMessage err }
org/tmatesoft/svn/core/internal/wc/patch/
org/tmatesoft/svn/core/internal/wc/patch/SVNPatchHunk.class
SVNPatchHunk.java package org.tmatesoft.svn.core.internal.wc.patch public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk extends java.lang.Object { public static final java.util.Comparator COMPARATOR private static final org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineFilter original_line_filter private static final org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineFilter modified_line_filter private static final org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineTransformer remove_leading_char_transformer private org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream diffText private org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream originalText private org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream modifiedText private org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange original private org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange modified private long leadingContext private long trailingContext public void <init> () public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream getDiffText () public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream getOriginalText () public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream getModifiedText () public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange getOriginal () public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange getModified () public long getLeadingContext () public long getTrailingContext () public void close () throws java.io.IOException public static org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk parseNextHunk (org.tmatesoft.svn.core.internal.wc.patch.SVNPatch) throws java.io.IOException org.tmatesoft.svn.core.SVNException char c String line org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream diff_text org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream original_text org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream modified_text org.tmatesoft.svn.core.internal.wc.patch.SVNPatch patch boolean eof boolean in_hunk boolean hunk_seen long pos long last_line long start long end long original_lines long leading_context long trailing_context boolean changed_line_seen org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hunk StringBuffer lineBuf private static char getChar (java.lang.String, int) String line int i private static boolean parseHunkHeader (java.lang.String, org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk) String header org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hunk int p StringBuffer range private static boolean parseRange (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange, java.lang.StringBuffer) Integer offset org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange hunkRange StringBuffer range int comma Integer offset private static java.lang.Integer parseOffset (java.lang.String) NumberFormatException e String number static synthetic org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange access$000 (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk) org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk x0 static synthetic char access$200 (java.lang.String, int) String x0 int x1 static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/patch/SVNPatchHunk$2.class
SVNPatchHunk.java package org.tmatesoft.svn.core.internal.wc.patch final org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$2 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineFilter { void <init> () public boolean lineFilter (java.lang.String) String line }
org/tmatesoft/svn/core/internal/wc/patch/SVNPatchFileStream$SVNPatchFileLineTransformer.class
SVNPatchFileStream.java package org.tmatesoft.svn.core.internal.wc.patch public abstract org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineTransformer extends java.lang.Object { public abstract java.lang.String lineTransformer (java.lang.String) }
org/tmatesoft/svn/core/internal/wc/patch/SVNPatchFileStream$SVNPatchFileLineFilter.class
SVNPatchFileStream.java package org.tmatesoft.svn.core.internal.wc.patch public abstract org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineFilter extends java.lang.Object { public abstract boolean lineFilter (java.lang.String) }
org/tmatesoft/svn/core/internal/wc/patch/SVNPatchHunk$3.class
SVNPatchHunk.java package org.tmatesoft.svn.core.internal.wc.patch final org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$3 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineFilter { void <init> () public boolean lineFilter (java.lang.String) String line }
org/tmatesoft/svn/core/internal/wc/patch/SVNPatchTarget.class
SVNPatchTarget.java package org.tmatesoft.svn.core.internal.wc.patch public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget extends java.lang.Object { private static final int MAX_FUZZ private org.tmatesoft.svn.core.internal.wc.patch.SVNPatch patch private java.util.List lines private java.util.List hunks private boolean localMods private boolean executable private boolean skipped private String eolStr private java.util.Map keywords private String eolStyle private org.tmatesoft.svn.core.SVNNodeKind kind private int currentLine private boolean modified private boolean hadRejects private boolean deleted private boolean eof private boolean added private java.io.File absPath private java.io.File relPath private java.io.File canonPathFromPatchfile private java.io.RandomAccessFile file private org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream stream private java.io.File patchedPath private java.io.OutputStream patchedRaw private java.io.OutputStream patched private java.io.File rejectPath private org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream reject private boolean parentDirExists private void <init> () public boolean isLocalMods () public java.lang.String getEolStr () public java.util.Map getKeywords () public java.lang.String getEolStyle () public java.io.RandomAccessFile getFile () public java.io.OutputStream getPatchedRaw () public java.io.File getCanonPathFromPatchfile () public org.tmatesoft.svn.core.internal.wc.patch.SVNPatch getPatch () public int getCurrentLine () public boolean isModified () public boolean isEof () public java.util.List getLines () public boolean isSkipped () public java.util.List getHunks () public org.tmatesoft.svn.core.SVNNodeKind getKind () public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream getStream () public java.io.OutputStream getPatched () public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream getReject () public java.io.File getPatchedPath () public boolean isAdded () public boolean isDeleted () public boolean isExecutable () public java.io.File getRejectPath () public java.io.File getAbsPath () public java.io.File getRelPath () public boolean isHadRejects () public boolean isParentDirExists () public static org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget initPatchTarget (org.tmatesoft.svn.core.internal.wc.patch.SVNPatch, java.io.File, int, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException java.io.IOException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry long changed_rev String author String changed_date String url String rev_str org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String keywords_val String eol_style_val String nativeEOLMarker String diff_header org.tmatesoft.svn.core.internal.wc.patch.SVNPatch patch java.io.File baseDir int stripCount org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea wc org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget new_target private static java.lang.String detectFileEOL (java.io.RandomAccessFile) throws java.io.IOException char c2 int b2 char c1 java.io.BufferedInputStream stream StringBuffer buf int b1 java.io.RandomAccessFile file long pos private void resolveTargetPath (java.io.File, java.io.File, int, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException java.io.IOException java.io.File stripped_path java.io.File absDirname org.tmatesoft.svn.core.wc.SVNStatus status2 org.tmatesoft.svn.core.wc.SVNStatusType contentsStatus2 org.tmatesoft.svn.core.SVNNodeKind kind java.io.File pathFromPatchfile java.io.File absWCPath int stripCount org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea wc org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target java.io.File stripped_path org.tmatesoft.svn.core.wc.SVNStatus status org.tmatesoft.svn.core.wc.SVNStatusType contentsStatus private boolean isChildPath (java.io.File, java.io.File) throws java.io.IOException String basePath java.io.File childFile String childPath java.io.File baseFile java.io.File file private java.io.File getChildPath (java.io.File, java.io.File) throws java.io.IOException String substr java.io.File subPath String base String child java.io.File basePath java.io.File childPath private java.io.File stripPath (java.io.File, int) int i String[] components StringBuffer buf java.io.File path int stripCount public void rejectHunk (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunkInfo) throws org.tmatesoft.svn.core.SVNException java.io.IOException org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunkInfo hi org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hunk StringBuffer hunk_header boolean eof StringBuffer hunk_line StringBuffer eol_str public void applyHunk (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunkInfo) throws org.tmatesoft.svn.core.SVNException java.io.IOException org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunkInfo hi org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hunk long lines_read boolean eof StringBuffer hunk_line StringBuffer eol_str public void seekToLine (int) throws org.tmatesoft.svn.core.SVNException java.io.IOException org.tmatesoft.svn.core.SVNErrorMessage err Long mark StringBuffer dummy int line org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target public void readLine (java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException java.io.IOException org.tmatesoft.svn.core.SVNErrorMessage err Long mark StringBuffer line org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target StringBuffer line_raw byte[] eol public void copyLinesToTarget (int) throws org.tmatesoft.svn.core.SVNException java.io.IOException StringBuffer target_line int line org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target public void installPatchedTarget (java.io.File, boolean, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNFileType disk_kind String component org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNNodeKind kind int i org.tmatesoft.svn.core.wc.SVNEvent mergeCompletedEvent String component int i java.io.File absPath String[] components int present_components String rej_path java.io.File absWCPath boolean dryRun org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea wc org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target public static java.lang.String[] decomposePath (java.io.File) java.io.File path public static org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget applyPatch (org.tmatesoft.svn.core.internal.wc.patch.SVNPatch, java.io.File, int, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException java.io.IOException org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hunk org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunkInfo hi int fuzz java.util.Iterator i org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunkInfo hi java.util.Iterator i long patchedFileSize long workingFileSize org.tmatesoft.svn.core.internal.wc.patch.SVNPatch patch java.io.File absWCPath int stripCount org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea wc org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunkInfo getHunkInfo (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk, int) throws org.tmatesoft.svn.core.SVNException java.io.IOException int matchedLine int matchedLine int savedLine boolean savedEof int matchedLine org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hunk int fuzz org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target int matchedLine public int scanForMatch (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk, boolean, int, int) throws org.tmatesoft.svn.core.SVNException java.io.IOException org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunkInfo hi java.util.Iterator i boolean taken boolean matched org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hunk boolean matchFirst int upperLine int fuzz org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target int matched_line private boolean matchHunk (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk, int) throws org.tmatesoft.svn.core.SVNException java.io.IOException String hunk_line_translated byte[] eol org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hunk int fuzz org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target StringBuffer hunkLine StringBuffer targetLine StringBuffer eol_str int linesRead int savedLine boolean hunkEof boolean linesMatched boolean matched private void tryWrite (java.io.OutputStream, java.lang.StringBuffer) throws java.io.IOException java.io.OutputStream stream StringBuffer buffer public void sendPatchNotification (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunkInfo hi org.tmatesoft.svn.core.wc.SVNEvent notify2 java.util.Iterator i org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea wc org.tmatesoft.svn.core.internal.wc.patch.SVNPatchTarget target org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNStatusType contentState org.tmatesoft.svn.core.wc.SVNEvent notify }
org/tmatesoft/svn/core/internal/wc/patch/SVNPatchHunk$1.class
SVNPatchHunk.java package org.tmatesoft.svn.core.internal.wc.patch final org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$1 extends java.lang.Object implements java.util.Comparator { void <init> () public int compare (java.lang.Object, java.lang.Object) Object a Object b org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk ha org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hb }
org/tmatesoft/svn/core/internal/wc/patch/SVNPatchFileStream.class
SVNPatchFileStream.java package org.tmatesoft.svn.core.internal.wc.patch public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream extends java.lang.Object { private java.io.File path private boolean write private long start private long end private java.io.RandomAccessFile file private org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineFilter lineFilter private org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineTransformer lineTransformer private void <init> (java.io.File, boolean, long, long) java.io.File path boolean write long start long end private void <init> (java.io.File, boolean) java.io.File path boolean write public static org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream openReadOnly (java.io.File) throws java.io.IOException org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream stream public static org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream openRangeReadOnly (java.io.File, long, long) throws java.io.IOException org.tmatesoft.svn.core.SVNException java.io.File path long start long end org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream stream public static org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream openForWrite (java.io.File) throws java.io.IOException org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream stream public java.io.File getPath () public void setLineFilter (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineFilter) org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineFilter lineFilter public void setLineTransformer (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineTransformer) org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineTransformer lineTransfomer private java.io.RandomAccessFile getFile () throws org.tmatesoft.svn.core.SVNException public void reset () throws java.io.IOException org.tmatesoft.svn.core.SVNException java.io.RandomAccessFile file public void close () throws java.io.IOException public boolean isEOF () throws java.io.IOException org.tmatesoft.svn.core.SVNException java.io.RandomAccessFile file public long getSeekPosition () throws org.tmatesoft.svn.core.SVNException java.io.IOException java.io.RandomAccessFile file public void setSeekPosition (long) throws org.tmatesoft.svn.core.SVNException java.io.IOException long pos java.io.RandomAccessFile file private void checkPos (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long pos private boolean isPosValid (long) long pos public void write (java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException String str java.io.RandomAccessFile file long pos public void write (java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException java.io.IOException StringBuffer str public void tryWrite (java.lang.StringBuffer) throws org.tmatesoft.svn.core.SVNException java.io.IOException StringBuffer lineBuf public boolean readLineWithEol (java.lang.StringBuffer, java.lang.StringBuffer) throws java.io.IOException org.tmatesoft.svn.core.SVNException StringBuffer lineBuf StringBuffer eolStr public boolean readLine (java.lang.StringBuffer) throws java.io.IOException org.tmatesoft.svn.core.SVNException StringBuffer lineBuf public boolean readLine (java.lang.StringBuffer, java.lang.String) throws java.io.IOException org.tmatesoft.svn.core.SVNException StringBuffer lineBuf String eolStr StringBuffer eol private boolean readLine (java.lang.StringBuffer, java.lang.StringBuffer, boolean) throws java.io.IOException org.tmatesoft.svn.core.SVNException long cur int c2 String line StringBuffer input StringBuffer eolStr boolean detectEol int c boolean eol boolean filtered }
org/tmatesoft/svn/core/internal/wc/patch/SVNPatchHunkInfo.class
SVNPatchHunkInfo.java package org.tmatesoft.svn.core.internal.wc.patch public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunkInfo extends java.lang.Object { private org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hunk private boolean rejected private int matchedLine private int fuzz public void <init> (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk, int, boolean, int) org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hunk int matchedLine boolean rejected int fuzz public boolean isRejected () public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk getHunk () public int getMatchedLine () public int getFuzz () }
org/tmatesoft/svn/core/internal/wc/patch/SVNPatchHunk$4.class
SVNPatchHunk.java package org.tmatesoft.svn.core.internal.wc.patch final org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$4 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream$SVNPatchFileLineTransformer { void <init> () public java.lang.String lineTransformer (java.lang.String) String line }
org/tmatesoft/svn/core/internal/wc/patch/SVNPatchHunk$SVNPatchHunkRange.class
SVNPatchHunk.java package org.tmatesoft.svn.core.internal.wc.patch public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange extends java.lang.Object { private int start private int length public void <init> () public int getStart () public int getLength () static synthetic int access$100 (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange) org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange x0 static synthetic int access$300 (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange) org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange x0 static synthetic int access$302 (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange, int) org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange x0 int x1 static synthetic int access$102 (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange, int) org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk$SVNPatchHunkRange x0 int x1 }
org/tmatesoft/svn/core/internal/wc/patch/SVNPatch.class
SVNPatch.java package org.tmatesoft.svn.core.internal.wc.patch public org.tmatesoft.svn.core.internal.wc.patch.SVNPatch extends java.lang.Object { public static final String MINUS public static final String PLUS public static final String ATAT private java.io.File path private org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream patchFile private java.io.File oldFilename private java.io.File newFilename private java.util.List hunks public void <init> () public java.io.File getPath () public org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream getPatchFile () public java.io.File getOldFilename () public java.io.File getNewFilename () public java.util.List getHunks () public void close () throws java.io.IOException org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hunk int i int hunksCount public static org.tmatesoft.svn.core.internal.wc.patch.SVNPatch parseNextPatch (org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream) throws org.tmatesoft.svn.core.SVNException java.io.IOException int tab java.io.File filePath String line org.tmatesoft.svn.core.internal.wc.patch.SVNPatchFileStream patchFile java.io.File patchPath org.tmatesoft.svn.core.internal.wc.patch.SVNPatch patch String indicator boolean eof boolean in_header StringBuffer lineBuf org.tmatesoft.svn.core.internal.wc.patch.SVNPatchHunk hunk }
org/tmatesoft/svn/core/internal/wc/admin/
org/tmatesoft/svn/core/internal/wc/admin/SVNReporter.class
SVNReporter.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNReporter extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo myInfo private org.tmatesoft.svn.core.SVNDepth myDepth private boolean myIsRestore private boolean myUseDepthCompatibilityTrick private boolean myIsStatus private boolean myIsHonorDepthExclude private java.io.File myTarget private org.tmatesoft.svn.util.ISVNDebugLog myLog private boolean myIsLockOnDemand private long myTotalFilesCount private long myReportedFilesCount public void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, java.io.File, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, org.tmatesoft.svn.util.ISVNDebugLog) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info java.io.File file boolean restoreFiles boolean useDepthCompatibilityTrick org.tmatesoft.svn.core.SVNDepth depth boolean lockOnDemand boolean isStatus boolean isHonorDepthExclude org.tmatesoft.svn.util.ISVNDebugLog log public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry long revision org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.SVNURL svnURL String url String parentURL String expectedURL org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea targetArea org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry boolean startEmpty long revision boolean missing org.tmatesoft.svn.core.SVNException inner org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err Throwable th org.tmatesoft.svn.core.io.ISVNReporter reporter private void reportEntries (org.tmatesoft.svn.core.io.ISVNReporter, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, long, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException String areaPath org.tmatesoft.svn.core.SVNURL svnURL org.tmatesoft.svn.core.SVNURL svnURL String url boolean dropDeletedSchedule org.tmatesoft.svn.core.SVNURL svnURL org.tmatesoft.svn.core.SVNURL svnURL org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childEntry String url boolean startEmpty org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String path java.io.File file org.tmatesoft.svn.core.internal.wc.SVNFileType fileType boolean missing String expectedURL java.util.Iterator e org.tmatesoft.svn.core.io.ISVNReporter reporter org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String dirPath long dirRevision boolean reportAll org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess String externalsProperty org.tmatesoft.svn.core.internal.wc.admin.SVNEntry thisEntry String parentURL private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea restoreFile (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public long getReportedFilesCount () public long getTotalFilesCount () }
org/tmatesoft/svn/core/internal/wc/admin/ISVNEntryHandler.class
ISVNEntryHandler.java package org.tmatesoft.svn.core.internal.wc.admin public abstract org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler extends java.lang.Object { public abstract void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException public abstract void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminArea15Factory.class
SVNAdminArea15Factory.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea15Factory extends org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14Factory { public static final int WC_FORMAT public void <init> () protected void doCreateVersionedDirectory (java.io.File, java.lang.String, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File path String url String rootURL String uuid long revNumber org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea doOpen (java.io.File, int) throws org.tmatesoft.svn.core.SVNException java.io.File path int version protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea doChangeWCFormat (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea15 newAdminArea public int getSupportedVersion () }
org/tmatesoft/svn/core/internal/wc/admin/SVNWCAccess.class
SVNWCAccess.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { public static final int INFINITE_DEPTH private org.tmatesoft.svn.core.wc.ISVNEventHandler myEventHandler private org.tmatesoft.svn.core.wc.ISVNOptions myOptions private java.util.Map myAdminAreas private java.util.Map myCleanupHandlers private org.tmatesoft.svn.core.internal.wc.SVNObjectsPool myObjectsPool private java.io.File myAnchor private static boolean ourNeverDescendIntoSymlinks public static org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess newInstance (org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNEventHandler eventHandler private static boolean isObjectsPoolEnabled () private void <init> (org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNEventHandler handler public void setEventHandler (org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNEventHandler handler public org.tmatesoft.svn.core.wc.ISVNEventHandler getEventHandler () public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event public void registerCleanupHandler (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.ISVNCleanupHandler) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.internal.wc.admin.ISVNCleanupHandler handler public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err Throwable th org.tmatesoft.svn.core.wc.SVNEvent event double progress public void setOptions (org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNOptions options public org.tmatesoft.svn.core.wc.ISVNOptions getOptions () public void setAnchor (java.io.File) java.io.File anchor public java.io.File getAnchor () public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo openAnchor (java.io.File, boolean, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea anchor org.tmatesoft.svn.core.SVNException svne2 org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne2 org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne2 org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne2 org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetInParent org.tmatesoft.svn.core.SVNURL parentURL org.tmatesoft.svn.core.SVNURL targetURL String encodedName org.tmatesoft.svn.core.SVNException svne2 org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne2 org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNEntry targetEntry java.io.File path boolean writeLock int depth java.io.File parent String name org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea targetArea org.tmatesoft.svn.core.SVNException parentError org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea anchor org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea target public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea open (java.io.File, boolean, int) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean writeLock int depth public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea open (java.io.File, boolean, boolean, int) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean writeLock boolean stealLock int depth public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea open (java.io.File, boolean, boolean, boolean, int, java.util.logging.Level) throws org.tmatesoft.svn.core.SVNException Object childPath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea java.util.Iterator paths Object childPath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea java.util.Iterator paths java.io.File path boolean writeLock boolean stealLock boolean upgradeFormat int depth java.util.logging.Level logLevel java.util.Map tmp org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea probeOpen (java.io.File, boolean, int) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean writeLock int depth public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea probeOpen (java.io.File, boolean, int, java.util.logging.Level) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNFileType childKind org.tmatesoft.svn.core.SVNErrorCode errCode org.tmatesoft.svn.core.SVNException svne java.io.File path boolean writeLock int depth java.util.logging.Level logLevel java.io.File dir org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea probeTry (java.io.File, boolean, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne2 org.tmatesoft.svn.core.SVNException svne java.io.File path boolean writeLock int depth org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public void close () throws org.tmatesoft.svn.core.SVNException public void closeAdminArea (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area java.io.File path private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea doOpen (java.io.File, boolean, boolean, boolean, int, java.util.Map, java.util.logging.Level) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea existing org.tmatesoft.svn.core.SVNCancelException e org.tmatesoft.svn.core.SVNException e java.io.File p String pAbs java.util.Iterator paths java.util.Map toClose String childPathAbs org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childRootEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry thisRootEntry String childRoot String expectedRoot org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File childPath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea java.util.Iterator entries java.io.File path boolean writeLock boolean stealLock boolean upgradeFormat int depth java.util.Map tmp java.util.logging.Level logLevel org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area private void doClose (java.util.Map, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea java.util.Iterator paths java.io.File path java.util.Iterator paths java.io.File path java.util.Iterator paths java.util.Map copy java.util.Map adminAreas boolean preserveLocks java.util.Set closedAreas private void doClose (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.ISVNCleanupHandler handler org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea boolean preserveLocks public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea probeRetrieve (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path java.io.File dir public boolean isMissing (java.io.File) java.io.File path public boolean isLocked (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path java.io.File lockFile org.tmatesoft.svn.core.SVNErrorMessage err public boolean isWCRoot (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File parent org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess tmpAccess org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription getTreeConflict (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException internal org.tmatesoft.svn.core.SVNException e java.io.File path java.io.File parent boolean closeParentArea org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict public boolean hasTreeConflict (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict public org.tmatesoft.svn.core.internal.wc.admin.SVNEntry getEntry (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean showHidden org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String entryName public org.tmatesoft.svn.core.internal.wc.admin.SVNEntry getVersionedEntry (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path boolean showHidden org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public void setRepositoryRoot (java.io.File, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL reposRoot org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea[] getAdminAreas () public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea upgrade (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.ISVNCleanupHandler cleanupHandler org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea upgradedArea public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea retrieve (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dirAdminArea org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage childErr org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry subEntry org.tmatesoft.svn.core.internal.wc.SVNFileType type java.io.File adminDir org.tmatesoft.svn.core.internal.wc.SVNFileType wcType org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getAdminArea (java.io.File) java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public void walkEntries (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler handler boolean showHidden org.tmatesoft.svn.core.SVNDepth depth public void walkEntries (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler, boolean, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea java.io.File path org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler handler boolean showHidden boolean includeTC org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry private java.io.File probe (java.io.File, java.util.logging.Level) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path java.util.logging.Level logLevel int wcFormat org.tmatesoft.svn.core.internal.wc.SVNFileType type boolean eligible public static boolean matchesChangeList (java.util.Collection, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) java.util.Collection changeLists org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry int getMaxFormatVersion () org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea java.util.Iterator iterator int maxVersion public org.tmatesoft.svn.core.internal.wc.ISVNUpdateEditor createUpdateEditor (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, java.lang.String[], org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo info String switchURL boolean allowUnversionedObstructions boolean depthIsSticky org.tmatesoft.svn.core.SVNDepth depth String[] preservedExtensions org.tmatesoft.svn.core.internal.wc.ISVNFileFetcher fileFetcher boolean lockOnDemand int maxVersion public org.tmatesoft.svn.core.internal.wc.SVNMergeCallback createMergeCallback (org.tmatesoft.svn.core.internal.wc.SVNMergeDriver, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNDiffOptions, java.util.Map, boolean, boolean) org.tmatesoft.svn.core.internal.wc.SVNMergeDriver mergeDriver org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNDiffOptions mergeOptions java.util.Map conflictedPaths boolean force boolean dryRun int maxVersion public org.tmatesoft.svn.core.internal.wc.SVNObjectsPool getObjectsPool () static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminArea$1.class
SVNAdminArea.java package org.tmatesoft.svn.core.internal.wc.admin org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea$1 extends java.io.OutputStream { private String myName private java.io.File myTmpFile final synthetic String val$fileName final synthetic java.io.File val$tmpFile final synthetic java.io.OutputStream val$os final synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea this$0 void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.io.File, java.io.OutputStream) public void write (int) throws java.io.IOException int b public void write (byte[]) throws java.io.IOException byte[] b public void write (byte[], int, int) throws java.io.IOException byte[] b int off int len public void close () throws java.io.IOException org.tmatesoft.svn.core.SVNException e java.io.File baseFile }
org/tmatesoft/svn/core/internal/wc/admin/SVNSimpleVersionedPropertiesImpl.class
SVNSimpleVersionedPropertiesImpl.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNSimpleVersionedPropertiesImpl extends org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties { public void <init> (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties props public boolean containsProperty (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name public org.tmatesoft.svn.core.SVNPropertyValue getPropertyValue (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name protected org.tmatesoft.svn.core.SVNProperties loadProperties () throws org.tmatesoft.svn.core.SVNException protected org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties wrap (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties properties }
org/tmatesoft/svn/core/internal/wc/admin/ISVNAdminAreaFactorySelector.class
ISVNAdminAreaFactorySelector.java package org.tmatesoft.svn.core.internal.wc.admin public abstract org.tmatesoft.svn.core.internal.wc.admin.ISVNAdminAreaFactorySelector extends java.lang.Object { public abstract java.util.Collection getEnabledFactories (java.io.File, java.util.Collection, boolean) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/admin/SVNTranslatorInputStream.class
SVNTranslatorInputStream.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNTranslatorInputStream extends java.io.InputStream { private java.io.InputStream mySource private java.nio.ByteBuffer myTranslatedBuffer private org.tmatesoft.svn.core.internal.wc.SVNSubstitutor mySubstitutor private byte[] mySourceBuffer public void <init> (java.io.InputStream, byte[], boolean, java.util.Map, boolean) java.io.InputStream source byte[] eols boolean repair java.util.Map keywords boolean expand public int read () throws java.io.IOException byte[] b int r public int read (byte[]) throws java.io.IOException byte[] b public int read (byte[], int, int) throws java.io.IOException org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper wrappedException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper wrappedException org.tmatesoft.svn.core.SVNException svne int read byte[] b int off int len boolean isEOF int available public void close () throws java.io.IOException }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminAreaFactory$1.class
SVNAdminAreaFactory.java package org.tmatesoft.svn.core.internal.wc.admin synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory$1 extends java.lang.Object { }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminArea16.class
SVNAdminArea16.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea16 extends org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea15 { public static final int WC_FORMAT public void <init> (java.io.File) java.io.File dir public boolean hasTreeConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException String victimName public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription getTreeConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException String victimName org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dirEntry java.util.Map conflicts public void addTreeConflict (org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict org.tmatesoft.svn.core.wc.SVNTreeConflictDescription existingDescription java.util.Map conflicts String conflictData org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.internal.wc.admin.SVNLog log public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription deleteTreeConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict String conflictData java.util.Map attributes String victimName org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dirEntry java.util.Map conflicts java.io.File victimPath public void setFileExternalLocation (java.lang.String, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException String strURL String reposRootStrURL String path String name org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNURL reposRootURL java.util.Map attributes public int getFormatVersion () public void postUpgradeFormat (int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne int format protected void createFormatFile (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File formatFile boolean createMyself protected boolean readExtraOptions (java.io.BufferedReader, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException java.io.IOException java.io.BufferedReader reader org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String line String treeConflictData String fileExternalData protected int writeExtraOptions (java.io.Writer, java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, int) throws org.tmatesoft.svn.core.SVNException java.io.IOException java.io.Writer writer String entryName org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry int emptyFields String treeConflictData String serializedFileExternalData protected boolean isEntryPropertyApplicable (java.lang.String) String propName }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminArea14$1.class
SVNAdminArea14.java package org.tmatesoft.svn.core.internal.wc.admin org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14$1 extends org.tmatesoft.svn.core.internal.wc.admin.SVNProperties14 { final synthetic String val$entryName final synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14 this$0 void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14, java.lang.String, java.lang.String) org.tmatesoft.svn.core.SVNProperties x0 org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14 x1 String x2 protected org.tmatesoft.svn.core.SVNProperties loadProperties () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNProperties props }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminArea14Factory.class
SVNAdminArea14Factory.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14Factory extends org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory { public static final int WC_FORMAT public void <init> () protected void doCreateVersionedDirectory (java.io.File, java.lang.String, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File path String url String rootURL String uuid long revNumber org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea doOpen (java.io.File, int) throws org.tmatesoft.svn.core.SVNException java.io.File path int version protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea doChangeWCFormat (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14 newestAdminArea public int getSupportedVersion () protected int doCheckWC (java.io.File, java.util.logging.Level) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.FileNotFoundException e org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNFileType type org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException e java.io.File path java.util.logging.Level logLevel java.io.File adminDir java.io.File entriesFile int formatVersion java.io.BufferedReader reader String line protected int getVersion (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path }
org/tmatesoft/svn/core/internal/wc/admin/SVNVersionedProperties.class
SVNVersionedProperties.java package org.tmatesoft.svn.core.internal.wc.admin public abstract org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties extends java.lang.Object { private org.tmatesoft.svn.core.SVNProperties myProperties private boolean myIsModified protected void <init> (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties props public abstract boolean containsProperty (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNPropertyValue getPropertyValue (java.lang.String) throws org.tmatesoft.svn.core.SVNException public java.lang.String getStringPropertyValue (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public boolean isModified () protected void setModified (boolean) boolean modified public boolean isEmpty () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props public java.util.Collection getPropertyNames (java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.util.Iterator names java.util.Collection target org.tmatesoft.svn.core.SVNProperties props public void setPropertyValue (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value org.tmatesoft.svn.core.SVNProperties props public org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties compareTo (org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties properties org.tmatesoft.svn.core.SVNProperties theseProps public void copyTo (org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties destination org.tmatesoft.svn.core.SVNProperties props public void removeAll () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props public boolean equals (org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props public org.tmatesoft.svn.core.SVNProperties asMap () throws org.tmatesoft.svn.core.SVNException protected void put (org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.SVNProperties thisProps protected org.tmatesoft.svn.core.SVNProperties getProperties () protected void setPropertiesMap (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties props protected abstract org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties wrap (org.tmatesoft.svn.core.SVNProperties) protected abstract org.tmatesoft.svn.core.SVNProperties loadProperties () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/admin/SVNXMLAdminArea.class
SVNXMLAdminArea.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNXMLAdminArea extends org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea { public static final int WC_FORMAT private static final String THIS_DIR private static final java.util.Set BOOLEAN_PROPERTIES private static final java.util.Set INAPPLICABLE_PROPERTIES private java.io.File myLockFile private java.io.File myEntriesFile public void <init> (java.io.File) java.io.File dir private void saveProperties (org.tmatesoft.svn.core.internal.wc.admin.SVNLog) throws org.tmatesoft.svn.core.SVNException String tmpPath java.io.File tmpFile String srcPath org.tmatesoft.svn.core.internal.wc.SVNWCProperties tmpProps String dstPath String name org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNLog log java.util.Map propsCache org.tmatesoft.svn.core.SVNProperties command private void saveBaseProperties (org.tmatesoft.svn.core.internal.wc.admin.SVNLog) throws org.tmatesoft.svn.core.SVNException String tmpPath java.io.File tmpFile String srcPath org.tmatesoft.svn.core.internal.wc.SVNWCProperties tmpProps String dstPath String name org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNLog log java.util.Map basePropsCache org.tmatesoft.svn.core.SVNProperties command public void saveWCProperties (boolean) throws org.tmatesoft.svn.core.SVNException String tmpPath java.io.File tmpFile String dstPath java.io.File dstFile String name org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props java.util.Iterator entries boolean close java.util.Map wcPropsCache public org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties getBaseProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String name java.util.Map basePropsCache org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.SVNProperties baseProps public org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties getRevertProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String name java.util.Map revertPropsCache org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.SVNProperties revertProps public org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties getProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String name java.util.Map propsCache org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.SVNProperties properties public org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties getWCProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String name java.util.Map wcPropsCache org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.SVNProperties properties private org.tmatesoft.svn.core.SVNProperties readProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name java.io.File propertiesFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties props private org.tmatesoft.svn.core.SVNProperties readBaseProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name java.io.File propertiesFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties props private org.tmatesoft.svn.core.SVNProperties readRevertProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name java.io.File propertiesFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties props private org.tmatesoft.svn.core.SVNProperties readWCProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name String path java.io.File propertiesFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties props public void saveEntries (boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.wc.admin.SVNEntry rootEntry String reposURL String url java.io.File tmpFile java.io.Writer os boolean close public void saveVersionedProperties (org.tmatesoft.svn.core.internal.wc.admin.SVNLog, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNLog log boolean close public void installProperties (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, boolean, boolean) throws org.tmatesoft.svn.core.SVNException String tmpPath java.io.File tmpFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties tmpProps String tmpPath java.io.File tmpFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties tmpProps String basePath String name org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties workingProps org.tmatesoft.svn.core.internal.wc.admin.SVNLog log boolean writeBaseProps boolean close org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.SVNNodeKind kind String dstPath protected java.util.Map fetchEntries () throws org.tmatesoft.svn.core.SVNException String url java.util.Map rootEntryAttrs org.tmatesoft.svn.core.internal.wc.admin.SVNEntry rootEntry String entryName String name String value String line java.util.Map entry org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.util.Map entries java.io.BufferedReader reader public java.lang.String getThisDirName () protected void writeEntries (java.io.Writer) throws java.io.IOException org.tmatesoft.svn.core.SVNException Object expectedValue Object expectedValue Object expectedValue Object expectedValue String propName Object value String propValue java.util.Iterator names String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map entryAttrs java.util.Iterator entriesIter java.io.Writer writer org.tmatesoft.svn.core.internal.wc.admin.SVNEntry rootEntry java.util.Map rootEntryAttrs java.util.List entryNames public boolean hasPropModifications (java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File propFile java.io.File baseFile boolean baseEmtpy String name java.io.File propFile java.io.File baseFile org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry long propLength boolean propEmtpy String realTimestamp String fullRealTimestamp String timeStamp org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties m1 org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties m2 public boolean hasTextModifications (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String textTime long textTimeAsLong long tstamp org.tmatesoft.svn.core.SVNErrorMessage err String checksum org.tmatesoft.svn.core.SVNErrorMessage err java.security.NoSuchAlgorithmException e String name boolean forceComparison org.tmatesoft.svn.core.internal.wc.SVNFileType fType org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File baseFile java.io.File baseTmpFile java.io.File versionedFile java.security.MessageDigest digest boolean equals public boolean hasProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File propFile java.io.File baseFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties props String entryName java.io.File propFile java.io.File baseFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties baseProps public boolean lock (boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err boolean stealLock boolean created boolean innerLock () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err boolean created public boolean unlock () throws org.tmatesoft.svn.core.SVNException java.io.File log int i org.tmatesoft.svn.core.SVNErrorMessage err boolean killMe java.io.File[] logs boolean deleted public boolean isVersioned () org.tmatesoft.svn.core.SVNException e public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea createVersionedDirectory (java.io.File, java.lang.String, java.lang.String, java.lang.String, long, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException int i java.io.File dir String url String rootURL String uuid long revNumber boolean createMyself org.tmatesoft.svn.core.SVNDepth depth java.io.File adminDir java.io.File lockFile java.io.File[] tmp org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry rootEntry public boolean isLocked () public int getFormatVersion () protected org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties formatBaseProperties (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties srcProperties org.tmatesoft.svn.core.SVNProperties filteredProperties protected org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties formatProperties (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNProperties srcProperties org.tmatesoft.svn.core.SVNProperties filteredProperties public void handleKillMe () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryInParent org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry long dirRevision java.io.File dir org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access boolean isWCRoot org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry boolean killMe public void postCommit (java.lang.String, long, boolean, boolean, org.tmatesoft.svn.core.SVNErrorCode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File killMe org.tmatesoft.svn.core.internal.wc.admin.SVNEntry fileEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry currentEntry java.util.Iterator ents String tmpFile2Path org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne boolean modified java.io.File workingFile java.io.File tmpFile2 java.io.File tmpFile org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties propDiff org.tmatesoft.svn.core.internal.wc.SVNWCProperties working org.tmatesoft.svn.core.internal.wc.SVNWCProperties workingTmp org.tmatesoft.svn.core.SVNProperties pDiff boolean equals boolean overwritten org.tmatesoft.svn.core.internal.wc.SVNFileType fileType boolean special boolean needsReadonly boolean needsExecutable org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.io.File tmpFile java.io.File baseFile java.io.File wcFile java.io.File tmpFile2 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String fileName long revisionNumber boolean implicit boolean rerun org.tmatesoft.svn.core.SVNErrorCode errorCode org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry long textTime long propTime boolean setReadWrite boolean setNotExecutable org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties wcProps java.io.File tmpPropsFile java.io.File wcPropsFile java.io.File basePropertiesFile org.tmatesoft.svn.core.internal.wc.SVNFileType tmpPropsType java.util.Map entryAttrs java.io.File dirFile boolean unassociated org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryInParent public boolean hasTreeConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription getTreeConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name public void addTreeConflict (org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict org.tmatesoft.svn.core.SVNErrorMessage err public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription deleteTreeConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNErrorMessage err public void setFileExternalLocation (java.lang.String, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNURL reposRootURL org.tmatesoft.svn.core.SVNErrorMessage err protected boolean isEntryPropertyApplicable (java.lang.String) String propName protected boolean readExtraOptions (java.io.BufferedReader, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException java.io.IOException java.io.BufferedReader reader org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryAttrs protected int writeExtraOptions (java.io.Writer, java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, int) throws org.tmatesoft.svn.core.SVNException java.io.IOException java.io.Writer writer String entryName org.tmatesoft.svn.core.internal.wc.admin.SVNEntry Attrs int emptyFields static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/admin/SVNProperties13.class
SVNProperties13.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNProperties13 extends org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties { public void <init> (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties properties public boolean containsProperty (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props String name public org.tmatesoft.svn.core.SVNPropertyValue getPropertyValue (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props String name protected org.tmatesoft.svn.core.SVNProperties loadProperties () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties props protected org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties wrap (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties properties }
org/tmatesoft/svn/core/internal/wc/admin/SVNChecksumOutputStream.class
SVNChecksumOutputStream.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumOutputStream extends java.io.OutputStream { public static final String MD5_ALGORITHM private java.io.OutputStream myTarget private java.security.MessageDigest myDigest private byte[] myDigestResult private boolean myCloseTarget public void <init> (java.io.OutputStream, java.lang.String, boolean) java.security.NoSuchAlgorithmException e java.io.OutputStream target String algorithm boolean closeTarget public void write (int) throws java.io.IOException int b public void write (byte[]) throws java.io.IOException byte[] b public void write (byte[], int, int) throws java.io.IOException byte[] b int off int len public void close () throws java.io.IOException public java.lang.String getDigest () }
org/tmatesoft/svn/core/internal/wc/admin/SVNWCAccess$TCEntryHandler.class
SVNWCAccess.java package org.tmatesoft.svn.core.internal.wc.admin org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess$TCEntryHandler extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { private org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler myDelegate private org.tmatesoft.svn.core.SVNDepth myDepth private java.io.File myTargetPath private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess myWCAccess public void <init> (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler, org.tmatesoft.svn.core.SVNDepth) java.io.File target org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler delegate org.tmatesoft.svn.core.SVNDepth depth public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException java.io.File p org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc org.tmatesoft.svn.core.internal.wc.admin.SVNEntry conflictEntry java.util.Iterator paths java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean checkChildren java.util.Map tcs public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminArea14$2.class
SVNAdminArea14.java package org.tmatesoft.svn.core.internal.wc.admin org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14$2 extends org.tmatesoft.svn.core.internal.wc.admin.SVNProperties14 { final synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14 this$0 void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14, java.lang.String) org.tmatesoft.svn.core.SVNProperties x0 org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14 x1 String x2 protected org.tmatesoft.svn.core.SVNProperties loadProperties () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminArea14.class
SVNAdminArea14.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14 extends org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea { public static final int WC_FORMAT public static final String[] ourCachableProperties protected static final String ATTRIBUTE_COPIED protected static final String ATTRIBUTE_DELETED protected static final String ATTRIBUTE_ABSENT protected static final String ATTRIBUTE_INCOMPLETE protected static final String ATTRIBUTE_HAS_PROPS protected static final String ATTRIBUTE_HAS_PROP_MODS protected static final String KILL_ADM_ONLY protected static final String THIS_DIR private static final java.util.Set INAPPLICABLE_PROPERTIES private java.io.File myLockFile private java.io.File myEntriesFile private static boolean ourIsOptimizedWritingEnabled public void <init> (java.io.File) java.io.File dir public static void setOptimizedWritingEnabled (boolean) boolean enabled public static java.lang.String[] getCachableProperties () public void saveWCProperties (boolean) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props java.util.Iterator entries String name java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe java.io.OutputStream target boolean close java.util.Map wcPropsCache boolean hasAnyProps java.io.File dstFile java.io.File tmpFile public org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties getBaseProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String name java.util.Map basePropsCache org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.SVNProperties baseProps public org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties getRevertProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String name java.util.Map revertPropsCache org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.SVNProperties revertProps public org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties getProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name java.util.Map propsCache org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String entryName public org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties getWCProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String entryName org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Map wcPropsCache org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props private java.util.Map readAllWCProperties () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNProperties wcProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties entryWCProps String name StringBuffer buffer org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.util.Map wcPropsCache java.io.File propertiesFile org.tmatesoft.svn.core.internal.io.fs.FSFile wcpropsFile protected org.tmatesoft.svn.core.SVNProperties readBaseProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name java.io.File propertiesFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties props protected org.tmatesoft.svn.core.SVNProperties readRevertProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name java.io.File propertiesFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties props protected org.tmatesoft.svn.core.SVNProperties readProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File propertiesFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProps String name java.util.Map basePropsCache public void saveVersionedProperties (org.tmatesoft.svn.core.internal.wc.admin.SVNLog, boolean) throws org.tmatesoft.svn.core.SVNException int i String presentPropsString String tmpPath java.io.File tmpFile String srcPath org.tmatesoft.svn.core.internal.wc.SVNWCProperties tmpProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties propsDiff String[] cachableProps org.tmatesoft.svn.core.SVNProperties propsMap java.util.LinkedList presentProps boolean hasPropModifications String dstPath String name org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props java.util.Iterator entries int i String presentPropsString String workingPropsPath org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String[] cachableProps org.tmatesoft.svn.core.SVNProperties propsMap java.util.LinkedList presentProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties propsDiff boolean hasPropModifications String tmpPath java.io.File tmpFile String srcPath org.tmatesoft.svn.core.internal.wc.SVNWCProperties tmpProps String dstPath boolean isEntryProcessed String name org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProps java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNLog log boolean close org.tmatesoft.svn.core.SVNProperties command java.util.Set processedEntries java.util.Map propsCache java.util.Map basePropsCache public void installProperties (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, boolean, boolean) throws org.tmatesoft.svn.core.SVNException int i String presentPropsString String tmpPath java.io.File tmpFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties tmpProps String tmpPath java.io.File tmpFile org.tmatesoft.svn.core.internal.wc.SVNWCProperties tmpProps String basePath String name org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties workingProps org.tmatesoft.svn.core.internal.wc.admin.SVNLog log boolean writeBaseProps boolean close org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.SVNProperties propDiff boolean hasPropMods String[] cachableProps java.util.LinkedList presentProps String dstPath public void handleKillMe () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryInParent java.util.Map attributes String contents boolean killAdmOnly org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry long dirRevision java.io.File dir org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access boolean isWCRoot org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry boolean killMe public void saveEntries (boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File tmpFile boolean renamed java.io.Writer os org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File tmpFile java.io.Writer os org.tmatesoft.svn.core.internal.wc.admin.SVNEntry rootEntry String reposURL String url boolean close protected java.util.Map fetchEntries () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne int entryNumber org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNNodeKind kind java.util.Iterator entriesIter java.util.Map entries java.io.BufferedReader reader org.tmatesoft.svn.core.internal.wc.admin.SVNEntry defaultEntry protected org.tmatesoft.svn.core.internal.wc.admin.SVNEntry readEntry (java.io.BufferedReader, int) throws java.io.IOException org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNNodeKind parsedKind long rev NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long rev NumberFormatException nfe String[] cachableProps String[] presentProps long rev NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err java.io.BufferedReader reader int entryNumber String line String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String kind String revision String url String reposRoot String schedule String timestamp String checksum String committedDate String committedRevision String committedAuthor boolean hasProps boolean hasPropMods String cachablePropsStr String presentPropsStr String prejFile String conflictOldFile String conflictNewFile String conflictWorkFile boolean isCopied String copyfromURL String copyfromRevision boolean isDeleted boolean isAbsent boolean isIncomplete String uuid String lockToken String lockOwner String lockComment String lockCreationDate protected boolean isEntryFinished (java.lang.String) String line protected boolean parseBoolean (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String line String field protected java.lang.String parseString (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err int escapedByte String line int fromIndex int ind StringBuffer buffer String escapedString protected java.lang.String parseValue (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String line public java.lang.String getThisDirName () protected boolean readExtraOptions (java.io.BufferedReader, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException java.io.IOException java.io.BufferedReader reader org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry protected void writeEntries (java.io.Writer) throws java.io.IOException org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNNodeKind kind java.util.Iterator entries java.io.Writer writer org.tmatesoft.svn.core.internal.wc.admin.SVNEntry rootEntry java.util.List names private void writeEntry (java.io.Writer, java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws java.io.IOException org.tmatesoft.svn.core.SVNException String expectedURL String thisDirRoot String thisDirCachableProps String thisDirUUID java.io.Writer writer String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry rootEntry boolean isThisDir boolean isSubDir int emptyFields String kind long revision String url String root String schedule String textTime String checksum String committedDate long committedRevision String committedAuthor boolean hasProps boolean hasPropsMods String cachableProps String presentProps String propRejectFile String conflictOldFile String conflictNewFile String conflictWrkFile boolean copiedAttr String copyfromURL long copyfromRevision boolean deletedAttr boolean absentAttr boolean incompleteAttr String uuid String lockToken String lockOwner String lockComment String lockCreationDate protected int writeExtraOptions (java.io.Writer, java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, int) throws org.tmatesoft.svn.core.SVNException java.io.IOException java.io.Writer writer String entryName org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry int emptyFields protected boolean writeString (java.io.Writer, java.lang.String, int) throws java.io.IOException int i char ch int i java.io.Writer writer String str int emptyFields protected boolean writeValue (java.io.Writer, java.lang.String, int) throws java.io.IOException int i java.io.Writer writer String val int emptyFields protected boolean writeTime (java.io.Writer, java.lang.String, int) throws java.io.IOException int i long time java.io.Writer writer String val int emptyFields protected boolean writeRevision (java.io.Writer, long, int) throws java.io.IOException int i java.io.Writer writer long revValue int emptyFields public boolean hasPropModifications (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public boolean hasProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public boolean lock () throws org.tmatesoft.svn.core.SVNException public boolean lock (boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err boolean stealLock boolean created public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea createVersionedDirectory (java.io.File, java.lang.String, java.lang.String, java.lang.String, long, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.io.File dir String url String rootURL String uuid long revNumber boolean createMyself org.tmatesoft.svn.core.SVNDepth depth java.io.File adminDir java.io.File lockFile java.io.File[] tmp org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry rootEntry protected org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties formatBaseProperties (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties srcProperties org.tmatesoft.svn.core.SVNProperties props protected org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties formatProperties (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNProperties srcProperties org.tmatesoft.svn.core.SVNProperties props private void makeKillMe (boolean) throws org.tmatesoft.svn.core.SVNException boolean killAdminOnly java.io.File killMe public void postCommit (java.lang.String, long, boolean, boolean, org.tmatesoft.svn.core.SVNErrorCode) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File killMe org.tmatesoft.svn.core.internal.wc.admin.SVNEntry fileEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry currentEntry java.util.Iterator ents java.io.File workingFile String tmpFile2Path org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.io.File tmpFile2 boolean modified java.io.File workingFile long tmpTimestamp long wkTimestamp java.io.File tmpFile org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties propDiff boolean overwritten org.tmatesoft.svn.core.internal.wc.SVNFileType fileType boolean special boolean needsReadonly boolean needsExecutable org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.io.File tmpFile java.io.File baseFile java.io.File wcFile java.io.File tmpFile2 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String fileName long revisionNumber boolean implicit boolean rerun org.tmatesoft.svn.core.SVNErrorCode errorCode org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry long fileLength long textTime boolean setReadWrite boolean setNotExecutable org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties wcProps java.io.File tmpPropsFile java.io.File wcPropsFile java.io.File basePropertiesFile org.tmatesoft.svn.core.internal.wc.SVNFileType tmpPropsType java.util.Map entryAttrs java.io.File dirFile boolean unassociated org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea parentArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryInParent public boolean unlock () throws org.tmatesoft.svn.core.SVNException java.io.File log int i org.tmatesoft.svn.core.SVNErrorMessage err boolean killMe java.io.File[] logs boolean deleted public boolean isVersioned () org.tmatesoft.svn.core.SVNException e public boolean isLocked () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNFileType type org.tmatesoft.svn.core.SVNErrorMessage err public boolean hasTreeConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription getTreeConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name public void addTreeConflict (org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNTreeConflictDescription conflict org.tmatesoft.svn.core.SVNErrorMessage err public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription deleteTreeConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNErrorMessage err public void setFileExternalLocation (java.lang.String, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNURL reposRootURL org.tmatesoft.svn.core.SVNErrorMessage err public int getFormatVersion () protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea createAdminAreaForDir (java.io.File) java.io.File dir protected boolean isEntryPropertyApplicable (java.lang.String) String propName static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/admin/SVNEntry.class
SVNEntry.java package org.tmatesoft.svn.core.internal.wc.admin public abstract org.tmatesoft.svn.core.internal.wc.admin.SVNEntry extends java.lang.Object { private String myName private String author private String[] cachableProperties private String changelistName private String checksum private org.tmatesoft.svn.core.internal.util.SVNDate committedDate private long committedRevision private String conflictNew private String conflictOld private String conflictWorking private long copyFromRevision private String copyFromURL private org.tmatesoft.svn.core.SVNDepth depth private String externalFilePath private org.tmatesoft.svn.core.wc.SVNRevision externalFilePegRevision private org.tmatesoft.svn.core.wc.SVNRevision externalFileRevision private org.tmatesoft.svn.core.SVNNodeKind kind private String lockComment private org.tmatesoft.svn.core.internal.util.SVNDate lockCreationDate private String lockOwner private String lockToken private String[] presentProperties private String propRejectFile private org.tmatesoft.svn.core.internal.util.SVNDate propTime private String repositoryRoot private long revision private String schedule private org.tmatesoft.svn.core.internal.util.SVNDate textTime private String treeConflictData private String url private String uuid private long workingSize private boolean absent private boolean copied private boolean deleted private boolean incomplete private boolean keepLocal private boolean hasProperties private boolean hasPropertiesModifications private String parentURL public void <init> () public abstract boolean isThisDir () public abstract org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getAdminArea () public java.lang.String getURL () public org.tmatesoft.svn.core.SVNURL getSVNURL () throws org.tmatesoft.svn.core.SVNException String url public java.lang.String getName () public boolean isDirectory () public long getRevision () public boolean isScheduledForAddition () public boolean isScheduledForDeletion () public boolean isScheduledForReplacement () public boolean isHidden () public boolean isFile () public java.lang.String getLockToken () public boolean isDeleted () public boolean isAbsent () public java.lang.String toString () public boolean setRevision (long) long revision boolean changed public boolean setCommittedRevision (long) long cmtRevision boolean changed public boolean setAuthor (java.lang.String) String cmtAuthor boolean changed public boolean setChangelistName (java.lang.String) String changelistName boolean changed public java.lang.String getChangelistName () public boolean setWorkingSize (long) long size boolean changed public long getWorkingSize () public org.tmatesoft.svn.core.SVNDepth getDepth () public void setDepth (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth public boolean setURL (java.lang.String) String url boolean changed public void setIncomplete (boolean) boolean incomplete public boolean isIncomplete () public java.lang.String getConflictOld () public void setConflictOld (java.lang.String) String name public java.lang.String getConflictNew () public void setConflictNew (java.lang.String) String name public java.lang.String getConflictWorking () public void setConflictWorking (java.lang.String) String name public java.lang.String getPropRejectFile () public void setPropRejectFile (java.lang.String) String name public java.lang.String getAuthor () public void setCommittedDate (java.lang.String) String date public java.lang.String getCommittedDate () public long getCommittedRevision () public void setTextTime (java.lang.String) String time public void setKind (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind kind public void setAbsent (boolean) boolean absent public void setDeleted (boolean) boolean deleted public org.tmatesoft.svn.core.SVNNodeKind getKind () public java.lang.String getTextTime () public java.lang.String getChecksum () public void setChecksum (java.lang.String) String checksum public void setLockComment (java.lang.String) String comment public void setLockOwner (java.lang.String) String owner public void setLockCreationDate (java.lang.String) String date public void setLockToken (java.lang.String) String token public void setUUID (java.lang.String) String uuid public void unschedule () public void scheduleForAddition () public void scheduleForDeletion () public void scheduleForReplacement () public void setSchedule (java.lang.String) String schedule public void setCopyFromRevision (long) long revision public boolean setCopyFromURL (java.lang.String) String url boolean changed public void setCopied (boolean) boolean copied public java.lang.String getCopyFromURL () public org.tmatesoft.svn.core.SVNURL getCopyFromSVNURL () throws org.tmatesoft.svn.core.SVNException String url public long getCopyFromRevision () public java.lang.String getPropTime () public void setPropTime (java.lang.String) String time public boolean isCopied () public java.lang.String getUUID () public java.lang.String getRepositoryRoot () public org.tmatesoft.svn.core.SVNURL getRepositoryRootURL () throws org.tmatesoft.svn.core.SVNException String url public boolean setRepositoryRoot (java.lang.String) String url boolean changed public boolean setRepositoryRootURL (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public java.lang.String getLockOwner () public java.lang.String getLockComment () public java.lang.String getLockCreationDate () public java.lang.String getSchedule () public void setCachableProperties (java.lang.String[]) String[] cachableProps public void setPresentProperties (java.lang.String[]) String[] properties public void setKeepLocal (boolean) boolean keepLocal public boolean isKeepLocal () public java.lang.String[] getCachableProperties () public java.lang.String[] getPresentProperties () public java.lang.String getExternalFilePath () public org.tmatesoft.svn.core.wc.SVNRevision getExternalFileRevision () public org.tmatesoft.svn.core.wc.SVNRevision getExternalFilePegRevision () public void setExternalFilePath (java.lang.String) String path public void setExternalFileRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision rev public void setExternalFilePegRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision pegRev public java.lang.String getTreeConflictData () public abstract java.util.Map getTreeConflicts () throws org.tmatesoft.svn.core.SVNException public void setTreeConflictData (java.lang.String) String conflictData public void setTreeConflicts (java.util.Map) throws org.tmatesoft.svn.core.SVNException java.util.Map treeConflicts String conflictData public void setHasProperties (boolean) boolean hasProps public void setHasPropertiesModifications (boolean) boolean hasPropsMods public boolean hasPropertiesModifications () public boolean hasProperties () public void setParentURL (java.lang.String) String url public void setName (java.lang.String) String name public void applyChanges (java.util.Map) String name java.util.Iterator names java.util.Map attributes private void setAttribute (java.lang.String, java.lang.Object) org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.SVNNodeKind kind String name Object value public java.util.Map asMap () java.util.Map map }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminAreaInfo.class
SVNAdminAreaInfo.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaInfo extends java.lang.Object { private String myTargetName private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea myTarget private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea myAnchor private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess myAccess private java.util.Map myNewExternals private java.util.Map myOldExternals private java.util.Map myDepths private java.util.Set myIncompleteEntries private boolean myIsEnableIncompleteTrick public void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String) org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea anchor org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea target String targetName public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getAnchor () public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getTarget () public void setTarget (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea target public void setAnchor (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea anchor public java.lang.String getTargetName () public org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess getWCAccess () public void setWCAccess (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void addOldExternal (java.lang.String, java.lang.String) String path String oldValue public void addNewExternal (java.lang.String, java.lang.String) String path String newValue public void addExternal (java.lang.String, java.lang.String, java.lang.String) String path String oldValue String newValue public void addDepth (java.lang.String, org.tmatesoft.svn.core.SVNDepth) String path org.tmatesoft.svn.core.SVNDepth depth public void removeDepth (java.lang.String) String path public void removeExternal (java.lang.String) String path public java.util.Map getNewExternals () public java.util.Map getOldExternals () public java.util.Map getDepths () public void addIncompleteEntry (java.lang.String) String path public boolean isIncomplete (java.lang.String) String path }
org/tmatesoft/svn/core/internal/wc/admin/SVNTranslator.class
SVNTranslator.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNTranslator extends java.lang.Object { private static final java.nio.charset.Charset UTF8_CHARSET public void <init> () public static java.lang.String translateString (java.lang.String, byte[], java.util.Map, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.IOException e String str byte[] eol java.util.Map keywords boolean repair boolean expand java.io.ByteArrayOutputStream bufferOS java.io.OutputStream resultOS public static void translate (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name String srcPath String dstPath boolean expand public static void translate (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.lang.String, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name String srcPath String dstPath boolean safelyEncode boolean expand public static void translate (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name String srcPath String dstPath String customEOLStyle boolean expand public static void translate (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.io.File, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name java.io.File src java.io.File dst boolean expand public static void translate (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.io.File, java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name java.io.File src java.io.File dst boolean safelyEncode boolean expand public static void translate (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.io.File, java.io.File, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name java.io.File src java.io.File dst String customEOLStyle boolean expand public static void translate (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.io.File, java.io.File, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String url String author String date String rev byte[] eols java.io.File tmp org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name java.io.File src java.io.File dst String customEOLStyle boolean safelyEncode boolean expand org.tmatesoft.svn.core.wc.ISVNOptions options org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String keywords String mimeType String charset String eolStyle boolean special java.util.Map keywordsMap byte[] eols public static void translate (java.io.File, java.io.File, java.lang.String, byte[], java.util.Map, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.IOException e java.io.File src java.io.File dst String charset byte[] eol java.util.Map keywords boolean special boolean expand java.io.OutputStream os java.io.OutputStream tos java.io.InputStream is public static java.io.InputStream getTranslatedStream (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e String linkPath java.io.ByteArrayOutputStream os org.tmatesoft.svn.core.SVNErrorMessage err java.util.Map keywordsMap boolean repair byte[] eol org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String url String author String date String rev java.util.Map keywordsMap org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name boolean translateToNormalForm boolean repairEOL org.tmatesoft.svn.core.wc.ISVNOptions options org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String mimeType String charset String eolStyle String keywords boolean special java.io.File src boolean translationRequired public static java.io.File getTranslatedFile (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String url String author String date String rev java.util.Map keywordsMap org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String name java.io.File src boolean forceEOLRepair boolean useGlobalTmp boolean forceCopy boolean toNormalFormat org.tmatesoft.svn.core.wc.ISVNOptions options org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String mimeType String charset String eolStyle String keywords boolean special boolean needsTranslation java.io.File result public static java.io.File maybeUpdateTargetEOLs (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.io.File, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.ISVNOptions options byte[] eol java.io.File tmpFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir java.io.File target org.tmatesoft.svn.core.SVNProperties propDiff String eolStyle public static java.io.File detranslateWorkingCopy (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File tmpFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir String name org.tmatesoft.svn.core.SVNProperties propDiff boolean force org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props boolean isLocalBinary String mimeType String charsetProp String eolStyle String keywords boolean isSpecial boolean isRemoteHasBinary boolean isRemoteBinaryRemoved boolean isRemoteBinary java.io.File detranslatedFile org.tmatesoft.svn.core.wc.ISVNOptions options String charset private static void translateToNormalForm (java.io.File, java.io.File, java.lang.String, java.lang.String, boolean, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File source java.io.File destination String charset String eolStyle boolean alwaysRepairEOLs String keywords boolean isSpecial byte[] eol java.util.Map keywordsMap boolean repair public static void copyAndTranslate (java.io.File, java.io.File, java.lang.String, byte[], java.util.Map, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNFileType type java.io.IOException ioe java.io.IOException ioe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ew java.io.IOException e java.io.IOException ioe java.io.IOException ioe java.io.IOException ioe java.io.IOException ioe java.io.File source java.io.File destination String charset byte[] eol java.util.Map keywords boolean special boolean expand boolean repair boolean isSpecialPath java.io.OutputStream dst java.io.InputStream src java.io.OutputStream translatingStream private static void checkWrappedException (java.io.IOException, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ew java.io.IOException ioe java.io.File file public static boolean checkNewLines (java.io.File) int r byte[] lastFoundEOL byte[] currentEOL java.io.IOException e org.tmatesoft.svn.core.SVNException e java.io.File file java.io.InputStream is public static void copy (java.io.InputStream, java.io.OutputStream) throws java.io.IOException int read java.io.InputStream src java.io.OutputStream dst byte[] buffer public static java.io.OutputStream getTranslatingOutputStream (java.io.OutputStream, java.lang.String, byte[], boolean, java.util.Map, boolean) byte[] convertedEOL boolean encodingConvertsEOL byte[] convertedEOL boolean encodingConvertsEOL java.io.OutputStream out String charset byte[] eol boolean repair java.util.Map keywords boolean expand java.nio.charset.Charset cs byte[] lf public static java.io.InputStream getTranslatingInputStream (java.io.InputStream, java.lang.String, byte[], boolean, java.util.Map, boolean) byte[] convertedEOL boolean encodingConvertsEOL byte[] convertedEOL boolean charsetConvertsEOL java.io.InputStream in String charset byte[] eol boolean repair java.util.Map keywords boolean expand java.nio.charset.Charset cs byte[] lf private static byte[] convertEOL (byte[], java.nio.charset.Charset, java.nio.charset.Charset) byte[] eol java.nio.charset.Charset from java.nio.charset.Charset to java.nio.ByteBuffer byteBuffer java.nio.CharBuffer charBuffer java.nio.ByteBuffer resultBuffer byte[] result public static java.util.Map computeKeywords (java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.wc.ISVNOptions) java.io.ByteArrayOutputStream bos java.io.ByteArrayOutputStream bos String token java.util.StringTokenizer tokens java.io.IOException e String keywords String u String a String d String r org.tmatesoft.svn.core.wc.ISVNOptions options boolean expand byte[] date byte[] idDate byte[] url byte[] rev byte[] author byte[] name byte[] id byte[] header java.util.Date jDate java.util.Map map public static byte[] getEOL (java.lang.String, org.tmatesoft.svn.core.wc.ISVNOptions) String eolStyle org.tmatesoft.svn.core.wc.ISVNOptions options public static byte[] getBaseEOL (java.lang.String) String eolStyle public static java.lang.String getCharset (java.lang.String, java.lang.String, java.lang.Object, org.tmatesoft.svn.core.wc.ISVNOptions) throws org.tmatesoft.svn.core.SVNException java.nio.charset.IllegalCharsetNameException e String charset String mimeType Object path org.tmatesoft.svn.core.wc.ISVNOptions options boolean isSupported private static java.lang.String getGlobalCharset (org.tmatesoft.svn.core.wc.ISVNOptions, java.lang.String) org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions defaults org.tmatesoft.svn.core.wc.ISVNOptions options String mimeType public static void translationError (java.io.File, java.io.IOException) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper wrapper org.tmatesoft.svn.core.SVNException wrappedException java.io.File path java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage error Throwable cause static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/admin/SVNXMLAdminAreaFactory.class
SVNXMLAdminAreaFactory.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNXMLAdminAreaFactory extends org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory { public static final int WC_FORMAT public void <init> () protected void doCreateVersionedDirectory (java.io.File, java.lang.String, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File path String url String rootURL String uuid long revNumber org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.admin.SVNXMLAdminArea adminArea protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea doOpen (java.io.File, int) throws org.tmatesoft.svn.core.SVNException java.io.File path int version protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea doChangeWCFormat (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNXMLAdminArea newAdminArea public int getSupportedVersion () protected int doCheckWC (java.io.File, java.util.logging.Level) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.SVNFileType type org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException e java.io.File path java.util.logging.Level logLevel java.io.File adminDir java.io.File formatFile int formatVersion java.io.BufferedReader reader String line protected int getVersion (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err1 org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err1 NumberFormatException nfe java.io.File path java.io.File adminDir java.io.File formatFile java.io.BufferedReader reader String line int formatVersion }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminArea$2.class
SVNAdminArea.java package org.tmatesoft.svn.core.internal.wc.admin org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea$2 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler { final synthetic boolean val$writeLock final synthetic org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea this$0 void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, boolean) public void handleEntry (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area org.tmatesoft.svn.core.SVNException svne java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public void handleError (java.io.File, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminAreaFactory.class
SVNAdminAreaFactory.java package org.tmatesoft.svn.core.internal.wc.admin public abstract org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory extends java.lang.Object implements java.lang.Comparable { public static final int WC_FORMAT_13 public static final int WC_FORMAT_14 public static final int WC_FORMAT_15 public static final int WC_FORMAT_16 private static final java.util.Collection ourFactories private static boolean ourIsUpgradeEnabled private static org.tmatesoft.svn.core.internal.wc.admin.ISVNAdminAreaFactorySelector ourSelector private static org.tmatesoft.svn.core.internal.wc.admin.ISVNAdminAreaFactorySelector ourDefaultSelector public void <init> () public static void setUpgradeEnabled (boolean) boolean enabled public static boolean isUpgradeEnabled () public static void setSelector (org.tmatesoft.svn.core.internal.wc.admin.ISVNAdminAreaFactorySelector) org.tmatesoft.svn.core.internal.wc.admin.ISVNAdminAreaFactorySelector selector public static org.tmatesoft.svn.core.internal.wc.admin.ISVNAdminAreaFactorySelector getSelector () public static int checkWC (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean useSelector public static int checkWC (java.io.File, boolean, java.util.logging.Level) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory factory java.util.Iterator factories java.io.File path boolean useSelector java.util.logging.Level logLevel java.util.Collection enabledFactories org.tmatesoft.svn.core.SVNErrorMessage error int version public static org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea open (java.io.File, java.util.logging.Level) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory factory org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea java.util.Iterator factories java.io.File path java.util.logging.Level logLevel org.tmatesoft.svn.core.SVNErrorMessage error int wcFormatVersion java.util.Collection enabledFactories java.io.File adminDir public static org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea upgrade (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory newestFactory org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea newArea java.util.Collection enabledFactories org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea area public static org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea changeWCFormat (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea int format org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory factory org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea newArea private static org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory getAdminAreaFactory (int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory nextFactory java.util.Iterator ourFactoriesIter int wcFormat private static int readFormatVersion (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory factory java.util.Iterator factories java.io.File adminDir org.tmatesoft.svn.core.SVNErrorMessage error int version java.util.Collection enabledFactories public static void createVersionedDirectory (java.io.File, java.lang.String, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory newestFactory java.util.Collection enabledFactories java.io.File path String url String rootURL String uuid long revNumber org.tmatesoft.svn.core.SVNDepth depth public static void createVersionedDirectory (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL rootURL String uuid long revNumber org.tmatesoft.svn.core.SVNDepth depth private static boolean checkAdminAreaExists (java.io.File, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File dir String url long revision java.io.File adminDir boolean wcExists public abstract int getSupportedVersion () protected abstract int getVersion (java.io.File) throws org.tmatesoft.svn.core.SVNException protected abstract org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea doOpen (java.io.File, int) throws org.tmatesoft.svn.core.SVNException protected abstract org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea doChangeWCFormat (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException protected abstract void doCreateVersionedDirectory (java.io.File, java.lang.String, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException protected abstract int doCheckWC (java.io.File, java.util.logging.Level) throws org.tmatesoft.svn.core.SVNException protected static void registerFactory (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory factory public int compareTo (java.lang.Object) Object o int version private static void registerFactories () static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/admin/SVNProperties14.class
SVNProperties14.java package org.tmatesoft.svn.core.internal.wc.admin public abstract org.tmatesoft.svn.core.internal.wc.admin.SVNProperties14 extends org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties { private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14 myAdminArea private String myEntryName public void <init> (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14, java.lang.String) org.tmatesoft.svn.core.SVNProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14 adminArea String entryName public boolean containsProperty (java.lang.String) throws org.tmatesoft.svn.core.SVNException String[] presentProps org.tmatesoft.svn.core.SVNProperties props String name org.tmatesoft.svn.core.SVNProperties propsMap org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String[] cachableProps public org.tmatesoft.svn.core.SVNPropertyValue getPropertyValue (java.lang.String) throws org.tmatesoft.svn.core.SVNException String[] presentProps String[] cachableProps String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNProperties props private int getIndex (java.lang.String[], java.lang.String) int i String[] array String element protected org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties wrap (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties properties }
org/tmatesoft/svn/core/internal/wc/admin/SVNLogImpl.class
SVNLogImpl.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNLogImpl extends org.tmatesoft.svn.core.internal.wc.admin.SVNLog { private java.io.File myFile private java.io.File myTmpFile public void <init> (java.io.File, java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) java.io.File logFile java.io.File tmpFile org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public void save () throws org.tmatesoft.svn.core.SVNException String attr org.tmatesoft.svn.core.SVNPropertyValue value String str java.util.Iterator attrs org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.SVNPropertyValue name java.util.Iterator commands org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.Writer os java.io.File tmpFile public java.util.Collection readCommands () throws org.tmatesoft.svn.core.SVNException String attrName String value int index String line org.tmatesoft.svn.core.SVNProperties attrs String name org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.BufferedReader reader java.util.Collection commands public java.lang.String toString () public void delete () throws org.tmatesoft.svn.core.SVNException public boolean exists () }
org/tmatesoft/svn/core/internal/wc/admin/SVNEntry16.class
SVNEntry16.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNEntry16 extends org.tmatesoft.svn.core.internal.wc.admin.SVNEntry { private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea myAdminArea public void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name public void <init> (java.util.Map, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String) java.util.Map attributes org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name public boolean isThisDir () public java.util.Map getTreeConflicts () throws org.tmatesoft.svn.core.SVNException String conflictData public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getAdminArea () }
org/tmatesoft/svn/core/internal/wc/admin/SVNLogRunner.class
SVNLogRunner.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNLogRunner extends java.lang.Object { private boolean myIsEntriesChanged private boolean myIsWCPropertiesChanged private java.util.Map myTreeConflicts private boolean myHasAddedTreeConflicts private int myLogCount private boolean myIsRerun public void <init> (boolean) boolean rerun private java.util.Map getTreeConflicts () public void runCommand (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, java.lang.String, org.tmatesoft.svn.core.SVNProperties, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e java.io.File path org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea dir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String attrName String value java.util.Iterator attrtibutesIter java.io.File file String value org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String value org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNErrorMessage err SecurityException se org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File file String workingSize String forceAttr org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.util.Map entryAttrs boolean force org.tmatesoft.svn.core.SVNException svne String propName org.tmatesoft.svn.core.SVNPropertyValue propValue org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties wcprops org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.util.Map entryAttrs org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne java.io.File file java.io.File file org.tmatesoft.svn.core.SVNException svne java.io.File src java.io.File dst int r org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNException svne java.io.File src java.io.File dst java.io.OutputStream os java.io.InputStream is org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNErrorMessage err java.util.Date time org.tmatesoft.svn.core.SVNException svne java.io.File file String timestamp org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException e org.tmatesoft.svn.core.SVNErrorMessage err int number org.tmatesoft.svn.core.SVNException svne String format org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String needsLock org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNException svne java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props boolean executable org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props boolean executable org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNException svne String dstName String versionedName java.io.File src java.io.File dst org.tmatesoft.svn.core.SVNException svne String dstName String versionedName org.tmatesoft.svn.core.SVNException svne java.io.File src java.io.File dst java.io.File dirPath String conflictData java.util.Map newConflicts Object[] conflictArray org.tmatesoft.svn.core.wc.SVNTreeConflictDescription newConflict org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorCode code String leftPath String rightPath String leftLabel String rightLabel String targetLabel org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.wc.SVNStatusType mergeResult org.tmatesoft.svn.core.SVNException svne java.io.File target org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe boolean implicit long revisionNumber org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea String name org.tmatesoft.svn.core.SVNProperties attributes int count org.tmatesoft.svn.core.SVNException error String fileName private void setTreeConflictsAdded (boolean) boolean added private void setEntriesChanged (boolean) boolean modified private void setWCPropertiesChanged (boolean) boolean modified private void saveTreeConflicts (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorCode errorCode org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea java.util.Map attributes String conflictData public void logStarted (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dirEntry java.util.Map currentConflicts public void logFailed (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public void logCompleted (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminArea16Factory.class
SVNAdminArea16Factory.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea16Factory extends org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14Factory { public static final int WC_FORMAT public void <init> () protected void doCreateVersionedDirectory (java.io.File, java.lang.String, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File path String url String rootURL String uuid long revNumber org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea doOpen (java.io.File, int) throws org.tmatesoft.svn.core.SVNException java.io.File path int version protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea doChangeWCFormat (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea16 newAdminArea public int getSupportedVersion () }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminArea15.class
SVNAdminArea15.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea15 extends org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea14 { public static final int WC_FORMAT protected static final String ATTRIBUTE_KEEP_LOCAL private static final java.util.Set INAPPLICABLE_PROPERTIES public void <init> (java.io.File) java.io.File dir public int getFormatVersion () protected boolean readExtraOptions (java.io.BufferedReader, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException java.io.IOException long size NumberFormatException nfe org.tmatesoft.svn.core.SVNDepth depth java.io.BufferedReader reader org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String line String changelist boolean keepLocal String workingSize String depthStr protected int writeExtraOptions (java.io.Writer, java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, int) throws org.tmatesoft.svn.core.SVNException java.io.IOException java.io.Writer writer String entryName org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry int emptyFields String changelist boolean keepLocalAttr long size String workingSize boolean isThisDir boolean isSubDir org.tmatesoft.svn.core.SVNDepth depth protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea createAdminAreaForDir (java.io.File) java.io.File dir protected boolean isEntryPropertyApplicable (java.lang.String) String propName static void <clinit> () }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminAreaFactory$DefaultSelector.class
SVNAdminAreaFactory.java package org.tmatesoft.svn.core.internal.wc.admin org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory$DefaultSelector extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.admin.ISVNAdminAreaFactorySelector { private void <init> () public java.util.Collection getEnabledFactories (java.io.File, java.util.Collection, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path java.util.Collection factories boolean writeAccess synthetic void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory$1) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory$1 x0 }
org/tmatesoft/svn/core/internal/wc/admin/SVNLog.class
SVNLog.java package org.tmatesoft.svn.core.internal.wc.admin public abstract org.tmatesoft.svn.core.internal.wc.admin.SVNLog extends java.lang.Object { public static final String DELETE_CHANGELIST public static final String DELETE_ENTRY public static final String MODIFY_ENTRY public static final String MODIFY_WC_PROPERTY public static final String DELETE_LOCK public static final String MOVE public static final String APPEND public static final String DELETE public static final String READONLY public static final String COPY_AND_TRANSLATE public static final String COPY_AND_DETRANSLATE public static final String COPY public static final String MERGE public static final String MAYBE_READONLY public static final String MAYBE_EXECUTABLE public static final String SET_TIMESTAMP public static final String COMMIT public static final String UPGRADE_FORMAT public static final String ADD_TREE_CONFLICT public static final String NAME_ATTR public static final String DATA_ATTR public static final String PROPERTY_NAME_ATTR public static final String PROPERTY_VALUE_ATTR public static final String DEST_ATTR public static final String TIMESTAMP_ATTR public static final String REVISION_ATTR public static final String FORMAT_ATTR public static final String FORCE_ATTR public static final String ATTR1 public static final String ATTR2 public static final String ATTR3 public static final String ATTR4 public static final String ATTR5 public static final String ATTR6 public static final String WC_TIMESTAMP public static final String WC_WORKING_SIZE protected java.util.Collection myCache protected org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea myAdminArea public abstract void save () throws org.tmatesoft.svn.core.SVNException public abstract java.lang.String toString () public abstract void delete () throws org.tmatesoft.svn.core.SVNException public abstract boolean exists () protected void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea public void addCommand (java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNProperties attributes boolean save public void deleteCommandsByName (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException Object command org.tmatesoft.svn.core.SVNProperties attributes String commandName java.util.Iterator iterator String name boolean save public void deleteLastCommand (boolean) throws org.tmatesoft.svn.core.SVNException java.util.Iterator iterator boolean save int size int commandIdex public void deleteCommandsByNameAndAttributes (java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean) throws org.tmatesoft.svn.core.SVNException Object command org.tmatesoft.svn.core.SVNProperties commandAttributes String commandName org.tmatesoft.svn.core.SVNProperties commandAttributesWithoutName java.util.Iterator iterator String name org.tmatesoft.svn.core.SVNProperties attributes boolean save public org.tmatesoft.svn.core.wc.SVNStatusType logChangedEntryProperties (java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties deleteLockCommand String propName org.tmatesoft.svn.core.SVNPropertyValue propValue String longPropName java.util.Iterator names org.tmatesoft.svn.core.SVNProperties command String name org.tmatesoft.svn.core.SVNProperties modifiedEntryProps org.tmatesoft.svn.core.wc.SVNStatusType status public void logChangedWCProperties (java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator names org.tmatesoft.svn.core.SVNProperties command String name org.tmatesoft.svn.core.SVNProperties modifiedWCProps public void logTweakEntry (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String name String newURL long newRevision org.tmatesoft.svn.core.SVNProperties attributes public void logRemoveRevertFile (java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties command String name org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea boolean isProp String revertPath java.io.File revertFile public void run (org.tmatesoft.svn.core.internal.wc.admin.SVNLogRunner) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorCode code org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNProperties command String name String attrName java.util.Iterator cmds int count org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.SVNPropertyValue name java.util.Iterator cmds org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNLogRunner runner java.util.Collection commands protected abstract java.util.Collection readCommands () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/admin/ISVNCleanupHandler.class
ISVNCleanupHandler.java package org.tmatesoft.svn.core.internal.wc.admin public abstract org.tmatesoft.svn.core.internal.wc.admin.ISVNCleanupHandler extends java.lang.Object { public abstract void cleanup (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/internal/wc/admin/SVNTranslatorOutputStream.class
SVNTranslatorOutputStream.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNTranslatorOutputStream extends java.io.OutputStream { private org.tmatesoft.svn.core.internal.wc.SVNSubstitutor mySubstitutor private java.io.OutputStream myDst private java.nio.ByteBuffer mySrcBuffer private java.nio.ByteBuffer myDstBuffer public void <init> (java.io.OutputStream, byte[], boolean, java.util.Map, boolean) java.io.OutputStream dst byte[] eol boolean repair java.util.Map keywords boolean expand public void write (byte[], int, int) throws java.io.IOException org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper wrappedException org.tmatesoft.svn.core.SVNException svne byte[] b int off int len public void flush () throws java.io.IOException org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper wrappedException org.tmatesoft.svn.core.SVNException svne public void close () throws java.io.IOException public void write (byte[]) throws java.io.IOException byte[] b public void write (int) throws java.io.IOException int b private static java.nio.ByteBuffer write (java.nio.ByteBuffer, byte[], int, int) java.nio.ByteBuffer newDst java.nio.ByteBuffer dst byte[] bytes int offset int length }
org/tmatesoft/svn/core/internal/wc/admin/SVNAdminArea.class
SVNAdminArea.java package org.tmatesoft.svn.core.internal.wc.admin public abstract org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea extends java.lang.Object { protected static final String ADM_KILLME private static volatile boolean ourIsCleanupSafe protected java.util.Map myBaseProperties protected java.util.Map myProperties protected java.util.Map myWCProperties protected java.util.Map myEntries protected boolean myWasLocked private org.tmatesoft.svn.core.wc.ISVNCommitParameters myCommitParameters private java.util.Map myRevertProperties private java.io.File myDirectory private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess myWCAccess private java.io.File myAdminRoot private int myWCFormatVersion public static synchronized void setSafeCleanup (boolean) boolean safe public static synchronized boolean isSafeCleanup () public abstract boolean isLocked () throws org.tmatesoft.svn.core.SVNException public abstract boolean isVersioned () protected abstract boolean isEntryPropertyApplicable (java.lang.String) public abstract boolean lock (boolean) throws org.tmatesoft.svn.core.SVNException public abstract boolean unlock () throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties getBaseProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties getRevertProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties getWCProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties getProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void saveVersionedProperties (org.tmatesoft.svn.core.internal.wc.admin.SVNLog, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void installProperties (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, boolean, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void saveWCProperties (boolean) throws org.tmatesoft.svn.core.SVNException public abstract void saveEntries (boolean) throws org.tmatesoft.svn.core.SVNException public abstract java.lang.String getThisDirName () public abstract boolean hasPropModifications (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract boolean hasProperties (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea createVersionedDirectory (java.io.File, java.lang.String, java.lang.String, java.lang.String, long, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException public abstract void postCommit (java.lang.String, long, boolean, boolean, org.tmatesoft.svn.core.SVNErrorCode) throws org.tmatesoft.svn.core.SVNException public abstract void handleKillMe () throws org.tmatesoft.svn.core.SVNException public abstract boolean hasTreeConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc.SVNTreeConflictDescription getTreeConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void addTreeConflict (org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc.SVNTreeConflictDescription deleteTreeConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void setFileExternalLocation (java.lang.String, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException public abstract int getFormatVersion () public void updateURL (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String childURL org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator ents String rootURL boolean recursive org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public boolean hasTextModifications (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String name boolean forceComparision public boolean hasTextModifications (java.lang.String, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne long textTimeAsLong long tstamp String textTime boolean compare java.util.Map attributes String name boolean forceComparison boolean compareTextBase boolean compareChecksum java.io.File textFile org.tmatesoft.svn.core.internal.wc.SVNFileType fileType org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File baseFile boolean differs public boolean hasVersionedFileTextChanges (java.io.File, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file java.io.File baseFile boolean compareTextBase public java.lang.String getRelativePath (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea anchor String absoluteAnchor String ownAbsolutePath String relativePath public boolean tweakEntry (java.lang.String, java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.wc.admin.SVNEntry childEntry java.util.Iterator entries boolean setReposRoot String name String newURL String reposRoot long newRevision boolean remove boolean rewrite org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public boolean isKillMe () public boolean markResolved (java.lang.String, boolean, boolean, org.tmatesoft.svn.core.wc.SVNConflictChoice) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.DefaultSVNMerger defaultMerger String conflictOld String conflictNew String conflictWorking org.tmatesoft.svn.core.wc.ISVNMergerFactory factory java.io.File conflictOldFile java.io.File conflictNewFile java.io.File conflictWorkingFile byte[] conflictStart byte[] conflictEnd byte[] separator org.tmatesoft.svn.core.wc.ISVNMerger merger org.tmatesoft.svn.core.internal.wc.SVNDiffConflictChoiceStyle style org.tmatesoft.svn.core.wc.SVNMergeFileSet mergeFileSet String localLabel String baseLabel String latestLabel org.tmatesoft.svn.core.SVNErrorMessage err java.io.File file java.io.File file java.io.File file java.io.File file String name boolean text boolean props org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String autoResolveSource java.io.File autoResolveSourceFile boolean removeSource boolean filesDeleted boolean updateEntry public void restoreFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException long tstamp String name org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean special java.io.File src java.io.File dst boolean executable boolean needsLock long tstamp public org.tmatesoft.svn.core.wc.SVNStatusType mergeProperties (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, java.lang.String, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.internal.wc.admin.SVNLog) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNProperties serverBaseProps org.tmatesoft.svn.core.SVNProperties propDiff String localLabel String latestLabel boolean baseMerge boolean dryRun org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties working org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties base public org.tmatesoft.svn.core.wc.SVNStatusType mergeProperties (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, java.lang.String, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.internal.wc.admin.SVNLog) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNProperties serverBaseProps org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties workingProps org.tmatesoft.svn.core.SVNProperties propDiff String localLabel String latestLabel boolean baseMerge boolean dryRun org.tmatesoft.svn.core.internal.wc.admin.SVNLog log byte[] conflictStart byte[] conflictEnd byte[] separator org.tmatesoft.svn.core.wc.ISVNMergerFactory factory org.tmatesoft.svn.core.wc.ISVNMerger merger org.tmatesoft.svn.core.wc.SVNMergeResult result public org.tmatesoft.svn.core.wc.SVNStatusType mergeText (java.lang.String, java.io.File, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean, org.tmatesoft.svn.core.wc.SVNDiffOptions, org.tmatesoft.svn.core.internal.wc.admin.SVNLog) throws org.tmatesoft.svn.core.SVNException String copyFromTextPath String thisPath String localPath java.io.File base java.io.File latest java.io.File copyFromText String localLabel String baseLabel String latestLabel org.tmatesoft.svn.core.SVNProperties propChanges boolean dryRun org.tmatesoft.svn.core.wc.SVNDiffOptions options org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean saveLog org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties props String mimeType byte[] conflictStart byte[] conflictEnd byte[] separator org.tmatesoft.svn.core.wc.ISVNMergerFactory factory org.tmatesoft.svn.core.wc.ISVNMerger merger String workingText java.io.File tmpTarget java.io.File resultFile org.tmatesoft.svn.core.wc.SVNMergeFileSet mergeFileSet org.tmatesoft.svn.core.wc.SVNMergeResult mergeResult public java.io.InputStream getBaseFileForReading (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException String name boolean tmp String path java.io.File baseFile public java.io.OutputStream getBaseFileForWriting (java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.OutputStream os org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne String name String fileName java.io.File tmpFile public java.lang.String getPropertyTime (java.lang.String) String name String path java.io.File file public org.tmatesoft.svn.core.internal.wc.admin.SVNLog getLog () int index java.io.File logFile java.io.File tmpFile public void runLogs () throws org.tmatesoft.svn.core.SVNException public void runLogs (boolean) throws org.tmatesoft.svn.core.SVNException java.io.File logFile Throwable e int i boolean rerun org.tmatesoft.svn.core.internal.wc.admin.SVNLogRunner runner int index org.tmatesoft.svn.core.internal.wc.admin.SVNLog log java.io.File[] logsFiles public void removeFromRevisionControl (java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.File path boolean wcSpecial boolean localSpecial boolean textModified org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea entryArea org.tmatesoft.svn.core.SVNException e java.io.File entryPath org.tmatesoft.svn.core.internal.wc.admin.SVNEntry nextEntry String entryName java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dirEntryInParent org.tmatesoft.svn.core.internal.wc.admin.SVNEntry dirEntry org.tmatesoft.svn.core.SVNErrorMessage err String name boolean deleteWorkingFiles boolean reportInstantError boolean isFile boolean leftSomething org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public void extendLockToTree () throws org.tmatesoft.svn.core.SVNException boolean writeLock org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler entryHandler public void foldScheduling (java.lang.String, java.util.Map, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String name java.util.Map attributes boolean force String schedule org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry thisDirEntry public org.tmatesoft.svn.core.internal.wc.admin.SVNEntry modifyEntry (java.lang.String, java.util.Map, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryBefore org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entryAfter String attName java.util.Iterator atts org.tmatesoft.svn.core.internal.wc.admin.SVNEntry rootEntry String name java.util.Map attributes boolean save boolean force boolean deleted org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public void deleteEntry (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name java.util.Map entries public org.tmatesoft.svn.core.internal.wc.admin.SVNEntry getEntry (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry String name boolean hidden java.util.Map entries public org.tmatesoft.svn.core.internal.wc.admin.SVNEntry getVersionedEntry (java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String name boolean hidden org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public org.tmatesoft.svn.core.internal.wc.admin.SVNEntry addEntry (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name java.util.Map entries org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public java.util.Iterator entries (boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator iterator boolean hidden java.util.Map entries java.util.List copy public java.util.Map getEntries () throws org.tmatesoft.svn.core.SVNException public void cleanup () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea child org.tmatesoft.svn.core.SVNException e java.io.File childDir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator entries public boolean hasTextConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry boolean conflicted public boolean hasPropConflict (java.lang.String) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public java.io.File getRoot () public java.io.File getAdminTempDirectory () public java.io.File getAdminDirectory () public java.io.File getAdminFile (java.lang.String) String name public java.io.File getFile (java.lang.String) String name public org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess getWCAccess () public void setWCAccess (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void closeVersionedProperties () public void closeWCProperties () public void closeEntries () public java.io.File getBaseFile (java.lang.String, boolean) String name boolean tmp String path public int getWorkingCopyFormatVersion () public void setWorkingCopyFormatVersion (int) int wcFormatVersion public void close () protected abstract void writeEntries (java.io.Writer) throws java.io.IOException org.tmatesoft.svn.core.SVNException protected abstract java.util.Map fetchEntries () throws org.tmatesoft.svn.core.SVNException protected abstract boolean readExtraOptions (java.io.BufferedReader, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException java.io.IOException protected abstract int writeExtraOptions (java.io.Writer, java.lang.String, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, int) throws org.tmatesoft.svn.core.SVNException java.io.IOException protected void <init> (java.io.File) java.io.File dir public java.io.File getBasePropertiesFile (java.lang.String, boolean) String name boolean tmp String path java.io.File propertiesFile public java.io.File getRevertPropertiesFile (java.lang.String, boolean) String name boolean tmp String path java.io.File propertiesFile public java.io.File getPropertiesFile (java.lang.String, boolean) String name boolean tmp String path java.io.File propertiesFile protected java.util.Map loadEntries () throws org.tmatesoft.svn.core.SVNException protected java.util.Map getBasePropertiesStorage (boolean) boolean create protected java.util.Map getRevertPropertiesStorage (boolean) boolean create protected java.util.Map getPropertiesStorage (boolean) boolean create protected java.util.Map getWCPropertiesStorage (boolean) boolean create public static java.lang.String asString (java.lang.String[], java.lang.String) int i String[] array String delimiter String str public static java.lang.String[] fromString (java.lang.String, java.lang.String) String str String delimiter java.util.LinkedList list int startInd int ind public void commit (java.lang.String, org.tmatesoft.svn.core.SVNCommitInfo, org.tmatesoft.svn.core.SVNProperties, boolean, boolean, boolean, java.util.Collection, org.tmatesoft.svn.core.wc.ISVNCommitParameters) throws org.tmatesoft.svn.core.SVNException java.io.File committedFile org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File baseFile org.tmatesoft.svn.core.internal.wc.SVNFileType baseType String propName org.tmatesoft.svn.core.SVNPropertyValue propValue java.util.Iterator propNames java.io.File childPath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childDir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry parentEntry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator ents String target org.tmatesoft.svn.core.SVNCommitInfo info org.tmatesoft.svn.core.SVNProperties wcPropChanges boolean removeLock boolean recursive boolean removeChangelist java.util.Collection explicitCommitPaths org.tmatesoft.svn.core.wc.ISVNCommitParameters params org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea anchor String path org.tmatesoft.svn.core.internal.wc.admin.SVNLog log String checksum org.tmatesoft.svn.core.SVNProperties command public void walkThisDirectory (org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea childArea org.tmatesoft.svn.core.SVNDepth depthBelowHere org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.io.File childPath java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.ISVNEntryHandler handler boolean showHidden org.tmatesoft.svn.core.SVNDepth depth java.io.File thisDir org.tmatesoft.svn.core.internal.wc.admin.SVNEntry thisEntry public void setCommitParameters (org.tmatesoft.svn.core.wc.ISVNCommitParameters) org.tmatesoft.svn.core.wc.ISVNCommitParameters commitParameters protected void setLocked (boolean) boolean locked private void destroyAdminArea () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err private static void markLogProcessed (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File logFile java.io.OutputStream os private boolean compareAndVerify (java.io.File, java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.util.Map keywordsMap byte[] eols org.tmatesoft.svn.core.SVNErrorMessage err String linkPath String symlinkContents java.util.Map keywordsMap byte[] eols int i int r1 int r2 java.io.IOException e java.io.File pathToTranslate byte[] buffer1 byte[] buffer2 java.io.InputStream baseStream java.io.InputStream textStream org.tmatesoft.svn.core.SVNErrorMessage err java.io.File text java.io.File baseFile boolean compareTextBase boolean checksum org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties versionedProperties String charsetProp String mimeType String charset String eolStyle String keywords boolean special boolean needsTranslation org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream checksumStream org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry private static void resolveDefaults (java.util.Map) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String name org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry java.util.Iterator names java.util.Map entries org.tmatesoft.svn.core.internal.wc.admin.SVNEntry defaultEntry protected abstract org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties formatBaseProperties (org.tmatesoft.svn.core.SVNProperties) protected abstract org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties formatProperties (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.SVNProperties) protected void createFormatFile (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File formatFile boolean createMyself java.io.OutputStream os public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea formatWC (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNEntry newEntry org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties srcBaseProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties dstBaseProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties srcProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties dstProps org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties wcProps java.util.Iterator entries org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea java.io.File logFile org.tmatesoft.svn.core.internal.wc.SVNFileType type org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.SVNProperties command java.util.Map basePropsCache java.util.Map propsCache private void handleCharsetProperty (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry, org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNWCProperties propFile java.io.File tmpBaseFile String tmpBasePath org.tmatesoft.svn.core.internal.wc.SVNWCProperties propFile java.io.File detranslatedFile String detranslatedPath java.io.File tmpCharsetPropFile String tmpCharsetPropPath org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.internal.wc.admin.SVNVersionedProperties baseProps org.tmatesoft.svn.core.SVNProperties command org.tmatesoft.svn.core.SVNPropertyValue charsetProp String mimeType String currentCharset private void handlePropTime (org.tmatesoft.svn.core.internal.wc.admin.SVNLog, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.admin.SVNLog log org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNProperties command public void postUpgradeFormat (int) throws org.tmatesoft.svn.core.SVNException int format org.tmatesoft.svn.core.SVNErrorMessage err protected org.tmatesoft.svn.core.internal.util.SVNHashMap createEntryHashMap (java.util.Map) java.util.Map map public org.tmatesoft.svn.core.internal.wc.SVNObjectsPool getObjectsPool () }
org/tmatesoft/svn/core/internal/wc/admin/SVNChecksumInputStream.class
SVNChecksumInputStream.java package org.tmatesoft.svn.core.internal.wc.admin public org.tmatesoft.svn.core.internal.wc.admin.SVNChecksumInputStream extends java.security.DigestInputStream { public static final String MD5_ALGORITHM private static byte[] ourDirtyBuffer public void <init> (java.io.InputStream, java.lang.String) java.security.NoSuchAlgorithmException e java.io.InputStream source String algorithm public void close () throws java.io.IOException int r public java.lang.String getDigest () static void <clinit> () }
org/tmatesoft/svn/core/io/
org/tmatesoft/svn/core/io/SVNRepository$2.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$2 extends java.lang.Object implements java.util.Comparator { final synthetic org.tmatesoft.svn.core.io.SVNRepository this$0 void <init> (org.tmatesoft.svn.core.io.SVNRepository) public int compare (java.lang.Object, java.lang.Object) Object o1 Object o2 org.tmatesoft.svn.core.io.SVNLocationSegment segment1 org.tmatesoft.svn.core.io.SVNLocationSegment segment2 }
org/tmatesoft/svn/core/io/ISVNFileCheckoutTarget.class
ISVNFileCheckoutTarget.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNFileCheckoutTarget extends java.lang.Object { public abstract java.io.OutputStream getOutputStream (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void filePropertyChanged (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/io/SVNFileCheckoutEditor.class
SVNFileCheckoutEditor.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNFileCheckoutEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNEditor { private org.tmatesoft.svn.core.io.ISVNFileCheckoutTarget myTarget private org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor myDeltaProcessor public void <init> (org.tmatesoft.svn.core.io.ISVNFileCheckoutTarget) org.tmatesoft.svn.core.io.ISVNFileCheckoutTarget target public void abortEdit () throws org.tmatesoft.svn.core.SVNException public void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path public void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path String copyFromPath long copyFromRevision public void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue value public void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException String path String name org.tmatesoft.svn.core.SVNPropertyValue value public void closeDir () throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String textChecksum public void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException String path long revision public void openRoot (long) throws org.tmatesoft.svn.core.SVNException long revision public void targetRevision (long) throws org.tmatesoft.svn.core.SVNException long revision public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path }
org/tmatesoft/svn/core/io/ISVNLocationEntryHandler.class
ISVNLocationEntryHandler.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNLocationEntryHandler extends java.lang.Object { public abstract void handleLocationEntry (org.tmatesoft.svn.core.io.SVNLocationEntry) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/io/ISVNLocationSegmentHandler.class
ISVNLocationSegmentHandler.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler extends java.lang.Object { public abstract void handleLocationSegment (org.tmatesoft.svn.core.io.SVNLocationSegment) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/io/ISVNSession.class
ISVNSession.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNSession extends java.lang.Object { public static final org.tmatesoft.svn.core.io.ISVNSession KEEP_ALIVE public static final org.tmatesoft.svn.core.io.ISVNSession DEFAULT public abstract boolean keepConnection (org.tmatesoft.svn.core.io.SVNRepository) public abstract void saveCommitMessage (org.tmatesoft.svn.core.io.SVNRepository, long, java.lang.String) public abstract java.lang.String getCommitMessage (org.tmatesoft.svn.core.io.SVNRepository, long) public abstract boolean hasCommitMessage (org.tmatesoft.svn.core.io.SVNRepository, long) static void <clinit> () }
org/tmatesoft/svn/core/io/ISVNDeltaConsumer.class
ISVNDeltaConsumer.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNDeltaConsumer extends java.lang.Object { public abstract void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException public abstract void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/io/SVNRepository$9.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$9 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { final synthetic long val$lastRev final synthetic java.util.List val$pathsList final synthetic org.tmatesoft.svn.core.io.SVNRepository this$0 void <init> (org.tmatesoft.svn.core.io.SVNRepository, long, java.util.List) public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException String path java.util.Iterator ps org.tmatesoft.svn.core.io.ISVNReporter reporter }
org/tmatesoft/svn/core/io/SVNRepository$Revision.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$Revision extends java.lang.Object { String myPath long myRevision org.tmatesoft.svn.core.SVNProperties myProperties private void <init> () synthetic void <init> (org.tmatesoft.svn.core.io.SVNRepository$1) org.tmatesoft.svn.core.io.SVNRepository$1 x0 }
org/tmatesoft/svn/core/io/SVNRepository$4.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$4 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNDirEntryHandler { final synthetic java.util.Collection val$result final synthetic org.tmatesoft.svn.core.io.SVNRepository this$0 void <init> (org.tmatesoft.svn.core.io.SVNRepository, java.util.Collection) public void handleDirEntry (org.tmatesoft.svn.core.SVNDirEntry) org.tmatesoft.svn.core.SVNDirEntry dirEntry }
org/tmatesoft/svn/core/io/SVNRepositoryFactory.class
SVNRepositoryFactory.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.SVNRepositoryFactory extends java.lang.Object { private static final java.util.Map myFactoriesMap private static final String REPOSITORY_TEMPLATE_PATH public void <init> () protected static void registerRepositoryFactory (java.lang.String, org.tmatesoft.svn.core.io.SVNRepositoryFactory) String protocol org.tmatesoft.svn.core.io.SVNRepositoryFactory factory protected static boolean hasRepositoryFactory (java.lang.String) String protocol public static org.tmatesoft.svn.core.io.SVNRepository create (org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url public static org.tmatesoft.svn.core.io.SVNRepository create (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.ISVNSession) throws org.tmatesoft.svn.core.SVNException String key java.util.Iterator keys org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.io.ISVNSession options String urlString org.tmatesoft.svn.core.SVNErrorMessage err public static org.tmatesoft.svn.core.SVNURL createLocalRepository (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean enableRevisionProperties boolean force public static org.tmatesoft.svn.core.SVNURL createLocalRepository (java.io.File, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path String uuid boolean enableRevisionProperties boolean force public static org.tmatesoft.svn.core.SVNURL createLocalRepository (java.io.File, java.lang.String, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path String uuid boolean enableRevisionProperties boolean force boolean pre14Compatible public static org.tmatesoft.svn.core.SVNURL createLocalRepository (java.io.File, java.lang.String, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path String uuid boolean enableRevisionProperties boolean force boolean pre14Compatible boolean pre15Compatible public static org.tmatesoft.svn.core.SVNURL createLocalRepository (java.io.File, java.lang.String, boolean, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path String uuid boolean enableRevisionProperties boolean force boolean pre14Compatible boolean pre15Compatible boolean pre16Compatible public static org.tmatesoft.svn.core.SVNURL createLocalRepository (java.io.File, java.lang.String, boolean, boolean, boolean, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File[] children org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File hookFile java.io.OutputStream os org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File hookFile java.io.OutputStream os byte[] uuidBytes org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e String format org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File reposFormatFile String format org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File fsFormatFile java.io.File davSandboxDir java.io.File currentTxnLockFile java.io.File revFileBefore java.io.File tmpFile java.io.File shardRevDir java.io.File revFileAfter java.io.File revPropFileBefore java.io.File shardRevPropDir java.io.File revPropFileAfter String format org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File fsFormatFile org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File minUnpackedFile org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.File txnCurrentFile java.io.File protoRevsDir java.io.File repCacheFile java.io.File minUnpackedRevPropFile java.io.File revPropFile org.tmatesoft.svn.core.internal.db.SVNSqlJetDb revPropDb java.io.File uuidFile int fsFormat long maxFilesPerDir String currentFileLine java.io.File currentFile java.io.File rev0File String date java.util.Map props java.io.File path String uuid boolean enableRevisionProperties boolean force boolean pre14Compatible boolean pre15Compatible boolean pre16Compatible boolean pre17Compatible boolean with17Compatible org.tmatesoft.svn.core.internal.wc.SVNFileType fType java.io.File root java.io.InputStream is java.io.File jarFile java.io.OutputStream uuidOS java.io.OutputStream reposFormatOS java.io.OutputStream fsFormatOS java.io.OutputStream txnCurrentOS java.io.OutputStream minUnpacledOS java.io.OutputStream currentOS protected abstract org.tmatesoft.svn.core.io.SVNRepository createRepositoryImpl (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.ISVNSession) private static void copyToFile (java.io.InputStream, java.io.File) throws org.tmatesoft.svn.core.SVNException int r org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.InputStream is java.io.File dstFile java.io.OutputStream os byte[] buffer private static void extract (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException int r java.io.InputStream fis java.io.OutputStream fos java.util.jar.JarEntry entry String name java.io.File entryFile java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.IOException e java.io.IOException e java.io.File srcFile java.io.File dst java.util.jar.JarInputStream jis java.io.InputStream is byte[] buffer java.util.jar.JarFile jarFile private static void translateFiles (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File child java.io.File tmpChild int i java.io.File directory java.io.File[] children byte[] eol private static void setSGID (java.io.File) java.io.File child int i java.io.File dbDir java.io.File[] dirContents static void <clinit> () }
org/tmatesoft/svn/core/io/ISVNReplayHandler.class
ISVNReplayHandler.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNReplayHandler extends java.lang.Object { public abstract org.tmatesoft.svn.core.io.ISVNEditor handleStartRevision (long, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException public abstract void handleEndRevision (long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/io/ISVNTunnelProvider.class
ISVNTunnelProvider.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNTunnelProvider extends java.lang.Object { public abstract org.tmatesoft.svn.core.internal.io.svn.ISVNConnector createTunnelConnector (org.tmatesoft.svn.core.SVNURL) }
org/tmatesoft/svn/core/io/SVNRepository$6.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$6 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLocationEntryHandler { final synthetic java.util.Collection val$result final synthetic org.tmatesoft.svn.core.io.SVNRepository this$0 void <init> (org.tmatesoft.svn.core.io.SVNRepository, java.util.Collection) public void handleLocationEntry (org.tmatesoft.svn.core.io.SVNLocationEntry) org.tmatesoft.svn.core.io.SVNLocationEntry locationEntry }
org/tmatesoft/svn/core/io/SVNRepository$5.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$5 extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { final synthetic java.util.Collection val$result final synthetic org.tmatesoft.svn.core.io.SVNRepository this$0 void <init> (org.tmatesoft.svn.core.io.SVNRepository, java.util.Collection) public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) org.tmatesoft.svn.core.SVNLogEntry logEntry }
org/tmatesoft/svn/core/io/SVNRepository$DeletedRevisionLogHandler.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$DeletedRevisionLogHandler extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { private String myPath private long myDeletedRevision public void <init> (java.lang.String) String path public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLogEntryPath change java.util.Iterator changedPathsIter org.tmatesoft.svn.core.SVNLogEntry logEntry java.util.Map changedPaths public long getDeletedRevision () }
org/tmatesoft/svn/core/io/ISVNSession$1.class
ISVNSession.java package org.tmatesoft.svn.core.io final org.tmatesoft.svn.core.io.ISVNSession$1 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNSession { void <init> () public boolean keepConnection (org.tmatesoft.svn.core.io.SVNRepository) org.tmatesoft.svn.core.io.SVNRepository repository public void saveCommitMessage (org.tmatesoft.svn.core.io.SVNRepository, long, java.lang.String) org.tmatesoft.svn.core.io.SVNRepository repository long revision String message public java.lang.String getCommitMessage (org.tmatesoft.svn.core.io.SVNRepository, long) org.tmatesoft.svn.core.io.SVNRepository repository long revision public boolean hasCommitMessage (org.tmatesoft.svn.core.io.SVNRepository, long) org.tmatesoft.svn.core.io.SVNRepository repository long revision }
org/tmatesoft/svn/core/io/ISVNReporterBaton.class
ISVNReporterBaton.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNReporterBaton extends java.lang.Object { public abstract void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/io/SVNFileRevision.class
SVNFileRevision.java package org.tmatesoft.svn.core.io public org.tmatesoft.svn.core.io.SVNFileRevision extends java.lang.Object implements java.lang.Comparable { private String myPath private long myRevision private org.tmatesoft.svn.core.SVNProperties myProperties private org.tmatesoft.svn.core.SVNProperties myPropertiesDelta private boolean myIsResultOfMerge public void <init> (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties) String path long revision org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.SVNProperties propertiesDelta public void <init> (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean) String path long revision org.tmatesoft.svn.core.SVNProperties properties org.tmatesoft.svn.core.SVNProperties propertiesDelta boolean isResultOfMerge public java.lang.String getPath () public org.tmatesoft.svn.core.SVNProperties getProperties () public org.tmatesoft.svn.core.SVNProperties getRevisionProperties () public org.tmatesoft.svn.core.SVNProperties getPropertiesDelta () public long getRevision () public int compareTo (java.lang.Object) Object o org.tmatesoft.svn.core.io.SVNFileRevision rev long number public boolean isResultOfMerge () }
org/tmatesoft/svn/core/io/SVNLocationEntry.class
SVNLocationEntry.java package org.tmatesoft.svn.core.io public org.tmatesoft.svn.core.io.SVNLocationEntry extends java.lang.Object { private long myRevision private String myPath private boolean myIsResultOfMerge private java.util.Map myMergedMergeInfo public void <init> (long, java.lang.String) long revision String path public void <init> (long, java.lang.String, boolean, java.util.Map) long revision String path boolean isResultOfMerge java.util.Map mergedMergeInfo public java.lang.String getPath () public long getRevision () public boolean isResultOfMerge () public java.util.Map getMergedMergeInfo () }
org/tmatesoft/svn/core/io/SVNRepository$8.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$8 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReporterBaton { final synthetic long val$lastRev final synthetic org.tmatesoft.svn.core.SVNDepth val$reporterDepth final synthetic org.tmatesoft.svn.core.io.SVNRepository this$0 void <init> (org.tmatesoft.svn.core.io.SVNRepository, long, org.tmatesoft.svn.core.SVNDepth) public void report (org.tmatesoft.svn.core.io.ISVNReporter) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.ISVNReporter reporter }
org/tmatesoft/svn/core/io/ISVNLockHandler.class
ISVNLockHandler.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNLockHandler extends java.lang.Object { public abstract void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException public abstract void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/io/SVNRepository$LocationSegmentsLogHandler.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$LocationSegmentsLogHandler extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { boolean myIsDone String myLastPath org.tmatesoft.svn.core.SVNNodeKind myNodeKind long myCount long myStartRevision long myRangeEnd org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler myHandler public void <init> (org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, long, org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler) org.tmatesoft.svn.core.SVNNodeKind kind String lastPath long startRev org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler handler public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry long[] copyFromRevision String prevPath public void maybeCropAndSendSegment (java.lang.String, long, long, long, org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler) throws org.tmatesoft.svn.core.SVNException String path long startRevision long rangeStart long rangeEnd org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler handler long segmentRangeStart long segmentRangeEnd }
org/tmatesoft/svn/core/io/ISVNConnectionListener.class
ISVNConnectionListener.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNConnectionListener extends java.lang.Object { public abstract void connectionOpened (org.tmatesoft.svn.core.io.SVNRepository) public abstract void connectionClosed (org.tmatesoft.svn.core.io.SVNRepository) }
org/tmatesoft/svn/core/io/ISVNReporter.class
ISVNReporter.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNReporter extends java.lang.Object { public abstract void setPath (java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void setPath (java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void deletePath (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void linkPath (org.tmatesoft.svn.core.SVNURL, java.lang.String, java.lang.String, long, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void finishReport () throws org.tmatesoft.svn.core.SVNException public abstract void abortReport () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/io/SVNRepository.class
SVNRepository.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.SVNRepository extends java.lang.Object { public static final long INVALID_REVISION protected String myRepositoryUUID protected org.tmatesoft.svn.core.SVNURL myRepositoryRoot protected org.tmatesoft.svn.core.SVNURL myLocation private int myLockCount private Thread myLocker private org.tmatesoft.svn.core.auth.ISVNAuthenticationManager myAuthManager private org.tmatesoft.svn.core.io.ISVNSession myOptions private org.tmatesoft.svn.core.io.ISVNTunnelProvider myTunnelProvider private org.tmatesoft.svn.util.ISVNDebugLog myDebugLog private org.tmatesoft.svn.core.ISVNCanceller myCanceller private java.util.Collection myConnectionListeners protected void <init> (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.io.ISVNSession) org.tmatesoft.svn.core.SVNURL location org.tmatesoft.svn.core.io.ISVNSession options public org.tmatesoft.svn.core.SVNURL getLocation () public void setLocation (org.tmatesoft.svn.core.SVNURL, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNURL url boolean forceReconnect public java.lang.String getRepositoryUUID () org.tmatesoft.svn.core.SVNException e public java.lang.String getRepositoryUUID (boolean) throws org.tmatesoft.svn.core.SVNException boolean forceConnection public org.tmatesoft.svn.core.SVNURL getRepositoryRoot () org.tmatesoft.svn.core.SVNException e public org.tmatesoft.svn.core.SVNURL getRepositoryRoot (boolean) throws org.tmatesoft.svn.core.SVNException boolean forceConnection public void setAuthenticationManager (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager public org.tmatesoft.svn.core.auth.ISVNAuthenticationManager getAuthenticationManager () public void setTunnelProvider (org.tmatesoft.svn.core.io.ISVNTunnelProvider) org.tmatesoft.svn.core.io.ISVNTunnelProvider tunnelProvider public org.tmatesoft.svn.core.io.ISVNTunnelProvider getTunnelProvider () public void setCanceller (org.tmatesoft.svn.core.ISVNCanceller) org.tmatesoft.svn.core.ISVNCanceller canceller public org.tmatesoft.svn.core.ISVNCanceller getCanceller () protected void setRepositoryCredentials (java.lang.String, org.tmatesoft.svn.core.SVNURL) String uuid org.tmatesoft.svn.core.SVNURL rootURL public abstract void testConnection () throws org.tmatesoft.svn.core.SVNException public abstract long getLatestRevision () throws org.tmatesoft.svn.core.SVNException public abstract long getDatedRevision (java.util.Date) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNProperties getRevisionProperties (long, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException public abstract void setRevisionPropertyValue (long, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNPropertyValue getRevisionPropertyValue (long, java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNNodeKind checkPath (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException public abstract long getFile (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException public abstract long getDir (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException public abstract long getDir (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, int, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException public int getFileRevisions (java.lang.String, long, long, org.tmatesoft.svn.core.io.ISVNFileRevisionHandler) throws org.tmatesoft.svn.core.SVNException String path long startRevision long endRevision org.tmatesoft.svn.core.io.ISVNFileRevisionHandler handler public int getFileRevisions (java.lang.String, long, long, boolean, org.tmatesoft.svn.core.io.ISVNFileRevisionHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String path long startRevision long endRevision boolean includeMergedRevisions org.tmatesoft.svn.core.io.ISVNFileRevisionHandler handler public void assertServerIsMergeInfoCapable (java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL sessionURL org.tmatesoft.svn.core.SVNErrorMessage err String pathOrURL boolean isMergeInfoCapable public long log (java.lang.String[], long, long, boolean, boolean, org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException String[] targetPaths long startRevision long endRevision boolean changedPath boolean strictNode org.tmatesoft.svn.core.ISVNLogEntryHandler handler public long log (java.lang.String[], long, long, boolean, boolean, long, org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException String[] targetPaths long startRevision long endRevision boolean changedPath boolean strictNode long limit org.tmatesoft.svn.core.ISVNLogEntryHandler handler public long log (java.lang.String[], long, long, boolean, boolean, long, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException String[] targetPaths long startRevision long endRevision boolean discoverChangedPaths boolean strictNodeHistory long limit boolean includeMergedRevisions String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler public int getLocations (java.lang.String, long, long[], org.tmatesoft.svn.core.io.ISVNLocationEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String path long pegRevision long[] revisions org.tmatesoft.svn.core.io.ISVNLocationEntryHandler handler public long getLocationSegments (java.lang.String, long, long, long, org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne String path long pegRevision long startRevision long endRevision org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler handler public java.util.List getLocationSegments (java.lang.String, long, long, long) throws org.tmatesoft.svn.core.SVNException String path long pegRevision long startRevision long endRevision java.util.List result public java.util.Collection getFileRevisions (java.lang.String, java.util.Collection, long, long) throws org.tmatesoft.svn.core.SVNException String path java.util.Collection revisions long sRevision long eRevision java.util.Collection result org.tmatesoft.svn.core.io.ISVNFileRevisionHandler handler public java.util.Collection getDir (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, java.util.Collection) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.SVNProperties properties java.util.Collection dirEntries public java.util.Collection getDir (java.lang.String, long, org.tmatesoft.svn.core.SVNProperties, int, java.util.Collection) throws org.tmatesoft.svn.core.SVNException String path long revision org.tmatesoft.svn.core.SVNProperties properties int entryFields java.util.Collection dirEntries java.util.Collection result org.tmatesoft.svn.core.ISVNDirEntryHandler handler public abstract org.tmatesoft.svn.core.SVNDirEntry getDir (java.lang.String, long, boolean, java.util.Collection) throws org.tmatesoft.svn.core.SVNException public java.util.Collection log (java.lang.String[], java.util.Collection, long, long, boolean, boolean) throws org.tmatesoft.svn.core.SVNException String[] targetPaths java.util.Collection entries long startRevision long endRevision boolean changedPath boolean strictNode java.util.Collection result public java.util.Collection getLocations (java.lang.String, java.util.Collection, long, long[]) throws org.tmatesoft.svn.core.SVNException String path java.util.Collection entries long pegRevision long[] revisions java.util.Collection result public java.util.Map getLocations (java.lang.String, java.util.Map, long, long[]) throws org.tmatesoft.svn.core.SVNException String path java.util.Map entries long pegRevision long[] revisions java.util.Map result public void diff (org.tmatesoft.svn.core.SVNURL, long, long, java.lang.String, boolean, boolean, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url long targetRevision long revision String target boolean ignoreAncestry boolean recursive boolean getContents org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public abstract void diff (org.tmatesoft.svn.core.SVNURL, long, long, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException public void diff (org.tmatesoft.svn.core.SVNURL, long, long, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url long targetRevision long revision String target boolean ignoreAncestry boolean recursive org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public void diff (org.tmatesoft.svn.core.SVNURL, long, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url long revision String target boolean ignoreAncestry boolean recursive org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public void update (org.tmatesoft.svn.core.SVNURL, long, java.lang.String, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url long revision String target boolean recursive org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public abstract void update (org.tmatesoft.svn.core.SVNURL, long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException public void update (long, java.lang.String, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException long revision String target boolean recursive org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public abstract void update (long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException public void status (long, java.lang.String, boolean, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException long revision String target boolean recursive org.tmatesoft.svn.core.io.ISVNReporterBaton reporter org.tmatesoft.svn.core.io.ISVNEditor editor public abstract void status (long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNReporterBaton, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException public void checkout (long, java.lang.String, boolean, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException long revision String target boolean recursive org.tmatesoft.svn.core.io.ISVNEditor editor public void checkout (long, java.lang.String, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long revision String target org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.io.ISVNEditor editor long lastRev org.tmatesoft.svn.core.SVNNodeKind nodeKind org.tmatesoft.svn.core.SVNDepth reporterDepth public void checkoutFiles (long, java.lang.String[], org.tmatesoft.svn.core.io.ISVNFileCheckoutTarget) throws org.tmatesoft.svn.core.SVNException long revision String[] paths org.tmatesoft.svn.core.io.ISVNFileCheckoutTarget fileCheckoutHandler long lastRev java.util.List pathsList org.tmatesoft.svn.core.io.ISVNReporterBaton reporterBaton public abstract void replay (long, long, boolean, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException public void replayRange (long, long, long, boolean, org.tmatesoft.svn.core.io.ISVNReplayHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNProperties revProps org.tmatesoft.svn.core.io.ISVNEditor editor long rev org.tmatesoft.svn.core.SVNException svne long startRevision long endRevision long lowRevision boolean sendDeltas org.tmatesoft.svn.core.io.ISVNReplayHandler handler public org.tmatesoft.svn.core.io.ISVNEditor getCommitEditor (java.lang.String, org.tmatesoft.svn.core.io.ISVNWorkspaceMediator) throws org.tmatesoft.svn.core.SVNException String logMessage org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator public abstract org.tmatesoft.svn.core.SVNDirEntry info (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.io.ISVNEditor getCommitEditor (java.lang.String, java.util.Map, boolean, org.tmatesoft.svn.core.io.ISVNWorkspaceMediator) throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.io.ISVNEditor getCommitEditor (java.lang.String, java.util.Map, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.io.ISVNWorkspaceMediator) throws org.tmatesoft.svn.core.SVNException String logMessage java.util.Map locks boolean keepLocks org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.io.ISVNWorkspaceMediator mediator protected abstract org.tmatesoft.svn.core.io.ISVNEditor getCommitEditorInternal (java.util.Map, boolean, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.io.ISVNWorkspaceMediator) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNLock getLock (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNLock[] getLocks (java.lang.String) throws org.tmatesoft.svn.core.SVNException public java.util.Map getMergeInfo (java.lang.String[], long, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean) throws org.tmatesoft.svn.core.SVNException String[] paths long revision org.tmatesoft.svn.core.SVNMergeInfoInheritance inherit boolean includeDescendants public abstract void lock (java.util.Map, java.lang.String, boolean, org.tmatesoft.svn.core.io.ISVNLockHandler) throws org.tmatesoft.svn.core.SVNException public abstract void unlock (java.util.Map, boolean, org.tmatesoft.svn.core.io.ISVNLockHandler) throws org.tmatesoft.svn.core.SVNException public abstract void closeSession () public abstract boolean hasCapability (org.tmatesoft.svn.core.io.SVNCapability) throws org.tmatesoft.svn.core.SVNException public org.tmatesoft.svn.core.io.ISVNSession getOptions () public void addConnectionListener (org.tmatesoft.svn.core.io.ISVNConnectionListener) org.tmatesoft.svn.core.io.ISVNConnectionListener listener public void removeConnectionListener (org.tmatesoft.svn.core.io.ISVNConnectionListener) org.tmatesoft.svn.core.io.ISVNConnectionListener listener public long getDeletedRevision (java.lang.String, long, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorCode errCode org.tmatesoft.svn.core.SVNException svne String path long pegRevision long endRevision String repositoryPath protected abstract long getDeletedRevisionImpl (java.lang.String, long, long) throws org.tmatesoft.svn.core.SVNException protected abstract long getLocationSegmentsImpl (java.lang.String, long, long, long, org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler) throws org.tmatesoft.svn.core.SVNException protected abstract int getLocationsImpl (java.lang.String, long, long[], org.tmatesoft.svn.core.io.ISVNLocationEntryHandler) throws org.tmatesoft.svn.core.SVNException protected abstract long logImpl (java.lang.String[], long, long, boolean, boolean, long, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException protected abstract int getFileRevisionsImpl (java.lang.String, long, long, boolean, org.tmatesoft.svn.core.io.ISVNFileRevisionHandler) throws org.tmatesoft.svn.core.SVNException protected abstract java.util.Map getMergeInfoImpl (java.lang.String[], long, org.tmatesoft.svn.core.SVNMergeInfoInheritance, boolean) throws org.tmatesoft.svn.core.SVNException protected abstract void replayRangeImpl (long, long, long, boolean, org.tmatesoft.svn.core.io.ISVNReplayHandler) throws org.tmatesoft.svn.core.SVNException protected void fireConnectionOpened () org.tmatesoft.svn.core.io.ISVNConnectionListener listener java.util.Iterator listeners protected void fireConnectionClosed () org.tmatesoft.svn.core.io.ISVNConnectionListener listener java.util.Iterator listeners protected synchronized void lock () protected synchronized void lock (boolean) InterruptedException e boolean force protected synchronized void unlock () protected static boolean isInvalidRevision (long) long revision protected static boolean isValidRevision (long) long revision protected static java.lang.Long getRevisionObject (long) long revision protected static void assertValidRevision (long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long revision public java.lang.String getRepositoryPath (java.lang.String) throws org.tmatesoft.svn.core.SVNException String relativePath String fullPath String repositoryPath protected java.lang.String getLocationRelativePath (java.lang.String) throws org.tmatesoft.svn.core.SVNException String locationPath String relativeOrAbsolutePath public java.lang.String getFullPath (java.lang.String) throws org.tmatesoft.svn.core.SVNException String fullPath String relativeOrRepositoryPath String fullPath public void setDebugLog (org.tmatesoft.svn.util.ISVNDebugLog) org.tmatesoft.svn.util.ISVNDebugLog log public org.tmatesoft.svn.util.ISVNDebugLog getDebugLog () private long getDeletedRevisionFromLog (java.lang.String, long, long) throws org.tmatesoft.svn.core.SVNException String path long pegRevision long endRevision org.tmatesoft.svn.core.io.SVNRepository$DeletedRevisionLogHandler handler private long getLocationSegmentsFromLog (java.lang.String, long, long, long, org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String path long pegRevision long startRevision long endRevision org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler handler String reposAbsPath long youngestRevision org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.io.SVNRepository$LocationSegmentsLogHandler locationSegmentsLogHandler private int getLocationsFromLog (java.lang.String, long, long[], org.tmatesoft.svn.core.io.ISVNLocationEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long rev Long revObject int i org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err String path long pegRevision long[] revisions org.tmatesoft.svn.core.io.ISVNLocationEntryHandler handler String reposAbsPath org.tmatesoft.svn.core.SVNNodeKind kind long oldestRequestedRev long youngestRequestedRev long youngest long oldest org.tmatesoft.svn.core.io.SVNRepository$LocationsLogHandler locationsLogHandler private int getFileRevisionsFromLog (java.lang.String, long, long, org.tmatesoft.svn.core.io.ISVNFileRevisionHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.io.SVNRepository$Revision rev java.io.File tmpFile org.tmatesoft.svn.core.SVNProperties props java.io.OutputStream os org.tmatesoft.svn.core.SVNProperties propDiff org.tmatesoft.svn.core.io.SVNFileRevision fileRevision java.io.InputStream srcStream java.io.InputStream tgtStream java.util.Iterator revsIter String path long startRevision long endRevision org.tmatesoft.svn.core.io.ISVNFileRevisionHandler handler org.tmatesoft.svn.core.SVNURL reposURL org.tmatesoft.svn.core.SVNURL sessionURL String reposAbsPath org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.io.SVNRepository$FileRevisionsLogHandler logHandler java.util.LinkedList revisions java.io.File lastFile org.tmatesoft.svn.core.SVNProperties lastProps org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator deltaGenerator int i private static java.lang.String getPreviousLogPath (char[], long[], java.util.Map, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, long) throws org.tmatesoft.svn.core.SVNException String changedPath int i String[] sortedPaths org.tmatesoft.svn.core.SVNLogEntryPath change org.tmatesoft.svn.core.SVNErrorMessage err char[] action long[] copyFromRevision java.util.Map changedPaths String path org.tmatesoft.svn.core.SVNNodeKind kind long revision String previousPath static synthetic java.lang.String access$100 (char[], long[], java.util.Map, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, long) throws org.tmatesoft.svn.core.SVNException char[] x0 long[] x1 java.util.Map x2 String x3 org.tmatesoft.svn.core.SVNNodeKind x4 long x5 }
org/tmatesoft/svn/core/io/ISVNWorkspaceMediator.class
ISVNWorkspaceMediator.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNWorkspaceMediator extends java.lang.Object { public abstract org.tmatesoft.svn.core.SVNPropertyValue getWorkspaceProperty (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void setWorkspaceProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/io/SVNRepository$7.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$7 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLocationEntryHandler { final synthetic java.util.Map val$result final synthetic org.tmatesoft.svn.core.io.SVNRepository this$0 void <init> (org.tmatesoft.svn.core.io.SVNRepository, java.util.Map) public void handleLocationEntry (org.tmatesoft.svn.core.io.SVNLocationEntry) org.tmatesoft.svn.core.io.SVNLocationEntry locationEntry }
org/tmatesoft/svn/core/io/SVNRepository$3.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$3 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNFileRevisionHandler { final synthetic java.util.Collection val$result final synthetic org.tmatesoft.svn.core.io.SVNRepository this$0 void <init> (org.tmatesoft.svn.core.io.SVNRepository, java.util.Collection) public void openRevision (org.tmatesoft.svn.core.io.SVNFileRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNFileRevision fileRevision public void applyTextDelta (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String baseChecksum public java.io.OutputStream textDeltaChunk (java.lang.String, org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException String token org.tmatesoft.svn.core.io.diff.SVNDiffWindow diffWindow public void textDeltaEnd (java.lang.String) throws org.tmatesoft.svn.core.SVNException String token public void closeRevision (java.lang.String) throws org.tmatesoft.svn.core.SVNException String token }
org/tmatesoft/svn/core/io/SVNRepository$1.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$1 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLocationSegmentHandler { final synthetic java.util.List val$result final synthetic org.tmatesoft.svn.core.io.SVNRepository this$0 void <init> (org.tmatesoft.svn.core.io.SVNRepository, java.util.List) public void handleLocationSegment (org.tmatesoft.svn.core.io.SVNLocationSegment) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNLocationSegment locationSegment }
org/tmatesoft/svn/core/io/SVNLocationSegment.class
SVNLocationSegment.java package org.tmatesoft.svn.core.io public org.tmatesoft.svn.core.io.SVNLocationSegment extends java.lang.Object { private long myStartRevision private long myEndRevision private String myPath public void <init> (long, long, java.lang.String) long startRevision long endRevision String path public java.lang.String getPath () public long getStartRevision () public long getEndRevision () public void setStartRevision (long) long startRevision public void setEndRevision (long) long endRevision }
org/tmatesoft/svn/core/io/SVNRepository$LocationsLogHandler.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$LocationsLogHandler extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { String myLastPath String myPegPath org.tmatesoft.svn.core.SVNNodeKind myNodeKind long myPegRevision long[] myRevisions int myRevisionsCount org.tmatesoft.svn.core.io.ISVNLocationEntryHandler myLocationsHandler java.util.LinkedList myProcessedRevisions public void <init> (long[], org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, long, org.tmatesoft.svn.core.io.ISVNLocationEntryHandler) long[] revisions org.tmatesoft.svn.core.SVNNodeKind kind String lastPath long pegRevision org.tmatesoft.svn.core.io.ISVNLocationEntryHandler handler public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException long nextRev org.tmatesoft.svn.core.SVNLogEntry logEntry String currentPath String prevPath }
org/tmatesoft/svn/core/io/ISVNEditor.class
ISVNEditor.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNEditor extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNDeltaConsumer { public abstract void targetRevision (long) throws org.tmatesoft.svn.core.SVNException public abstract void openRoot (long) throws org.tmatesoft.svn.core.SVNException public abstract void deleteEntry (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException public abstract void absentDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void absentFile (java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void addDir (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException public abstract void openDir (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException public abstract void changeDirProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException public abstract void closeDir () throws org.tmatesoft.svn.core.SVNException public abstract void addFile (java.lang.String, java.lang.String, long) throws org.tmatesoft.svn.core.SVNException public abstract void openFile (java.lang.String, long) throws org.tmatesoft.svn.core.SVNException public abstract void changeFileProperty (java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) throws org.tmatesoft.svn.core.SVNException public abstract void closeFile (java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNCommitInfo closeEdit () throws org.tmatesoft.svn.core.SVNException public abstract void abortEdit () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/io/SVNCapability.class
SVNCapability.java package org.tmatesoft.svn.core.io public org.tmatesoft.svn.core.io.SVNCapability extends java.lang.Object { public static final org.tmatesoft.svn.core.io.SVNCapability DEPTH public static final org.tmatesoft.svn.core.io.SVNCapability MERGE_INFO public static final org.tmatesoft.svn.core.io.SVNCapability LOG_REVPROPS public static final org.tmatesoft.svn.core.io.SVNCapability PARTIAL_REPLAY public static final org.tmatesoft.svn.core.io.SVNCapability COMMIT_REVPROPS private String myName private void <init> (java.lang.String) String name public java.lang.String toString () static void <clinit> () }
org/tmatesoft/svn/core/io/SVNRepository$FileRevisionsLogHandler.class
SVNRepository.java package org.tmatesoft.svn.core.io org.tmatesoft.svn.core.io.SVNRepository$FileRevisionsLogHandler extends java.lang.Object implements org.tmatesoft.svn.core.ISVNLogEntryHandler { private java.util.LinkedList myRevisions private String myPath public void <init> (java.lang.String) String path public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNLogEntry logEntry org.tmatesoft.svn.core.io.SVNRepository$Revision rev public java.util.LinkedList getRevisions () }
org/tmatesoft/svn/core/io/ISVNFileRevisionHandler.class
ISVNFileRevisionHandler.java package org.tmatesoft.svn.core.io public abstract org.tmatesoft.svn.core.io.ISVNFileRevisionHandler extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNDeltaConsumer { public abstract void openRevision (org.tmatesoft.svn.core.io.SVNFileRevision) throws org.tmatesoft.svn.core.SVNException public abstract void closeRevision (java.lang.String) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/io/diff/
org/tmatesoft/svn/core/io/diff/SVNDiffWindow.class
SVNDiffWindow.java package org.tmatesoft.svn.core.io.diff public org.tmatesoft.svn.core.io.diff.SVNDiffWindow extends java.lang.Object { public static final byte[] SVN_HEADER public static final byte[] SVN1_HEADER public static final org.tmatesoft.svn.core.io.diff.SVNDiffWindow EMPTY private final long mySourceViewOffset private final int mySourceViewLength private final int myTargetViewLength private final int myNewDataLength private int myInstructionsLength private org.tmatesoft.svn.core.io.diff.SVNDiffInstruction myTemplateInstruction private org.tmatesoft.svn.core.io.diff.SVNDiffInstruction myTemplateNextInstruction private byte[] myData private int myDataOffset private int myInstructionsCount public void <init> (long, int, int, int, int) long sourceViewOffset int sourceViewLength int targetViewLength int instructionsLength int newDataLength public int getInstructionsLength () public long getSourceViewOffset () public int getSourceViewLength () public int getTargetViewLength () public int getNewDataLength () public java.util.Iterator instructions () public java.util.Iterator instructions (boolean) boolean template public void apply (org.tmatesoft.svn.core.io.diff.SVNDiffWindowApplyBaton) throws org.tmatesoft.svn.core.SVNException int start byte[] oldSourceBuffer int toSkip org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e int j int start int end int tIndex org.tmatesoft.svn.core.io.diff.SVNDiffInstruction instruction int iLength java.util.Iterator instructions org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.io.diff.SVNDiffWindowApplyBaton applyBaton int length int tpos int npos public int apply (byte[], byte[]) int j int start int end int tIndex org.tmatesoft.svn.core.io.diff.SVNDiffInstruction instruction int iLength java.util.Iterator instructions byte[] sourceBuffer byte[] targetBuffer int dataOffset int tpos public void setData (java.nio.ByteBuffer) java.nio.ByteBuffer buffer public java.lang.String toString () StringBuffer sb public boolean hasInstructions () public void writeTo (java.io.OutputStream, boolean) throws java.io.IOException java.io.OutputStream os boolean writeHeader public void writeTo (java.io.OutputStream, boolean, boolean) throws java.io.IOException java.io.OutputStream os boolean writeHeader boolean compress java.nio.ByteBuffer offsets java.nio.ByteBuffer instructions java.nio.ByteBuffer newData int instLength int dataLength public int getDataLength () public boolean hasCopyFromSourceInstructions () org.tmatesoft.svn.core.io.diff.SVNDiffInstruction instruction java.util.Iterator instrs public org.tmatesoft.svn.core.io.diff.SVNDiffWindow clone (java.nio.ByteBuffer) java.nio.ByteBuffer targetData int targetOffset int position org.tmatesoft.svn.core.io.diff.SVNDiffWindow clone private static java.nio.ByteBuffer inflate (byte[], int, int) throws java.io.IOException java.util.zip.DeflaterOutputStream out byte[] src int offset int length java.nio.ByteBuffer buffer public org.tmatesoft.svn.core.io.diff.SVNDiffInstruction[] loadDiffInstructions (org.tmatesoft.svn.core.io.diff.SVNDiffInstruction[]) org.tmatesoft.svn.core.io.diff.SVNDiffInstruction[] newTarget java.util.Iterator instructions org.tmatesoft.svn.core.io.diff.SVNDiffInstruction[] target int index public int getInstructionsCount () public void writeNewData (java.nio.ByteBuffer, int, int) java.nio.ByteBuffer target int offset int length static synthetic org.tmatesoft.svn.core.io.diff.SVNDiffInstruction access$000 (org.tmatesoft.svn.core.io.diff.SVNDiffWindow) org.tmatesoft.svn.core.io.diff.SVNDiffWindow x0 static synthetic byte[] access$100 (org.tmatesoft.svn.core.io.diff.SVNDiffWindow) org.tmatesoft.svn.core.io.diff.SVNDiffWindow x0 static synthetic int access$200 (org.tmatesoft.svn.core.io.diff.SVNDiffWindow) org.tmatesoft.svn.core.io.diff.SVNDiffWindow x0 static synthetic org.tmatesoft.svn.core.io.diff.SVNDiffInstruction access$300 (org.tmatesoft.svn.core.io.diff.SVNDiffWindow) org.tmatesoft.svn.core.io.diff.SVNDiffWindow x0 static synthetic int access$400 (org.tmatesoft.svn.core.io.diff.SVNDiffWindow) org.tmatesoft.svn.core.io.diff.SVNDiffWindow x0 static void <clinit> () }
org/tmatesoft/svn/core/io/diff/SVNDiffInstruction.class
SVNDiffInstruction.java package org.tmatesoft.svn.core.io.diff public org.tmatesoft.svn.core.io.diff.SVNDiffInstruction extends java.lang.Object { public static final int COPY_FROM_SOURCE public static final int COPY_FROM_TARGET public static final int COPY_FROM_NEW_DATA public int type public int length public int offset public void <init> (int, int, int) int t int l int o public void <init> () public java.lang.String toString () StringBuffer b public void writeTo (java.nio.ByteBuffer) java.nio.ByteBuffer target byte first public static void writeInt (java.nio.ByteBuffer, int) byte b int r java.nio.ByteBuffer os int i int count long v public static void writeLong (java.nio.ByteBuffer, long) byte b int r java.nio.ByteBuffer os long i int count long v }
org/tmatesoft/svn/core/io/diff/SVNDiffWindow$InstructionsIterator.class
SVNDiffWindow.java package org.tmatesoft.svn.core.io.diff org.tmatesoft.svn.core.io.diff.SVNDiffWindow$InstructionsIterator extends java.lang.Object implements java.util.Iterator { private org.tmatesoft.svn.core.io.diff.SVNDiffInstruction myNextInsruction private int myOffset private int myNewDataOffset private boolean myIsTemplate final synthetic org.tmatesoft.svn.core.io.diff.SVNDiffWindow this$0 public void <init> (org.tmatesoft.svn.core.io.diff.SVNDiffWindow, boolean) boolean useTemplate public boolean hasNext () public java.lang.Object next () Object next public void remove () private org.tmatesoft.svn.core.io.diff.SVNDiffInstruction readNextInstruction () org.tmatesoft.svn.core.io.diff.SVNDiffInstruction instruction private int readInt () byte b int result }
org/tmatesoft/svn/core/io/diff/SVNDeltaProcessor.class
SVNDeltaProcessor.java package org.tmatesoft.svn.core.io.diff public org.tmatesoft.svn.core.io.diff.SVNDeltaProcessor extends java.lang.Object { private org.tmatesoft.svn.core.io.diff.SVNDiffWindowApplyBaton myApplyBaton public void <init> () public void applyTextDelta (java.io.InputStream, java.io.OutputStream, boolean) java.security.NoSuchAlgorithmException e1 java.io.InputStream base java.io.OutputStream target boolean computeCheksum java.security.MessageDigest digest public void applyTextDelta (java.io.File, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File baseFile java.io.File targetFile boolean computeCheksum java.io.InputStream base public void applyTextDelta (java.io.InputStream, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.InputStream baseIS java.io.File targetFile boolean computeTargetCheksum public java.io.OutputStream textDeltaChunk (org.tmatesoft.svn.core.io.diff.SVNDiffWindow) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.diff.SVNDiffWindow window private void reset () public java.lang.String textDeltaEnd () }
org/tmatesoft/svn/core/io/diff/SVNDiffWindow$1.class
SVNDiffWindow.java package org.tmatesoft.svn.core.io.diff final org.tmatesoft.svn.core.io.diff.SVNDiffWindow$1 extends java.io.OutputStream { final synthetic java.nio.ByteBuffer val$buffer void <init> (java.nio.ByteBuffer) public void write (int) throws java.io.IOException int b public void write (byte[], int, int) throws java.io.IOException byte[] b int off int len public void write (byte[]) throws java.io.IOException byte[] b }
org/tmatesoft/svn/core/io/diff/SVNDeltaGenerator.class
SVNDeltaGenerator.java package org.tmatesoft.svn.core.io.diff public org.tmatesoft.svn.core.io.diff.SVNDeltaGenerator extends java.lang.Object { private org.tmatesoft.svn.core.internal.delta.SVNDeltaAlgorithm myXDelta private byte[] mySourceBuffer private byte[] myTargetBuffer private int myMaximumBufferSize public void <init> () public void <init> (int) int maximumDiffWindowSize int initialSize public java.lang.String sendDelta (java.lang.String, java.io.InputStream, org.tmatesoft.svn.core.io.ISVNDeltaConsumer, boolean) throws org.tmatesoft.svn.core.SVNException String path java.io.InputStream target org.tmatesoft.svn.core.io.ISVNDeltaConsumer consumer boolean computeChecksum public java.lang.String sendDelta (java.lang.String, java.io.InputStream, long, java.io.InputStream, org.tmatesoft.svn.core.io.ISVNDeltaConsumer, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.security.NoSuchAlgorithmException e org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ioew org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e org.tmatesoft.svn.core.internal.wc.IOExceptionWrapper ioew org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e int targetLength int sourceLength String path java.io.InputStream source long sourceOffset java.io.InputStream target org.tmatesoft.svn.core.io.ISVNDeltaConsumer consumer boolean computeChecksum java.security.MessageDigest digest boolean windowSent public void sendDelta (java.lang.String, byte[], int, org.tmatesoft.svn.core.io.ISVNDeltaConsumer) throws org.tmatesoft.svn.core.SVNException String path byte[] target int targetLength org.tmatesoft.svn.core.io.ISVNDeltaConsumer consumer public void sendDelta (java.lang.String, byte[], int, long, byte[], int, org.tmatesoft.svn.core.io.ISVNDeltaConsumer) throws org.tmatesoft.svn.core.SVNException String path byte[] source int sourceLength long sourceOffset byte[] target int targetLength org.tmatesoft.svn.core.io.ISVNDeltaConsumer consumer private void sendDelta (java.lang.String, long, byte[], int, byte[], int, org.tmatesoft.svn.core.io.ISVNDeltaConsumer) throws org.tmatesoft.svn.core.SVNException String path long sourceOffset byte[] source int sourceLength byte[] target int targetLength org.tmatesoft.svn.core.io.ISVNDeltaConsumer consumer org.tmatesoft.svn.core.internal.delta.SVNDeltaAlgorithm algorithm int instructionsLength int newDataLength org.tmatesoft.svn.core.io.diff.SVNDiffWindow window java.io.OutputStream os private int readToBuffer (java.io.InputStream, byte[]) throws java.io.IOException byte[] expanded int anotherRead java.io.InputStream is byte[] buffer int read }
org/tmatesoft/svn/core/io/diff/SVNDiffWindowApplyBaton.class
SVNDiffWindowApplyBaton.java package org.tmatesoft.svn.core.io.diff public org.tmatesoft.svn.core.io.diff.SVNDiffWindowApplyBaton extends java.lang.Object { java.io.InputStream mySourceStream java.io.OutputStream myTargetStream long mySourceViewOffset int mySourceViewLength int myTargetViewSize byte[] mySourceBuffer byte[] myTargetBuffer java.security.MessageDigest myDigest public static org.tmatesoft.svn.core.io.diff.SVNDiffWindowApplyBaton create (java.io.File, java.io.File, java.security.MessageDigest) throws org.tmatesoft.svn.core.SVNException java.io.File source java.io.File target java.security.MessageDigest digest org.tmatesoft.svn.core.io.diff.SVNDiffWindowApplyBaton baton public static org.tmatesoft.svn.core.io.diff.SVNDiffWindowApplyBaton create (java.io.InputStream, java.io.OutputStream, java.security.MessageDigest) java.io.InputStream source java.io.OutputStream target java.security.MessageDigest digest org.tmatesoft.svn.core.io.diff.SVNDiffWindowApplyBaton baton private void <init> () public java.lang.String close () java.security.MessageDigest d }
org/tmatesoft/svn/core/wc/
org/tmatesoft/svn/core/wc/ISVNCommitParameters$1.class
ISVNCommitParameters.java package org.tmatesoft.svn.core.wc synthetic org.tmatesoft.svn.core.wc.ISVNCommitParameters$1 extends java.lang.Object { }
org/tmatesoft/svn/core/wc/SVNLogClient$1.class
SVNLogClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNLogClient$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.ISVNDirEntryHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNLogClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNLogClient, org.tmatesoft.svn.core.ISVNDirEntryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNDirEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNDirEntry object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/ISVNPropertyValueProvider.class
ISVNPropertyValueProvider.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider extends java.lang.Object { public abstract org.tmatesoft.svn.core.SVNProperties providePropertyValues (java.io.File, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/ISVNMergerFactory.class
ISVNMergerFactory.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNMergerFactory extends java.lang.Object { public abstract org.tmatesoft.svn.core.wc.ISVNMerger createMerger (byte[], byte[], byte[]) }
org/tmatesoft/svn/core/wc/ISVNDiffGenerator.class
ISVNDiffGenerator.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNDiffGenerator extends java.lang.Object { public abstract void init (java.lang.String, java.lang.String) public abstract void setBasePath (java.io.File) public abstract void setForcedBinaryDiff (boolean) public abstract void setEncoding (java.lang.String) public abstract java.lang.String getEncoding () public abstract void setEOL (byte[]) public abstract byte[] getEOL () public abstract void setDiffDeleted (boolean) public abstract boolean isDiffDeleted () public abstract void setDiffAdded (boolean) public abstract boolean isDiffAdded () public abstract void setDiffCopied (boolean) public abstract boolean isDiffCopied () public abstract void setDiffUnversioned (boolean) public abstract boolean isDiffUnversioned () public abstract java.io.File createTempDirectory () throws org.tmatesoft.svn.core.SVNException public abstract void displayPropDiff (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException public abstract void displayFileDiff (java.lang.String, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException public abstract void displayDeletedDirectory (java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void displayAddedDirectory (java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract boolean isForcedBinaryDiff () }
org/tmatesoft/svn/core/wc/SVNDiffClient$1.class
SVNDiffClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNDiffClient$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.ISVNLogEntryHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNDiffClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNDiffClient, org.tmatesoft.svn.core.ISVNLogEntryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNLogEntry object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/ISVNExternalsHandler.class
ISVNExternalsHandler.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNExternalsHandler extends java.lang.Object { public static final org.tmatesoft.svn.core.wc.ISVNExternalsHandler DEFAULT public abstract org.tmatesoft.svn.core.wc.SVNRevision[] handleExternal (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision) static void <clinit> () }
org/tmatesoft/svn/core/wc/ISVNOptions.class
ISVNOptions.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNOptions extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNTunnelProvider { public abstract boolean isUseCommitTimes () public abstract java.lang.String[] getIgnorePatterns () public abstract java.util.Map applyAutoProperties (java.io.File, java.util.Map) public abstract org.tmatesoft.svn.core.wc.ISVNMergerFactory getMergerFactory () public abstract java.text.DateFormat getKeywordDateFormat () public abstract java.lang.String[] getPreservedConflictFileExtensions () public abstract boolean isAllowAllForwardMergesFromSelf () public abstract byte[] getNativeEOL () public abstract java.lang.String getNativeCharset () public abstract java.util.Map getFileExtensionsToMimeTypes () public abstract org.tmatesoft.svn.core.wc.ISVNConflictHandler getConflictResolver () }
org/tmatesoft/svn/core/wc/SVNConflictChoice.class
SVNConflictChoice.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNConflictChoice extends java.lang.Object { public static org.tmatesoft.svn.core.wc.SVNConflictChoice POSTPONE public static org.tmatesoft.svn.core.wc.SVNConflictChoice BASE public static org.tmatesoft.svn.core.wc.SVNConflictChoice THEIRS_FULL public static org.tmatesoft.svn.core.wc.SVNConflictChoice MINE_FULL public static org.tmatesoft.svn.core.wc.SVNConflictChoice THEIRS_CONFLICT public static org.tmatesoft.svn.core.wc.SVNConflictChoice MINE_CONFLICT public static org.tmatesoft.svn.core.wc.SVNConflictChoice MERGED private int myID private void <init> (int) int id public int getID () static void <clinit> () }
org/tmatesoft/svn/core/wc/ISVNRepositoryPool.class
ISVNRepositoryPool.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNRepositoryPool extends java.lang.Object { public abstract void setAuthenticationManager (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager) public abstract void setCanceller (org.tmatesoft.svn.core.ISVNCanceller) public abstract void setDebugLog (org.tmatesoft.svn.util.ISVNDebugLog) public abstract org.tmatesoft.svn.core.io.SVNRepository createRepository (org.tmatesoft.svn.core.SVNURL, boolean) throws org.tmatesoft.svn.core.SVNException public abstract void shutdownConnections (boolean) public abstract void dispose () }
org/tmatesoft/svn/core/wc/SVNDiffStatus.class
SVNDiffStatus.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNDiffStatus extends java.lang.Object { private org.tmatesoft.svn.core.wc.SVNStatusType myModificationType private boolean myIsPropertiesModified private org.tmatesoft.svn.core.SVNNodeKind myKind private org.tmatesoft.svn.core.SVNURL myURL private String myPath private java.io.File myFile public void <init> (java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.wc.SVNStatusType, boolean, org.tmatesoft.svn.core.SVNNodeKind) java.io.File file org.tmatesoft.svn.core.SVNURL url String path org.tmatesoft.svn.core.wc.SVNStatusType type boolean propsModified org.tmatesoft.svn.core.SVNNodeKind kind public java.io.File getFile () public boolean isPropertiesModified () public org.tmatesoft.svn.core.SVNNodeKind getKind () public org.tmatesoft.svn.core.wc.SVNStatusType getModificationType () public java.lang.String getPath () public org.tmatesoft.svn.core.SVNURL getURL () }
org/tmatesoft/svn/core/wc/DefaultSVNCommitHandler.class
DefaultSVNCommitHandler.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.DefaultSVNCommitHandler extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNCommitHandler { public void <init> () public java.lang.String getCommitMessage (java.lang.String, org.tmatesoft.svn.core.wc.SVNCommitItem[]) throws org.tmatesoft.svn.core.SVNException String message org.tmatesoft.svn.core.wc.SVNCommitItem[] commitables public org.tmatesoft.svn.core.SVNProperties getRevisionProperties (java.lang.String, org.tmatesoft.svn.core.wc.SVNCommitItem[], org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException String message org.tmatesoft.svn.core.wc.SVNCommitItem[] commitables org.tmatesoft.svn.core.SVNProperties revisionProperties }
org/tmatesoft/svn/core/wc/ISVNInfoHandler.class
ISVNInfoHandler.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNInfoHandler extends java.lang.Object { public abstract void handleInfo (org.tmatesoft.svn.core.wc.SVNInfo) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/SVNConflictAction.class
SVNConflictAction.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNConflictAction extends java.lang.Object { public static final org.tmatesoft.svn.core.wc.SVNConflictAction EDIT public static final org.tmatesoft.svn.core.wc.SVNConflictAction ADD public static final org.tmatesoft.svn.core.wc.SVNConflictAction DELETE public static final org.tmatesoft.svn.core.wc.SVNConflictAction REPLACE private final String myName public static org.tmatesoft.svn.core.wc.SVNConflictAction fromString (java.lang.String) String action private void <init> (java.lang.String) String name public java.lang.String getName () public java.lang.String toString () static void <clinit> () }
org/tmatesoft/svn/core/wc/ISVNCommitParameters$Action.class
ISVNCommitParameters.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action extends java.lang.Object { private void <init> () synthetic void <init> (org.tmatesoft.svn.core.wc.ISVNCommitParameters$1) org.tmatesoft.svn.core.wc.ISVNCommitParameters$1 x0 }
org/tmatesoft/svn/core/wc/ISVNMerger.class
ISVNMerger.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNMerger extends java.lang.Object { public abstract org.tmatesoft.svn.core.wc.SVNMergeResult mergeText (org.tmatesoft.svn.core.wc.SVNMergeFileSet, boolean, org.tmatesoft.svn.core.wc.SVNDiffOptions) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.wc.SVNMergeResult mergeProperties (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, boolean, boolean) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/ISVNChangelistHandler.class
ISVNChangelistHandler.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNChangelistHandler extends java.lang.Object { public abstract void handle (java.io.File, java.lang.String) }
org/tmatesoft/svn/core/wc/ISVNAddParameters$1.class
ISVNAddParameters.java package org.tmatesoft.svn.core.wc synthetic org.tmatesoft.svn.core.wc.ISVNAddParameters$1 extends java.lang.Object { }
org/tmatesoft/svn/core/wc/ISVNDiffStatusHandler.class
ISVNDiffStatusHandler.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler extends java.lang.Object { public abstract void handleDiffStatus (org.tmatesoft.svn.core.wc.SVNDiffStatus) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/SVNEventAction.class
SVNEventAction.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNEventAction extends java.lang.Object { private int myID private String myName public static final org.tmatesoft.svn.core.wc.SVNEventAction PROGRESS public static final org.tmatesoft.svn.core.wc.SVNEventAction ADD public static final org.tmatesoft.svn.core.wc.SVNEventAction COPY public static final org.tmatesoft.svn.core.wc.SVNEventAction DELETE public static final org.tmatesoft.svn.core.wc.SVNEventAction RESTORE public static final org.tmatesoft.svn.core.wc.SVNEventAction REVERT public static final org.tmatesoft.svn.core.wc.SVNEventAction FAILED_REVERT public static final org.tmatesoft.svn.core.wc.SVNEventAction RESOLVED public static final org.tmatesoft.svn.core.wc.SVNEventAction SKIP public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_DELETE public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_ADD public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_UPDATE public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_NONE public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_COMPLETED public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_EXTERNAL public static final org.tmatesoft.svn.core.wc.SVNEventAction STATUS_COMPLETED public static final org.tmatesoft.svn.core.wc.SVNEventAction STATUS_EXTERNAL public static final org.tmatesoft.svn.core.wc.SVNEventAction COMMIT_MODIFIED public static final org.tmatesoft.svn.core.wc.SVNEventAction COMMIT_ADDED public static final org.tmatesoft.svn.core.wc.SVNEventAction COMMIT_DELETED public static final org.tmatesoft.svn.core.wc.SVNEventAction COMMIT_REPLACED public static final org.tmatesoft.svn.core.wc.SVNEventAction COMMIT_DELTA_SENT public static final org.tmatesoft.svn.core.wc.SVNEventAction COMMIT_COMPLETED public static final org.tmatesoft.svn.core.wc.SVNEventAction ANNOTATE public static final org.tmatesoft.svn.core.wc.SVNEventAction LOCKED public static final org.tmatesoft.svn.core.wc.SVNEventAction UNLOCKED public static final org.tmatesoft.svn.core.wc.SVNEventAction LOCK_FAILED public static final org.tmatesoft.svn.core.wc.SVNEventAction UNLOCK_FAILED public static final org.tmatesoft.svn.core.wc.SVNEventAction UPGRADE public static final org.tmatesoft.svn.core.wc.SVNEventAction UPGRADED_PATH public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_EXISTS public static final org.tmatesoft.svn.core.wc.SVNEventAction CHANGELIST_SET public static final org.tmatesoft.svn.core.wc.SVNEventAction CHANGELIST_CLEAR public static final org.tmatesoft.svn.core.wc.SVNEventAction CHANGELIST_MOVED public static final org.tmatesoft.svn.core.wc.SVNEventAction MERGE_BEGIN public static final org.tmatesoft.svn.core.wc.SVNEventAction FOREIGN_MERGE_BEGIN public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_REPLACE public static final org.tmatesoft.svn.core.wc.SVNEventAction PROPERTY_ADD public static final org.tmatesoft.svn.core.wc.SVNEventAction PROPERTY_MODIFY public static final org.tmatesoft.svn.core.wc.SVNEventAction PROPERTY_DELETE public static final org.tmatesoft.svn.core.wc.SVNEventAction PROPERTY_DELETE_NONEXISTENT public static final org.tmatesoft.svn.core.wc.SVNEventAction REVPROPER_SET public static final org.tmatesoft.svn.core.wc.SVNEventAction REVPROP_DELETE public static final org.tmatesoft.svn.core.wc.SVNEventAction MERGE_COMPLETE public static final org.tmatesoft.svn.core.wc.SVNEventAction TREE_CONFLICT public static final org.tmatesoft.svn.core.wc.SVNEventAction FAILED_EXTERNAL public static final org.tmatesoft.svn.core.wc.SVNEventAction PATCH public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_STARTED public static final org.tmatesoft.svn.core.wc.SVNEventAction PATCH_REJECTED_HUNK public static final org.tmatesoft.svn.core.wc.SVNEventAction PATCH_APPLIED_HUNK public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_SKIP_OBSTRUCTION public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_SKIP_WORKING_ONLY public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_SKIP_ACCESS_DENINED public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_EXTERNAL_REMOVED public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_SHADOWED_ADD public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_SHADOWED_UPDATE public static final org.tmatesoft.svn.core.wc.SVNEventAction UPDATE_SHADOWED_DELETE public static final org.tmatesoft.svn.core.wc.SVNEventAction SKIP_CONFLICTED public static final org.tmatesoft.svn.core.wc.SVNEventAction PATH_NONEXISTENT public static final org.tmatesoft.svn.core.wc.SVNEventAction MERGE_RECORD_INFO public static final org.tmatesoft.svn.core.wc.SVNEventAction MERGE_RECORD_INFO_BEGIN public static final org.tmatesoft.svn.core.wc.SVNEventAction MERGE_ELIDE_INFO public static final org.tmatesoft.svn.core.wc.SVNEventAction FAILED_OUT_OF_DATE public static final org.tmatesoft.svn.core.wc.SVNEventAction FAILED_LOCKED public static final org.tmatesoft.svn.core.wc.SVNEventAction FAILED_FORBIDDEN_BY_SERVER private void <init> (int, java.lang.String) int id String name public int getID () public java.lang.String toString () static void <clinit> () }
org/tmatesoft/svn/core/wc/ISVNPathListHandler.class
ISVNPathListHandler.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNPathListHandler extends java.lang.Object { public abstract void handlePathListItem (java.io.File) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/DefaultSVNDiffGenerator$1.class
DefaultSVNDiffGenerator.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator$1 extends java.lang.Object implements org.tmatesoft.svn.core.internal.wc.ISVNReturnValueCallback { final synthetic String val$diffCommand final synthetic java.io.Writer val$writer final synthetic org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator this$0 void <init> (org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator, java.lang.String, java.io.Writer) public void handleReturnValue (int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err int returnValue public void handleChar (char) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe char ch public boolean isHandleProgramOutput () }
org/tmatesoft/svn/core/wc/SVNCopySource.class
SVNCopySource.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNCopySource extends java.lang.Object { private org.tmatesoft.svn.core.wc.SVNRevision myPegRevision private org.tmatesoft.svn.core.wc.SVNRevision myRevision private org.tmatesoft.svn.core.SVNURL myURL private java.io.File myPath private boolean myIsCopyContents public void <init> (org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File) org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision java.io.File path public void <init> (org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNURL url public java.io.File getFile () public org.tmatesoft.svn.core.wc.SVNRevision getPegRevision () public org.tmatesoft.svn.core.wc.SVNRevision getRevision () public org.tmatesoft.svn.core.SVNURL getURL () public boolean isURL () public java.lang.String getName () public void setCopyContents (boolean) boolean copyContents public boolean isCopyContents () }
org/tmatesoft/svn/core/wc/SVNInfo.class
SVNInfo.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNInfo extends java.lang.Object { private java.io.File myFile private String myPath private org.tmatesoft.svn.core.SVNURL myURL private org.tmatesoft.svn.core.wc.SVNRevision myRevision private org.tmatesoft.svn.core.SVNNodeKind myKind private org.tmatesoft.svn.core.SVNURL myRepositoryRootURL private String myRepositoryUUID private org.tmatesoft.svn.core.wc.SVNRevision myCommittedRevision private java.util.Date myCommittedDate private String myAuthor private org.tmatesoft.svn.core.SVNLock myLock private boolean myIsRemote private String mySchedule private org.tmatesoft.svn.core.SVNURL myCopyFromURL private org.tmatesoft.svn.core.wc.SVNRevision myCopyFromRevision private java.util.Date myTextTime private java.util.Date myPropTime private String myChecksum private java.io.File myConflictOldFile private java.io.File myConflictNewFile private java.io.File myConflictWrkFile private java.io.File myPropConflictFile private org.tmatesoft.svn.core.SVNDepth myDepth private String myChangelistName private long myWorkingSize private long myRepositorySize private org.tmatesoft.svn.core.wc.SVNTreeConflictDescription myTreeConflict private java.io.File myWorkingCopyRoot public static org.tmatesoft.svn.core.wc.SVNInfo createInfo (java.io.File, org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc public static org.tmatesoft.svn.core.wc.SVNInfo createInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) java.io.File file org.tmatesoft.svn.core.wc.SVNTreeConflictDescription tc public static org.tmatesoft.svn.core.wc.SVNInfo createInfo (java.lang.String, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDirEntry, org.tmatesoft.svn.core.SVNLock) String path org.tmatesoft.svn.core.SVNURL reposRootURL String uuid org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDirEntry dirEntry org.tmatesoft.svn.core.SVNLock lock public void <init> (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, long, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, long, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNURL, long, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNDepth, java.lang.String, long, org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) java.io.File file org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL rootURL long revision org.tmatesoft.svn.core.SVNNodeKind kind String uuid long committedRevision String committedDate String author String schedule org.tmatesoft.svn.core.SVNURL copyFromURL long copyFromRevision String textTime String propTime String checksum String conflictOld String conflictNew String conflictWorking String propRejectFile org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNDepth depth String changelistName long wcSize org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict public void <init> (java.lang.String, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, org.tmatesoft.svn.core.SVNURL, long, java.util.Date, java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNDepth, long) String path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNNodeKind kind String uuid org.tmatesoft.svn.core.SVNURL reposRootURL long comittedRevision java.util.Date date String author org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNDepth depth long size public java.lang.String getAuthor () public java.lang.String getChecksum () public java.util.Date getCommittedDate () public org.tmatesoft.svn.core.wc.SVNRevision getCommittedRevision () public java.io.File getConflictNewFile () public java.io.File getConflictOldFile () public java.io.File getConflictWrkFile () public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription getTreeConflict () public org.tmatesoft.svn.core.wc.SVNRevision getCopyFromRevision () public org.tmatesoft.svn.core.SVNURL getCopyFromURL () public java.io.File getFile () public boolean isRemote () public org.tmatesoft.svn.core.SVNNodeKind getKind () public org.tmatesoft.svn.core.SVNLock getLock () public java.lang.String getPath () public java.io.File getPropConflictFile () public java.util.Date getPropTime () public org.tmatesoft.svn.core.SVNURL getRepositoryRootURL () public java.lang.String getRepositoryUUID () public org.tmatesoft.svn.core.wc.SVNRevision getRevision () public java.lang.String getSchedule () public java.util.Date getTextTime () public org.tmatesoft.svn.core.SVNURL getURL () public org.tmatesoft.svn.core.SVNDepth getDepth () public java.lang.String getChangelistName () public long getWorkingSize () public long getRepositorySize () public java.io.File getWorkingCopyRoot () public void setWorkingCopyRoot (java.io.File) java.io.File root }
org/tmatesoft/svn/core/wc/SVNWCClient$9.class
SVNWCClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNWCClient$9 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.ISVNInfoHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNWCClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNWCClient, org.tmatesoft.svn.core.wc.ISVNInfoHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnInfo object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNWCClient.class
SVNWCClient.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNWCClient extends org.tmatesoft.svn.core.wc.SVNBasicClient { private org.tmatesoft.svn.core.wc.ISVNAddParameters addParameters private org.tmatesoft.svn.core.wc.ISVNCommitHandler commitHandler private boolean revertMissingDirectories public static org.tmatesoft.svn.core.wc.ISVNAddParameters DEFAULT_ADD_PARAMETERS public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setAddParameters (org.tmatesoft.svn.core.wc.ISVNAddParameters) org.tmatesoft.svn.core.wc.ISVNAddParameters addParameters public org.tmatesoft.svn.core.wc.ISVNCommitHandler getCommitHandler () public void setCommitHandler (org.tmatesoft.svn.core.wc.ISVNCommitHandler) org.tmatesoft.svn.core.wc.ISVNCommitHandler handler public void setRevertMissingDirectories (boolean) boolean revertMissing public boolean isRevertMissingDirectories () public void doGetFileContents (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean expandKeywords java.io.OutputStream dst org.tmatesoft.svn.core.wc2.SvnCat cat public void doGetFileContents (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean expandKeywords java.io.OutputStream dst org.tmatesoft.svn.core.wc2.SvnCat cat public void doCleanup (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc2.SvnCleanup cleanup public void doCleanup (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean deleteWCProperties org.tmatesoft.svn.core.wc2.SvnCleanup cleanup public void doSetProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNPropertyHandler, java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.io.File path String propName org.tmatesoft.svn.core.SVNPropertyValue propValue boolean skipChecks org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler java.util.Collection changeLists org.tmatesoft.svn.core.wc2.SvnSetProperty ps public void doSetProperty (java.io.File, org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider, boolean, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNPropertyHandler, java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.ISVNPropertyValueProvider propertyValueProvider boolean skipChecks org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler java.util.Collection changeLists org.tmatesoft.svn.core.wc2.SvnSetProperty ps public org.tmatesoft.svn.core.SVNCommitInfo doSetProperty (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String propName org.tmatesoft.svn.core.SVNPropertyValue propValue org.tmatesoft.svn.core.wc.SVNRevision baseRevision String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties boolean skipChecks org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.wc2.SvnRemoteSetProperty ps public void doSetRevisionProperty (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision String propName org.tmatesoft.svn.core.SVNPropertyValue propValue boolean force org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.wc2.SvnSetProperty ps org.tmatesoft.svn.core.wc.SVNPropertyData propertyData public void doSetRevisionProperty (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision revision String propName org.tmatesoft.svn.core.SVNPropertyValue propValue boolean force org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.wc2.SvnSetProperty ps org.tmatesoft.svn.core.wc.SVNPropertyData propertyData public org.tmatesoft.svn.core.wc.SVNPropertyData doGetProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException java.io.File path String propName org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNPropertyData[] data org.tmatesoft.svn.core.wc2.SvnGetProperties getProperties public org.tmatesoft.svn.core.wc.SVNPropertyData doGetProperty (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String propName org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNPropertyData[] data org.tmatesoft.svn.core.wc2.SvnGetProperties getProperties public void doGetProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path String propName org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler public void doGetProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNPropertyHandler, java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.io.File path String propName org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler java.util.Collection changeLists org.tmatesoft.svn.core.wc2.SvnGetProperties getProperties public void doGetProperty (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String propName org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler public void doGetProperty (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String propName org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.wc2.SvnGetProperties getProperties public long doGetRevisionProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path String propName org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.wc2.SvnGetProperties getProperties public long doGetRevisionProperty (org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String propName org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler org.tmatesoft.svn.core.wc2.SvnGetProperties getProperties public void doDelete (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean force boolean dryRun public void doDelete (java.io.File, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean force boolean deleteFiles boolean dryRun org.tmatesoft.svn.core.wc2.SvnScheduleForRemoval remove public void doAdd (java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean force boolean mkdir boolean climbUnversionedParents boolean recursive java.io.File[] paths public void doAdd (java.io.File, boolean, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean force boolean mkdir boolean climbUnversionedParents boolean recursive boolean includeIgnored java.io.File[] paths public void doAdd (java.io.File, boolean, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean force boolean mkdir boolean climbUnversionedParents org.tmatesoft.svn.core.SVNDepth depth boolean includeIgnored boolean makeParents java.io.File[] paths public void doAdd (java.io.File[], boolean, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException int i java.io.File[] paths boolean force boolean mkdir boolean climbUnversionedParents org.tmatesoft.svn.core.SVNDepth depth boolean depthIsSticky boolean includeIgnored boolean makeParents org.tmatesoft.svn.core.wc2.SvnScheduleForAddition add public void doAdd (java.io.File, boolean, boolean, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean force boolean mkdir boolean climbUnversionedParents org.tmatesoft.svn.core.SVNDepth depth boolean depthIsSticky boolean includeIgnored boolean makeParents java.io.File[] paths public void doMarkReplaced (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc2.SvnMarkReplaced mr public void doRevert (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean recursive public void doRevert (java.io.File[], boolean) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths boolean recursive public void doRevert (java.io.File[], org.tmatesoft.svn.core.SVNDepth, java.util.Collection) throws org.tmatesoft.svn.core.SVNException int i java.io.File[] paths org.tmatesoft.svn.core.SVNDepth depth java.util.Collection changeLists org.tmatesoft.svn.core.wc2.SvnRevert revert public void doResolve (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean recursive public void doResolve (java.io.File, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.SVNConflictChoice) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice org.tmatesoft.svn.core.wc2.SvnResolve resolve public void doResolve (java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, org.tmatesoft.svn.core.wc.SVNConflictChoice) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNDepth depth boolean resolveContents boolean resolveProperties org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice org.tmatesoft.svn.core.wc2.SvnResolve resolve public void doResolve (java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, org.tmatesoft.svn.core.wc.SVNConflictChoice) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNDepth depth boolean resolveContents boolean resolveProperties boolean resolveTree org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice org.tmatesoft.svn.core.wc2.SvnResolve resolve public void doLock (java.io.File[], boolean, java.lang.String) throws org.tmatesoft.svn.core.SVNException int i java.io.File[] paths boolean stealLock String lockMessage org.tmatesoft.svn.core.wc2.SvnSetLock lock public void doLock (org.tmatesoft.svn.core.SVNURL[], boolean, java.lang.String) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNURL[] urls boolean stealLock String lockMessage org.tmatesoft.svn.core.wc2.SvnSetLock lock public void doUnlock (java.io.File[], boolean) throws org.tmatesoft.svn.core.SVNException int i java.io.File[] paths boolean breakLock org.tmatesoft.svn.core.wc2.SvnUnlock unlock public void doUnlock (org.tmatesoft.svn.core.SVNURL[], boolean) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNURL[] urls boolean breakLock org.tmatesoft.svn.core.wc2.SvnUnlock unlock public void doInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.wc.ISVNInfoHandler handler public void doInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.wc.ISVNInfoHandler handler public void doInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, java.util.Collection, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth java.util.Collection changeLists org.tmatesoft.svn.core.wc.ISVNInfoHandler handler org.tmatesoft.svn.core.wc2.SvnGetInfo getInfo public void doInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.wc.ISVNInfoHandler handler public void doInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNInfoHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNInfoHandler handler org.tmatesoft.svn.core.wc2.SvnGetInfo getInfo public java.lang.String doGetWorkingCopyID (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File path String trailURL public java.lang.String doGetWorkingCopyID (java.io.File, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.SVNFileType ft org.tmatesoft.svn.core.SVNException e java.io.File path String trailURL boolean committed org.tmatesoft.svn.core.wc2.SvnGetStatusSummary gs org.tmatesoft.svn.core.wc2.SvnStatusSummary summary StringBuffer result public org.tmatesoft.svn.core.wc.SVNInfo doInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNInfo[] info org.tmatesoft.svn.core.wc2.SvnGetInfo getInfo public org.tmatesoft.svn.core.wc.SVNInfo doInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNInfo[] info org.tmatesoft.svn.core.wc2.SvnGetInfo getInfo public void doCleanupWCProperties (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File directory org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 oldClient public void doSetWCFormat (java.io.File, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnUpgrade upgrade org.tmatesoft.svn.core.internal.wc16.SVNWCClient16 oldClient java.io.File directory int format public void doSetProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path String propName org.tmatesoft.svn.core.SVNPropertyValue propValue boolean force boolean recursive org.tmatesoft.svn.core.wc.ISVNPropertyHandler handler static void <clinit> () }
org/tmatesoft/svn/core/wc/SVNCommitPacket.class
SVNCommitPacket.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNCommitPacket extends java.lang.Object { public static final org.tmatesoft.svn.core.wc.SVNCommitPacket EMPTY private org.tmatesoft.svn.core.wc.SVNCommitItem[] myCommitItems private java.util.Map myLockTokens private boolean[] myIsSkipped private boolean myIsDisposed public void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess, org.tmatesoft.svn.core.wc.SVNCommitItem[], java.util.Map) int i org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess org.tmatesoft.svn.core.wc.SVNCommitItem[] items java.util.Map lockTokens public org.tmatesoft.svn.core.wc.SVNCommitItem[] getCommitItems () public void setCommitItemSkipped (org.tmatesoft.svn.core.wc.SVNCommitItem, boolean) org.tmatesoft.svn.core.wc.SVNCommitItem item boolean skipped int index public boolean isCommitItemSkipped (org.tmatesoft.svn.core.wc.SVNCommitItem) org.tmatesoft.svn.core.wc.SVNCommitItem item int index public boolean isDisposed () public void dispose () throws org.tmatesoft.svn.core.SVNException int i private int getItemIndex (org.tmatesoft.svn.core.wc.SVNCommitItem) org.tmatesoft.svn.core.wc.SVNCommitItem commitItem int i org.tmatesoft.svn.core.wc.SVNCommitItem item public java.util.Map getLockTokens () public org.tmatesoft.svn.core.wc.SVNCommitPacket removeSkippedItems () org.tmatesoft.svn.core.wc.SVNCommitItem commitItem int i java.util.Collection items java.util.Map lockTokens org.tmatesoft.svn.core.wc.SVNCommitItem[] filteredItems public java.lang.String toString () org.tmatesoft.svn.core.wc.SVNCommitItem commitItem int i StringBuffer result static void <clinit> () }
org/tmatesoft/svn/core/wc/SVNChangelistClient.class
SVNChangelistClient.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNChangelistClient extends org.tmatesoft.svn.core.wc.SVNBasicClient { public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void getChangeLists (java.io.File, java.util.Collection, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNChangelistHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path java.util.Collection changeLists org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNChangelistHandler handler public void getChangeListPaths (java.util.Collection, java.util.Collection, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNChangelistHandler) throws org.tmatesoft.svn.core.SVNException java.util.Collection changeLists java.util.Collection targets org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNChangelistHandler handler public void addToChangelist (java.io.File[], org.tmatesoft.svn.core.SVNDepth, java.lang.String, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.SVNDepth depth String changelist String[] changelists public void removeFromChangelist (java.io.File[], org.tmatesoft.svn.core.SVNDepth, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.SVNDepth depth String[] changelists public void doAddToChangelist (java.io.File[], org.tmatesoft.svn.core.SVNDepth, java.lang.String, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException int i java.io.File[] paths org.tmatesoft.svn.core.SVNDepth depth String changelist String[] changelists org.tmatesoft.svn.core.wc2.SvnSetChangelist cl public void doRemoveFromChangelist (java.io.File[], org.tmatesoft.svn.core.SVNDepth, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException int i java.io.File[] paths org.tmatesoft.svn.core.SVNDepth depth String[] changelists org.tmatesoft.svn.core.wc2.SvnSetChangelist cl public void doGetChangeListPaths (java.util.Collection, java.util.Collection, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNChangelistHandler) throws org.tmatesoft.svn.core.SVNException Object file java.util.Iterator i$ java.util.Collection changeLists java.util.Collection targets org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNChangelistHandler handler org.tmatesoft.svn.core.wc2.SvnGetChangelistPaths gp public void doGetChangeLists (java.io.File, java.util.Collection, org.tmatesoft.svn.core.SVNDepth, org.tmatesoft.svn.core.wc.ISVNChangelistHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path java.util.Collection changeLists org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.ISVNChangelistHandler handler org.tmatesoft.svn.core.wc2.SvnGetChangelistPaths gp }
org/tmatesoft/svn/core/wc/SVNWCClient$5.class
SVNWCClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNWCClient$5 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic String val$propName final synthetic org.tmatesoft.svn.core.wc.ISVNPropertyHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNWCClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNWCClient, java.lang.String, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNPropertyData propertyData String name org.tmatesoft.svn.core.wc.SVNPropertyData propertyData Object propertyName java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNProperties object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNDiffClient$7.class
SVNDiffClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNDiffClient$7 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.ISVNLogEntryHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNDiffClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNDiffClient, org.tmatesoft.svn.core.ISVNLogEntryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNLogEntry object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNPropertyConflictDescription.class
SVNPropertyConflictDescription.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNPropertyConflictDescription extends org.tmatesoft.svn.core.wc.SVNConflictDescription { private String myPropertyName public void <init> (org.tmatesoft.svn.core.wc.SVNMergeFileSet, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.wc.SVNConflictReason) org.tmatesoft.svn.core.wc.SVNMergeFileSet mergeFiles org.tmatesoft.svn.core.SVNNodeKind nodeKind String propertyName org.tmatesoft.svn.core.wc.SVNConflictAction conflictAction org.tmatesoft.svn.core.wc.SVNConflictReason conflictReason public boolean isTextConflict () public boolean isPropertyConflict () public boolean isTreeConflict () public java.lang.String getPropertyName () }
org/tmatesoft/svn/core/wc/SVNLogClient.class
SVNLogClient.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNLogClient extends org.tmatesoft.svn.core.wc.SVNBasicClient { private org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setDiffOptions (org.tmatesoft.svn.core.wc.SVNDiffOptions) org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions public org.tmatesoft.svn.core.wc.SVNDiffOptions getDiffOptions () public void doAnnotate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler org.tmatesoft.svn.core.wc2.SvnAnnotate annotate public void doAnnotate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean ignoreMimeType org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler org.tmatesoft.svn.core.wc2.SvnAnnotate annotate public void doAnnotate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean ignoreMimeType boolean includeMergedRevisions org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding org.tmatesoft.svn.core.wc2.SvnAnnotate annotate public void doAnnotate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler org.tmatesoft.svn.core.wc2.SvnAnnotate annotate public void doAnnotate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding org.tmatesoft.svn.core.wc2.SvnAnnotate annotate public void doAnnotate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean ignoreMimeType org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding org.tmatesoft.svn.core.wc2.SvnAnnotate annotate public void doAnnotate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNAnnotateHandler, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean ignoreMimeType boolean includeMergedRevisions org.tmatesoft.svn.core.wc.ISVNAnnotateHandler handler String inputEncoding org.tmatesoft.svn.core.wc2.SvnAnnotate annotate public void doLog (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, long, org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean stopOnCopy boolean discoverChangedPaths long limit org.tmatesoft.svn.core.ISVNLogEntryHandler handler java.util.Collection revisionRanges public void doLog (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, long, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File file java.io.File[] arr$ int len$ int i$ java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.wc.SVNRevision pegRevision boolean stopOnCopy boolean discoverChangedPaths boolean includeMergedRevisions long limit String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc2.SvnLog log public void doLog (java.io.File[], java.util.Collection, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, long, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File file java.io.File[] arr$ int len$ int i$ java.io.File[] paths java.util.Collection revisionRanges org.tmatesoft.svn.core.wc.SVNRevision pegRevision boolean stopOnCopy boolean discoverChangedPaths boolean includeMergedRevisions long limit String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc2.SvnLog log public void doLog (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, long, org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean stopOnCopy boolean discoverChangedPaths long limit org.tmatesoft.svn.core.ISVNLogEntryHandler handler java.util.Collection revisionRanges public void doLog (org.tmatesoft.svn.core.SVNURL, java.lang.String[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, long, org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String[] paths org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean stopOnCopy boolean discoverChangedPaths long limit org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void doLog (org.tmatesoft.svn.core.SVNURL, java.lang.String[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, long, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String[] paths org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean stopOnCopy boolean discoverChangedPaths boolean includeMergedRevisions long limit String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc2.SvnLog log public void doLog (org.tmatesoft.svn.core.SVNURL, java.lang.String[], org.tmatesoft.svn.core.wc.SVNRevision, java.util.Collection, boolean, boolean, boolean, long, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url String[] paths org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.util.Collection revisionRanges boolean stopOnCopy boolean discoverChangedPaths boolean includeMergedRevisions long limit String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc2.SvnLog log public void doList (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean fetchLocks boolean recursive org.tmatesoft.svn.core.ISVNDirEntryHandler handler public void doList (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.SVNDepth, int, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean fetchLocks org.tmatesoft.svn.core.SVNDepth depth int entryFields org.tmatesoft.svn.core.ISVNDirEntryHandler handler org.tmatesoft.svn.core.wc2.SvnList list public void doList (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.ISVNDirEntryHandler handler public void doList (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean fetchLocks boolean recursive org.tmatesoft.svn.core.ISVNDirEntryHandler handler public void doList (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.SVNDepth, int, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean fetchLocks org.tmatesoft.svn.core.SVNDepth depth int entryFields org.tmatesoft.svn.core.ISVNDirEntryHandler handler org.tmatesoft.svn.core.wc2.SvnList list public void doList (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, org.tmatesoft.svn.core.ISVNDirEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive org.tmatesoft.svn.core.ISVNDirEntryHandler handler }
org/tmatesoft/svn/core/wc/SVNConflictResult.class
SVNConflictResult.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNConflictResult extends java.lang.Object { private org.tmatesoft.svn.core.wc.SVNConflictChoice myConflictChoice private java.io.File myMergedFile private boolean myIsSaveMerged public void <init> (org.tmatesoft.svn.core.wc.SVNConflictChoice, java.io.File) org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice java.io.File mergedFile public void <init> (org.tmatesoft.svn.core.wc.SVNConflictChoice, java.io.File, boolean) org.tmatesoft.svn.core.wc.SVNConflictChoice conflictChoice java.io.File mergedFile boolean saveMerged public org.tmatesoft.svn.core.wc.SVNConflictChoice getConflictChoice () public java.io.File getMergedFile () public boolean isIsSaveMerged () }
org/tmatesoft/svn/core/wc/ISVNStatusHandler.class
ISVNStatusHandler.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNStatusHandler extends java.lang.Object { public abstract void handleStatus (org.tmatesoft.svn.core.wc.SVNStatus) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/SVNMergeResult.class
SVNMergeResult.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNMergeResult extends java.lang.Object { private org.tmatesoft.svn.core.wc.SVNStatusType myMergeStatus private org.tmatesoft.svn.core.wc.SVNConflictReason myConflictReason private void <init> (org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNConflictReason) org.tmatesoft.svn.core.wc.SVNStatusType status org.tmatesoft.svn.core.wc.SVNConflictReason conflictReason public static org.tmatesoft.svn.core.wc.SVNMergeResult createMergeResult (org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNConflictReason) org.tmatesoft.svn.core.wc.SVNStatusType status org.tmatesoft.svn.core.wc.SVNConflictReason reason public org.tmatesoft.svn.core.wc.SVNStatusType getMergeStatus () public org.tmatesoft.svn.core.wc.SVNConflictReason getConflictReason () }
org/tmatesoft/svn/core/wc/SVNStatus.class
SVNStatus.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNStatus extends java.lang.Object { private org.tmatesoft.svn.core.SVNURL myURL private java.io.File myFile private org.tmatesoft.svn.core.SVNNodeKind myKind private org.tmatesoft.svn.core.wc.SVNRevision myRevision private org.tmatesoft.svn.core.wc.SVNRevision myCommittedRevision private java.util.Date myCommittedDate private String myAuthor private org.tmatesoft.svn.core.wc.SVNStatusType myContentsStatus private org.tmatesoft.svn.core.wc.SVNStatusType myPropertiesStatus private org.tmatesoft.svn.core.wc.SVNStatusType myRemoteContentsStatus private org.tmatesoft.svn.core.wc.SVNStatusType myRemoteNodeStatus private org.tmatesoft.svn.core.wc.SVNStatusType myRemotePropertiesStatus private boolean myIsLocked private boolean myIsCopied private boolean myIsSwitched private boolean myIsFileExternal private java.io.File myConflictNewFile private java.io.File myConflictOldFile private java.io.File myConflictWrkFile private java.io.File myPropRejectFile private String myCopyFromURL private org.tmatesoft.svn.core.wc.SVNRevision myCopyFromRevision private org.tmatesoft.svn.core.SVNLock myRemoteLock private org.tmatesoft.svn.core.SVNLock myLocalLock private java.util.Map myEntryProperties private org.tmatesoft.svn.core.wc.SVNRevision myRemoteRevision private org.tmatesoft.svn.core.SVNURL myRemoteURL private org.tmatesoft.svn.core.SVNNodeKind myRemoteKind private String myRemoteAuthor private java.util.Date myRemoteDate private java.util.Date myLocalContentsDate private java.util.Date myLocalPropertiesDate private org.tmatesoft.svn.core.internal.wc.admin.SVNEntry myEntry private String myChangelistName private int myWorkingCopyFormat private org.tmatesoft.svn.core.wc.SVNTreeConflictDescription myTreeConflict private boolean myIsConflicted private org.tmatesoft.svn.core.wc.SVNStatusType myNodeStatus private org.tmatesoft.svn.core.SVNURL myRepositoryRootURL private String myRepositoryUUID private String myRepositoryRelativePath private boolean myIsVersioned private org.tmatesoft.svn.core.SVNDepth myDepth public void <init> (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.util.Date, java.lang.String, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, boolean, boolean, boolean, boolean, java.io.File, java.io.File, java.io.File, java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNLock, java.util.Map, java.lang.String, int, org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) org.tmatesoft.svn.core.SVNURL url java.io.File file org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNRevision committedRevision java.util.Date committedDate String author org.tmatesoft.svn.core.wc.SVNStatusType contentsStatus org.tmatesoft.svn.core.wc.SVNStatusType propertiesStatus org.tmatesoft.svn.core.wc.SVNStatusType remoteContentsStatus org.tmatesoft.svn.core.wc.SVNStatusType remotePropertiesStatus boolean isLocked boolean isCopied boolean isSwitched boolean isFileExternal java.io.File conflictNewFile java.io.File conflictOldFile java.io.File conflictWrkFile java.io.File projRejectFile String copyFromURL org.tmatesoft.svn.core.wc.SVNRevision copyFromRevision org.tmatesoft.svn.core.SVNLock remoteLock org.tmatesoft.svn.core.SVNLock localLock java.util.Map entryProperties String changelistName int wcFormatVersion org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict public void <init> () public org.tmatesoft.svn.core.SVNURL getURL () public org.tmatesoft.svn.core.SVNURL getRemoteURL () public java.io.File getFile () public org.tmatesoft.svn.core.SVNNodeKind getKind () public org.tmatesoft.svn.core.wc.SVNRevision getRevision () public org.tmatesoft.svn.core.wc.SVNRevision getCommittedRevision () public java.util.Date getCommittedDate () public java.lang.String getAuthor () public org.tmatesoft.svn.core.wc.SVNStatusType getContentsStatus () public org.tmatesoft.svn.core.wc.SVNStatusType getPropertiesStatus () public org.tmatesoft.svn.core.wc.SVNStatusType getRemoteContentsStatus () public org.tmatesoft.svn.core.wc.SVNStatusType getRemotePropertiesStatus () public boolean isLocked () public boolean isCopied () public boolean isSwitched () public boolean isFileExternal () public java.io.File getConflictNewFile () public java.io.File getConflictOldFile () public java.io.File getConflictWrkFile () public java.io.File getPropRejectFile () public java.lang.String getCopyFromURL () public org.tmatesoft.svn.core.wc.SVNRevision getCopyFromRevision () public org.tmatesoft.svn.core.SVNLock getRemoteLock () public org.tmatesoft.svn.core.SVNLock getLocalLock () public java.util.Map getEntryProperties () public org.tmatesoft.svn.core.wc.SVNRevision getRemoteRevision () public org.tmatesoft.svn.core.SVNNodeKind getRemoteKind () public java.util.Date getRemoteDate () public java.lang.String getRemoteAuthor () public java.util.Date getWorkingContentsDate () public java.util.Date getWorkingPropertiesDate () java.io.File propFile public void markExternal () public void setRemoteStatus (org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.wc.SVNStatusType contents org.tmatesoft.svn.core.wc.SVNStatusType props org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNNodeKind kind public void setRemoteStatus (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNRevision, java.util.Date, java.lang.String) org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNStatusType contents org.tmatesoft.svn.core.wc.SVNStatusType props org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNRevision revision java.util.Date date String author public void setContentsStatus (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType statusType public void setEntry (org.tmatesoft.svn.core.internal.wc.admin.SVNEntry) org.tmatesoft.svn.core.internal.wc.admin.SVNEntry entry public org.tmatesoft.svn.core.internal.wc.admin.SVNEntry getEntry () public java.lang.String getChangelistName () public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription getTreeConflict () public int getWorkingCopyFormat () public void setConflicted (boolean) boolean isConflicted public boolean isConflicted () public boolean isVersioned () public org.tmatesoft.svn.core.wc.SVNStatusType getRemoteNodeStatus () public org.tmatesoft.svn.core.wc.SVNStatusType getCombinedNodeAndContentsStatus () public org.tmatesoft.svn.core.wc.SVNStatusType getCombinedRemoteNodeAndContentsStatus () public org.tmatesoft.svn.core.wc.SVNStatusType getNodeStatus () public org.tmatesoft.svn.core.SVNURL getRepositoryRootURL () public java.lang.String getRepositoryUUID () public java.lang.String getRepositoryRelativePath () public org.tmatesoft.svn.core.SVNDepth getDepth () public void setRemoteNodeStatus (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType remoteNodeStatus public void setNodeStatus (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType nodeStatus public void setRepositoryRootURL (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL repositoryRootURL public void setRepositoryUUID (java.lang.String) String repositoryUUID public void setRepositoryRelativePath (java.lang.String) String repositoryRelativePath public void setURL (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL uRL public void setFile (java.io.File) java.io.File file public void setKind (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind kind public void setRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision revision public void setCommittedRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision committedRevision public void setCommittedDate (java.util.Date) java.util.Date committedDate public void setAuthor (java.lang.String) String author public void setPropertiesStatus (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType propertiesStatus public void setRemoteContentsStatus (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType remoteContentsStatus public void setRemotePropertiesStatus (org.tmatesoft.svn.core.wc.SVNStatusType) org.tmatesoft.svn.core.wc.SVNStatusType remotePropertiesStatus public void setIsLocked (boolean) boolean isLocked public void setIsCopied (boolean) boolean isCopied public void setIsSwitched (boolean) boolean isSwitched public void setIsFileExternal (boolean) boolean isFileExternal public void setConflictNewFile (java.io.File) java.io.File conflictNewFile public void setConflictOldFile (java.io.File) java.io.File conflictOldFile public void setConflictWrkFile (java.io.File) java.io.File conflictWrkFile public void setPropRejectFile (java.io.File) java.io.File propRejectFile public void setCopyFromURL (java.lang.String) String copyFromURL public void setCopyFromRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision copyFromRevision public void setRemoteLock (org.tmatesoft.svn.core.SVNLock) org.tmatesoft.svn.core.SVNLock remoteLock public void setLocalLock (org.tmatesoft.svn.core.SVNLock) org.tmatesoft.svn.core.SVNLock localLock public void setEntryProperties (java.util.Map) java.util.Map entryProperties public void setRemoteRevision (org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision remoteRevision public void setRemoteURL (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL remoteURL public void setRemoteKind (org.tmatesoft.svn.core.SVNNodeKind) org.tmatesoft.svn.core.SVNNodeKind remoteKind public void setRemoteAuthor (java.lang.String) String remoteAuthor public void setRemoteDate (java.util.Date) java.util.Date remoteDate public void setLocalContentsDate (java.util.Date) java.util.Date localContentsDate public void setLocalPropertiesDate (java.util.Date) java.util.Date localPropertiesDate public void setChangelistName (java.lang.String) String changelistName public void setWorkingCopyFormat (int) int workingCopyFormat public void setTreeConflict (org.tmatesoft.svn.core.wc.SVNTreeConflictDescription) org.tmatesoft.svn.core.wc.SVNTreeConflictDescription treeConflict public void setIsConflicted (boolean) boolean isConflicted public void setIsVersioned (boolean) boolean isVersioned public void setDepth (org.tmatesoft.svn.core.SVNDepth) org.tmatesoft.svn.core.SVNDepth depth }
org/tmatesoft/svn/core/wc/SVNEvent.class
SVNEvent.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNEvent extends java.lang.Object { private java.io.File myFile private org.tmatesoft.svn.core.SVNNodeKind myNodeKind private String myMimeType private long myRevision private long myPreviousRevision private org.tmatesoft.svn.core.SVNURL myURL private org.tmatesoft.svn.core.SVNURL myPreviousURL private org.tmatesoft.svn.core.wc.SVNStatusType myContentsStatus private org.tmatesoft.svn.core.wc.SVNStatusType myPropertiesStatus private org.tmatesoft.svn.core.wc.SVNStatusType myLockStatus private org.tmatesoft.svn.core.SVNLock myLock private org.tmatesoft.svn.core.SVNErrorMessage myErrorMessage private org.tmatesoft.svn.core.wc.SVNEventAction myAction private org.tmatesoft.svn.core.wc.SVNEventAction myExpectedAction private String myChangelistName private org.tmatesoft.svn.core.SVNMergeRange myRange private org.tmatesoft.svn.core.SVNProperties myRevisionProperties private String myPropertyName private Object info public void <init> (org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.wc.SVNEventAction) org.tmatesoft.svn.core.SVNErrorMessage errorMessage org.tmatesoft.svn.core.wc.SVNEventAction expected public void <init> (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, java.lang.String, long, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.wc.SVNStatusType, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.wc.SVNEventAction, org.tmatesoft.svn.core.SVNErrorMessage, org.tmatesoft.svn.core.SVNMergeRange, java.lang.String, org.tmatesoft.svn.core.SVNProperties, java.lang.String) java.io.File file org.tmatesoft.svn.core.SVNNodeKind kind String mimetype long revision org.tmatesoft.svn.core.wc.SVNStatusType cstatus org.tmatesoft.svn.core.wc.SVNStatusType pstatus org.tmatesoft.svn.core.wc.SVNStatusType lstatus org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.wc.SVNEventAction action org.tmatesoft.svn.core.wc.SVNEventAction expected org.tmatesoft.svn.core.SVNErrorMessage error org.tmatesoft.svn.core.SVNMergeRange range String changelistName org.tmatesoft.svn.core.SVNProperties revisionProperties String propertyName public java.io.File getFile () public org.tmatesoft.svn.core.wc.SVNEventAction getAction () public org.tmatesoft.svn.core.wc.SVNEventAction getExpectedAction () public org.tmatesoft.svn.core.wc.SVNStatusType getContentsStatus () public org.tmatesoft.svn.core.SVNErrorMessage getErrorMessage () public org.tmatesoft.svn.core.SVNLock getLock () public org.tmatesoft.svn.core.wc.SVNStatusType getLockStatus () public java.lang.String getMimeType () public org.tmatesoft.svn.core.SVNNodeKind getNodeKind () public org.tmatesoft.svn.core.wc.SVNStatusType getPropertiesStatus () public long getRevision () public long getPreviousRevision () public org.tmatesoft.svn.core.SVNURL getURL () public org.tmatesoft.svn.core.SVNURL getPreviousURL () public java.lang.String getChangelistName () public org.tmatesoft.svn.core.SVNMergeRange getMergeRange () public void setPreviousRevision (long) long previousRevision public void setURL (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public void setPreviousURL (org.tmatesoft.svn.core.SVNURL) org.tmatesoft.svn.core.SVNURL url public java.lang.String toString () StringBuffer sb public java.lang.Object getInfo () public void setInfo (java.lang.Object) Object info public void setFile (java.io.File) java.io.File path public org.tmatesoft.svn.core.SVNProperties getRevisionProperties () public void setRevisionProperties (org.tmatesoft.svn.core.SVNProperties) org.tmatesoft.svn.core.SVNProperties revisionProperties public java.lang.String getPropertyName () public void setPropertyName (java.lang.String) String propertyName }
org/tmatesoft/svn/core/wc/SVNStatusClient.class
SVNStatusClient.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNStatusClient extends org.tmatesoft.svn.core.wc.SVNBasicClient { private org.tmatesoft.svn.core.wc.ISVNStatusFileProvider myFilesProvider public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public long doStatus (java.io.File, boolean, boolean, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean recursive boolean remote boolean reportAll boolean includeIgnored org.tmatesoft.svn.core.wc.ISVNStatusHandler handler public long doStatus (java.io.File, boolean, boolean, boolean, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean recursive boolean remote boolean reportAll boolean includeIgnored boolean collectParentExternals org.tmatesoft.svn.core.wc.ISVNStatusHandler handler public long doStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive boolean remote boolean reportAll boolean includeIgnored boolean collectParentExternals org.tmatesoft.svn.core.wc.ISVNStatusHandler handler public long doStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNStatusHandler, java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean remote boolean reportAll boolean includeIgnored boolean collectParentExternals org.tmatesoft.svn.core.wc.ISVNStatusHandler handler java.util.Collection changeLists org.tmatesoft.svn.core.wc2.SvnGetStatus getStatus public org.tmatesoft.svn.core.wc.SVNStatus doStatus (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean remote public org.tmatesoft.svn.core.wc.SVNStatus doStatus (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path boolean remote boolean collectParentExternals org.tmatesoft.svn.core.wc.SVNStatus[] result java.io.File absPath org.tmatesoft.svn.core.wc.ISVNStatusHandler handler public void setFilesProvider (org.tmatesoft.svn.core.wc.ISVNStatusFileProvider) org.tmatesoft.svn.core.wc.ISVNStatusFileProvider filesProvider }
org/tmatesoft/svn/core/wc/SVNOperation.class
SVNOperation.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNOperation extends java.lang.Object { public static final org.tmatesoft.svn.core.wc.SVNOperation UPDATE public static final org.tmatesoft.svn.core.wc.SVNOperation SWITCH public static final org.tmatesoft.svn.core.wc.SVNOperation MERGE public static final org.tmatesoft.svn.core.wc.SVNOperation NONE private final String myName public static org.tmatesoft.svn.core.wc.SVNOperation fromString (java.lang.String) String operation private void <init> (java.lang.String) String name public java.lang.String getName () public java.lang.String toString () static void <clinit> () }
org/tmatesoft/svn/core/wc/SVNConflictReason.class
SVNConflictReason.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNConflictReason extends java.lang.Object { public static final org.tmatesoft.svn.core.wc.SVNConflictReason EDITED public static final org.tmatesoft.svn.core.wc.SVNConflictReason OBSTRUCTED public static final org.tmatesoft.svn.core.wc.SVNConflictReason DELETED public static final org.tmatesoft.svn.core.wc.SVNConflictReason MISSING public static final org.tmatesoft.svn.core.wc.SVNConflictReason UNVERSIONED public static final org.tmatesoft.svn.core.wc.SVNConflictReason ADDED public static final org.tmatesoft.svn.core.wc.SVNConflictReason REPLACED private final String myName public static org.tmatesoft.svn.core.wc.SVNConflictReason fromString (java.lang.String) String reason private void <init> (java.lang.String) String name public java.lang.String getName () public java.lang.String toString () static void <clinit> () }
org/tmatesoft/svn/core/wc/SVNWCClient$2.class
SVNWCClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNWCClient$2 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.ISVNPropertyHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNWCClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNWCClient, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc.SVNPropertyData object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNWCClient$7.class
SVNWCClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNWCClient$7 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic String val$propName final synthetic org.tmatesoft.svn.core.wc.ISVNPropertyHandler val$handler final synthetic org.tmatesoft.svn.core.wc2.SvnGetProperties val$getProperties final synthetic org.tmatesoft.svn.core.wc.SVNWCClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNWCClient, java.lang.String, org.tmatesoft.svn.core.wc.ISVNPropertyHandler, org.tmatesoft.svn.core.wc2.SvnGetProperties) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNPropertyData pdata String name java.util.Iterator i$ org.tmatesoft.svn.core.wc.SVNPropertyData pdata org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNProperties object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/ISVNFileFilter.class
ISVNFileFilter.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNFileFilter extends java.lang.Object { public abstract boolean accept (java.io.File) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/SVNWCClient$4.class
SVNWCClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNWCClient$4 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic String val$propName final synthetic org.tmatesoft.svn.core.wc.SVNPropertyData[] val$data final synthetic org.tmatesoft.svn.core.wc.SVNWCClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNWCClient, java.lang.String, org.tmatesoft.svn.core.wc.SVNPropertyData[]) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNProperties object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNDiffClient$4.class
SVNDiffClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNDiffClient$4 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.ISVNLogEntryHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNDiffClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNDiffClient, org.tmatesoft.svn.core.ISVNLogEntryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNLogEntry object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNLogClient$2.class
SVNLogClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNLogClient$2 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.ISVNDirEntryHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNLogClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNLogClient, org.tmatesoft.svn.core.ISVNDirEntryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNDirEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNDirEntry object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/DefaultSVNRepositoryPool$TimeoutTask.class
DefaultSVNRepositoryPool.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool$TimeoutTask extends java.lang.Object implements java.lang.Runnable { final synthetic org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool this$0 private void <init> (org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool) public void run () org.tmatesoft.svn.core.io.SVNRepository repos long time java.util.Iterator repositories long currentTime Throwable th synthetic void <init> (org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool, org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool$1) org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool x0 org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool$1 x1 }
org/tmatesoft/svn/core/wc/ISVNConflictHandler.class
ISVNConflictHandler.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNConflictHandler extends java.lang.Object { public abstract org.tmatesoft.svn.core.wc.SVNConflictResult handleConflict (org.tmatesoft.svn.core.wc.SVNConflictDescription) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/SVNWCClient$1.class
SVNWCClient.java package org.tmatesoft.svn.core.wc final org.tmatesoft.svn.core.wc.SVNWCClient$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNAddParameters { void <init> () public org.tmatesoft.svn.core.wc.ISVNAddParameters$Action onInconsistentEOLs (java.io.File) java.io.File file }
org/tmatesoft/svn/core/wc/SVNDiffOptions.class
SVNDiffOptions.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNDiffOptions extends java.lang.Object { private boolean myIsIgnoreAllWhitespace private boolean myIsIgnoreAmountOfWhitespace private boolean myIsIgnoreEOLStyle public void <init> () public void <init> (boolean, boolean, boolean) boolean ignoreAllWhitespace boolean ignoreAmountOfWhiteSpace boolean ignoreEOLStyle public boolean isIgnoreAllWhitespace () public void setIgnoreAllWhitespace (boolean) boolean isIgnoreAllWhitespace public boolean isIgnoreAmountOfWhitespace () public void setIgnoreAmountOfWhitespace (boolean) boolean isIgnoreAmountOfWhitespace public boolean isIgnoreEOLStyle () public void setIgnoreEOLStyle (boolean) boolean isIgnoreEOLStyle public java.util.Collection toOptionsCollection () java.util.Collection opts }
org/tmatesoft/svn/core/wc/SVNDiffClient$8.class
SVNDiffClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNDiffClient$8 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.ISVNLogEntryHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNDiffClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNDiffClient, org.tmatesoft.svn.core.ISVNLogEntryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNLogEntry object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNWCClient$6.class
SVNWCClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNWCClient$6 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic String val$propName final synthetic org.tmatesoft.svn.core.wc.ISVNPropertyHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNWCClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNWCClient, java.lang.String, org.tmatesoft.svn.core.wc.ISVNPropertyHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNPropertyData propertyData String name org.tmatesoft.svn.core.wc.SVNPropertyData propertyData Object propertyName java.util.Iterator i$ org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNProperties object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNPropertyData.class
SVNPropertyData.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNPropertyData extends java.lang.Object { private org.tmatesoft.svn.core.SVNPropertyValue myValue private String myName public void <init> (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue, org.tmatesoft.svn.core.wc.ISVNOptions) String nativeEOL String name org.tmatesoft.svn.core.SVNPropertyValue data org.tmatesoft.svn.core.wc.ISVNOptions options public java.lang.String getName () public org.tmatesoft.svn.core.SVNPropertyValue getValue () public int hashCode () int result public boolean equals (java.lang.Object) Object obj org.tmatesoft.svn.core.wc.SVNPropertyData other }
org/tmatesoft/svn/core/wc/ISVNCommitParameters.class
ISVNCommitParameters.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNCommitParameters extends java.lang.Object { public static final org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action ERROR public static final org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action SKIP public static final org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action DELETE public abstract org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action onMissingFile (java.io.File) public abstract org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action onMissingDirectory (java.io.File) public abstract boolean onDirectoryDeletion (java.io.File) public abstract boolean onFileDeletion (java.io.File) static void <clinit> () }
org/tmatesoft/svn/core/wc/ISVNStatusFileProvider.class
ISVNStatusFileProvider.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNStatusFileProvider extends java.lang.Object { public abstract java.util.Map getChildrenFiles (java.io.File) }
org/tmatesoft/svn/core/wc/ISVNCommitHandler.class
ISVNCommitHandler.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNCommitHandler extends java.lang.Object { public abstract java.lang.String getCommitMessage (java.lang.String, org.tmatesoft.svn.core.wc.SVNCommitItem[]) throws org.tmatesoft.svn.core.SVNException public abstract org.tmatesoft.svn.core.SVNProperties getRevisionProperties (java.lang.String, org.tmatesoft.svn.core.wc.SVNCommitItem[], org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/SVNWCClient$12.class
SVNWCClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNWCClient$12 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.SVNInfo[] val$info final synthetic org.tmatesoft.svn.core.wc.SVNWCClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNWCClient, org.tmatesoft.svn.core.wc.SVNInfo[]) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnInfo object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNDiffClient$2.class
SVNDiffClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNDiffClient$2 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.ISVNLogEntryHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNDiffClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNDiffClient, org.tmatesoft.svn.core.ISVNLogEntryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNLogEntry object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNConflictDescription.class
SVNConflictDescription.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.SVNConflictDescription extends java.lang.Object { private org.tmatesoft.svn.core.wc.SVNMergeFileSet myMergeFiles private org.tmatesoft.svn.core.SVNNodeKind myNodeKind private org.tmatesoft.svn.core.wc.SVNConflictAction myConflictAction private org.tmatesoft.svn.core.wc.SVNConflictReason myConflictReason public void <init> (org.tmatesoft.svn.core.wc.SVNMergeFileSet, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.wc.SVNConflictReason) org.tmatesoft.svn.core.wc.SVNMergeFileSet mergeFiles org.tmatesoft.svn.core.SVNNodeKind nodeKind org.tmatesoft.svn.core.wc.SVNConflictAction conflictAction org.tmatesoft.svn.core.wc.SVNConflictReason conflictReason public abstract boolean isTextConflict () public abstract boolean isPropertyConflict () public abstract boolean isTreeConflict () public java.io.File getPath () public org.tmatesoft.svn.core.wc.SVNMergeFileSet getMergeFiles () public org.tmatesoft.svn.core.wc.SVNConflictAction getConflictAction () public org.tmatesoft.svn.core.wc.SVNConflictReason getConflictReason () public org.tmatesoft.svn.core.SVNNodeKind getNodeKind () public abstract java.lang.String getPropertyName () public void setConflictAction (org.tmatesoft.svn.core.wc.SVNConflictAction) org.tmatesoft.svn.core.wc.SVNConflictAction action }
org/tmatesoft/svn/core/wc/ISVNEventHandler.class
ISVNEventHandler.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNEventHandler extends java.lang.Object implements org.tmatesoft.svn.core.ISVNCanceller { public static final double UNKNOWN public abstract void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/ISVNPropertyHandler$1.class
ISVNPropertyHandler.java package org.tmatesoft.svn.core.wc final org.tmatesoft.svn.core.wc.ISVNPropertyHandler$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNPropertyHandler { void <init> () public void handleProperty (java.io.File, org.tmatesoft.svn.core.wc.SVNPropertyData) java.io.File path org.tmatesoft.svn.core.wc.SVNPropertyData property public void handleProperty (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNPropertyData) org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNPropertyData property public void handleProperty (long, org.tmatesoft.svn.core.wc.SVNPropertyData) long revision org.tmatesoft.svn.core.wc.SVNPropertyData property }
org/tmatesoft/svn/core/wc/SVNWCClient$8.class
SVNWCClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNWCClient$8 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic String val$propName final synthetic org.tmatesoft.svn.core.wc.ISVNPropertyHandler val$handler final synthetic org.tmatesoft.svn.core.wc2.SvnGetProperties val$getProperties final synthetic org.tmatesoft.svn.core.wc.SVNWCClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNWCClient, java.lang.String, org.tmatesoft.svn.core.wc.ISVNPropertyHandler, org.tmatesoft.svn.core.wc2.SvnGetProperties) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNPropertyData pdata String name java.util.Iterator i$ org.tmatesoft.svn.core.wc.SVNPropertyData pdata org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNProperties object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNTextConflictDescription.class
SVNTextConflictDescription.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNTextConflictDescription extends org.tmatesoft.svn.core.wc.SVNConflictDescription { public void <init> (org.tmatesoft.svn.core.wc.SVNMergeFileSet, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.wc.SVNConflictReason) org.tmatesoft.svn.core.wc.SVNMergeFileSet mergeFiles org.tmatesoft.svn.core.SVNNodeKind nodeKind org.tmatesoft.svn.core.wc.SVNConflictAction conflictAction org.tmatesoft.svn.core.wc.SVNConflictReason conflictReason public boolean isTextConflict () public boolean isPropertyConflict () public boolean isTreeConflict () public java.lang.String getPropertyName () }
org/tmatesoft/svn/core/wc/SVNStatusType.class
SVNStatusType.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNStatusType extends java.lang.Object { private int myID private String myName private char myCode public static final org.tmatesoft.svn.core.wc.SVNStatusType INAPPLICABLE public static final org.tmatesoft.svn.core.wc.SVNStatusType UNKNOWN public static final org.tmatesoft.svn.core.wc.SVNStatusType UNCHANGED public static final org.tmatesoft.svn.core.wc.SVNStatusType MISSING public static final org.tmatesoft.svn.core.wc.SVNStatusType OBSTRUCTED public static final org.tmatesoft.svn.core.wc.SVNStatusType CHANGED public static final org.tmatesoft.svn.core.wc.SVNStatusType MERGED public static final org.tmatesoft.svn.core.wc.SVNStatusType CONFLICTED public static final org.tmatesoft.svn.core.wc.SVNStatusType CONFLICTED_UNRESOLVED public static final org.tmatesoft.svn.core.wc.SVNStatusType LOCK_INAPPLICABLE public static final org.tmatesoft.svn.core.wc.SVNStatusType LOCK_UNKNOWN public static final org.tmatesoft.svn.core.wc.SVNStatusType LOCK_UNCHANGED public static final org.tmatesoft.svn.core.wc.SVNStatusType LOCK_LOCKED public static final org.tmatesoft.svn.core.wc.SVNStatusType LOCK_UNLOCKED public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_NONE public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_NORMAL public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_MODIFIED public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_ADDED public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_DELETED public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_UNVERSIONED public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_MISSING public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_REPLACED public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_CONFLICTED public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_OBSTRUCTED public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_IGNORED public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_INCOMPLETE public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_EXTERNAL public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_NAME_CONFLICT public static final org.tmatesoft.svn.core.wc.SVNStatusType STATUS_MERGED public static final org.tmatesoft.svn.core.wc.SVNStatusType NO_MERGE private void <init> (int, java.lang.String) int id String name private void <init> (int, java.lang.String, char) int id String name char code public int getID () public char getCode () public java.lang.String toString () static void <clinit> () }
org/tmatesoft/svn/core/wc/SVNDiffClient$3.class
SVNDiffClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNDiffClient$3 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.ISVNLogEntryHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNDiffClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNDiffClient, org.tmatesoft.svn.core.ISVNLogEntryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNLogEntry object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/DefaultSVNRepositoryPool$DaemonThreadFactory.class
DefaultSVNRepositoryPool.java package org.tmatesoft.svn.core.wc final org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool$DaemonThreadFactory extends java.lang.Object implements java.util.concurrent.ThreadFactory { private void <init> () public java.lang.Thread newThread (java.lang.Runnable) Runnable r Thread t synthetic void <init> (org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool$1) org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool$1 x0 }
org/tmatesoft/svn/core/wc/SVNCommitItem.class
SVNCommitItem.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNCommitItem extends java.lang.Object { private org.tmatesoft.svn.core.wc.SVNRevision myRevision private java.io.File myFile private org.tmatesoft.svn.core.SVNURL myURL private org.tmatesoft.svn.core.SVNURL myCopyFromURL private org.tmatesoft.svn.core.SVNNodeKind myKind private boolean myIsAdded private boolean myIsDeleted private boolean myIsPropertiesModified private boolean myIsContentsModified private boolean myIsCopied private boolean myIsLocked private String myPath private org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess myWCAccess private org.tmatesoft.svn.core.wc.SVNRevision myCopyFromRevision private java.util.Map myOutgoingProperties private java.util.Map myIncomingProperties public void <init> (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, boolean, boolean, boolean) java.io.File file org.tmatesoft.svn.core.SVNURL URL org.tmatesoft.svn.core.SVNURL copyFromURL org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.SVNRevision copyFromRevision boolean isAdded boolean isDeleted boolean isPropertiesModified boolean isContentsModified boolean isCopied boolean locked public org.tmatesoft.svn.core.wc.SVNRevision getRevision () public org.tmatesoft.svn.core.wc.SVNRevision getCopyFromRevision () public java.io.File getFile () public org.tmatesoft.svn.core.SVNURL getURL () public org.tmatesoft.svn.core.SVNURL getCopyFromURL () public org.tmatesoft.svn.core.SVNNodeKind getKind () public boolean isAdded () public boolean isDeleted () public boolean isPropertiesModified () public boolean isContentsModified () public boolean isCopied () public boolean isLocked () public java.lang.String getPath () public void setPath (java.lang.String) String path public org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess getWCAccess () public java.util.Map getOutgoingProperties () public void setWCAccess (org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess wcAccess public void setProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue java.util.Map props private java.util.Map getProperties () public void setContentsModified (boolean) boolean modified public void setPropertiesModified (boolean) boolean modified public void setIncomingProperty (java.lang.String, org.tmatesoft.svn.core.SVNPropertyValue) String propertyName org.tmatesoft.svn.core.SVNPropertyValue propertyValue public java.util.Map getIncomingProperties () }
org/tmatesoft/svn/core/wc/DefaultSVNRepositoryPool$1.class
DefaultSVNRepositoryPool.java package org.tmatesoft.svn.core.wc synthetic org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool$1 extends java.lang.Object { }
org/tmatesoft/svn/core/wc/SVNRevisionRange.class
SVNRevisionRange.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNRevisionRange extends java.lang.Object { private org.tmatesoft.svn.core.wc.SVNRevision myStartRevision private org.tmatesoft.svn.core.wc.SVNRevision myEndRevision public void <init> (org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision public org.tmatesoft.svn.core.wc.SVNRevision getStartRevision () public org.tmatesoft.svn.core.wc.SVNRevision getEndRevision () }
org/tmatesoft/svn/core/wc/SVNBasicClient.class
SVNBasicClient.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNBasicClient extends java.lang.Object { private static final String SVNKIT_WC_17_PROPERTY private static final String SVNKIT_WC_17_DEFAULT private static final String SVNKIT_WC_17_EXPECTED private org.tmatesoft.svn.core.wc2.SvnOperationFactory operationFactory private boolean ignoreExternals private boolean leaveConflictsUnresolved private org.tmatesoft.svn.core.wc.ISVNPathListHandler pathListHandler private org.tmatesoft.svn.util.ISVNDebugLog debugLog protected void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options protected void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool pool org.tmatesoft.svn.core.wc.ISVNOptions options boolean autoDisposeRepositoryPool public static boolean isWC17Supported () protected static org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate dontWC17Support () throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err public org.tmatesoft.svn.core.wc.ISVNOptions getOptions () public void setOptions (org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNOptions options public void setIgnoreExternals (boolean) boolean ignore public boolean isIgnoreExternals () public void setLeaveConflictsUnresolved (boolean) boolean leave public boolean isLeaveConflictsUnresolved () public void setEventHandler (org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNEventHandler dispatcher public void setPathListHandler (org.tmatesoft.svn.core.wc.ISVNPathListHandler) org.tmatesoft.svn.core.wc.ISVNPathListHandler handler public org.tmatesoft.svn.core.wc.ISVNPathListHandler getPathListHandler () public void setDebugLog (org.tmatesoft.svn.util.ISVNDebugLog) org.tmatesoft.svn.util.ISVNDebugLog log public org.tmatesoft.svn.util.ISVNDebugLog getDebugLog () public org.tmatesoft.svn.core.SVNURL getReposRoot (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess access org.tmatesoft.svn.core.internal.wc16.SVNBasicDelegate delegate public org.tmatesoft.svn.core.SVNURL getReposRoot (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc2.SvnGetInfo info org.tmatesoft.svn.core.wc2.SvnInfo i public void setEventPathPrefix (java.lang.String) String prefix public org.tmatesoft.svn.core.wc2.SvnOperationFactory getOperationsFactory () }
org/tmatesoft/svn/core/wc/SVNWCClient$3.class
SVNWCClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNWCClient$3 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic String val$propName final synthetic org.tmatesoft.svn.core.wc.SVNPropertyData[] val$data final synthetic org.tmatesoft.svn.core.wc.SVNWCClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNWCClient, java.lang.String, org.tmatesoft.svn.core.wc.SVNPropertyData[]) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNProperties object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNStatusClient$1.class
SVNStatusClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNStatusClient$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc2.SvnGetStatus val$getStatus final synthetic org.tmatesoft.svn.core.wc.ISVNStatusHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNStatusClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNStatusClient, org.tmatesoft.svn.core.wc2.SvnGetStatus, org.tmatesoft.svn.core.wc.ISVNStatusHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnStatus status org.tmatesoft.svn.core.internal.wc17.SVNWCContext context public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/DefaultSVNDiffGenerator.class
DefaultSVNDiffGenerator.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.DefaultSVNDiffGenerator extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNDiffGenerator { protected static final String PROPERTIES_SEPARATOR protected static final String HEADER_SEPARATOR protected static final String WC_REVISION_LABEL protected static final java.io.InputStream EMPTY_FILE_IS private boolean myIsForcedBinaryDiff private String myAnchorPath1 private String myAnchorPath2 private org.tmatesoft.svn.core.wc.ISVNOptions myOptions private String myEncoding private byte[] myEOL private boolean myIsDiffDeleted private boolean myIsDiffAdded private boolean myIsDiffCopied private java.io.File myBasePath private boolean myIsDiffUnversioned private org.tmatesoft.svn.core.wc.SVNDiffOptions myDiffOptions private java.util.Collection myRawDiffOptions private String myDiffCommand private boolean myIsUseAbsolutePaths public void <init> () public void init (java.lang.String, java.lang.String) String anchorPath1 String anchorPath2 public void setDiffOptions (org.tmatesoft.svn.core.wc.SVNDiffOptions) org.tmatesoft.svn.core.wc.SVNDiffOptions options public void setRawDiffOptions (java.util.Collection) java.util.Collection options public void setOptions (org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNOptions options public void setExternalDiffCommand (java.lang.String) String command public void setBasePath (java.io.File) java.io.File basePath public void setFallbackToAbsolutePath (boolean) boolean fallback public void setDiffDeleted (boolean) boolean isDiffDeleted public boolean isDiffDeleted () public void setDiffAdded (boolean) boolean isDiffAdded public boolean isDiffAdded () public void setDiffCopied (boolean) boolean isDiffCopied public boolean isDiffCopied () public org.tmatesoft.svn.core.wc.SVNDiffOptions getDiffOptions () protected java.lang.String getDisplayPath (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String basePath String relativePath public void setForcedBinaryDiff (boolean) boolean forced public boolean isForcedBinaryDiff () public void displayPropDiff (java.lang.String, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.SVNPropertyValue originalValue org.tmatesoft.svn.core.SVNPropertyValue newValue java.util.Iterator changedPropNames String name org.tmatesoft.svn.core.SVNPropertyValue originalValue org.tmatesoft.svn.core.SVNPropertyValue newValue String headerFormat java.util.Iterator changedPropNames java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.IOException e java.io.IOException e String path org.tmatesoft.svn.core.SVNProperties baseProps org.tmatesoft.svn.core.SVNProperties diff java.io.OutputStream result java.io.ByteArrayOutputStream bos private byte[] getPropertyAsBytes (org.tmatesoft.svn.core.SVNPropertyValue, java.lang.String) java.io.UnsupportedEncodingException e org.tmatesoft.svn.core.SVNPropertyValue value String encoding protected java.io.File getBasePath () public void displayFileDiff (java.lang.String, java.io.File, java.io.File, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException java.io.IOException inner org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.IOException e org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.IOException e java.io.IOException e java.io.IOException e java.io.IOException e java.util.Collection diffOptions java.io.Writer writer org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e java.util.Collection args java.io.File diffCommandFile boolean tmpFile1 boolean tmpFile2 String currentDir String file1Path String file2Path java.io.IOException inner org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e java.io.IOException inner java.util.Map properties de.regnis.q.sequence.line.diff.QDiffGenerator generator java.io.Writer writer org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException e String path java.io.File file1 java.io.File file2 String rev1 String rev2 String mimeType1 String mimeType2 java.io.OutputStream result int i String p1 String p2 String label1 String label2 java.io.ByteArrayOutputStream bos String diffCommand String header java.io.RandomAccessFile is1 java.io.RandomAccessFile is2 public void setEncoding (java.lang.String) String encoding public java.lang.String getEncoding () public boolean hasEncoding () public boolean hasEOL () public java.lang.String getGlobalEncoding () org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions defaultOptions public void setEOL (byte[]) byte[] eol public byte[] getEOL () public java.io.File createTempDirectory () throws org.tmatesoft.svn.core.SVNException public boolean isDiffUnversioned () public void setDiffUnversioned (boolean) boolean diffUnversioned public void displayDeletedDirectory (java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String rev1 String rev2 public void displayAddedDirectory (java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException String path String rev1 String rev2 protected java.lang.String getExternalDiffCommand () protected org.tmatesoft.svn.core.wc.ISVNOptions getOptions () protected void displayBinary (java.io.OutputStream, java.lang.String, java.lang.String) throws java.io.IOException java.io.OutputStream os String mimeType1 String mimeType2 protected boolean displayHeader (java.io.OutputStream, java.lang.String, boolean) throws java.io.IOException java.io.OutputStream os String path boolean deleted protected void displayHeaderFields (java.io.OutputStream, java.lang.String, java.lang.String) throws java.io.IOException java.io.OutputStream os String label1 String label2 protected boolean isHeaderForced (java.io.File, java.io.File) java.io.File file1 java.io.File file2 protected boolean useLocalFileSeparatorChar () protected java.lang.String getLabel (java.lang.String, java.lang.String) String path String revToken private void displayMergeInfoDiff (java.io.ByteArrayOutputStream, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.IOException String path org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator paths String path org.tmatesoft.svn.core.SVNMergeRangeList rangeList java.util.Iterator paths java.io.ByteArrayOutputStream baos String oldValue String newValue java.util.Map oldMergeInfo java.util.Map newMergeInfo java.util.Map deleted java.util.Map added private void createBadRelativePathError (java.lang.String) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNErrorMessage err static void <clinit> () }
org/tmatesoft/svn/core/wc/SVNDiffClient.class
SVNDiffClient.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNDiffClient extends org.tmatesoft.svn.core.wc.SVNBasicClient { private boolean gitDiffFormat private boolean showCopiesAsAdds private boolean myIsAllowMixedRevisions private org.tmatesoft.svn.core.wc.ISVNDiffGenerator diffGenerator private org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setDiffGenerator (org.tmatesoft.svn.core.wc.ISVNDiffGenerator) org.tmatesoft.svn.core.wc.ISVNDiffGenerator diffGenerator public org.tmatesoft.svn.core.wc.ISVNDiffGenerator getDiffGenerator () public void setMergeOptions (org.tmatesoft.svn.core.wc.SVNDiffOptions) org.tmatesoft.svn.core.wc.SVNDiffOptions diffOptions public org.tmatesoft.svn.core.wc.SVNDiffOptions getMergeOptions () public void doDiff (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry java.io.OutputStream result org.tmatesoft.svn.core.wc2.SvnDiff diff public void doDiff (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result org.tmatesoft.svn.core.wc2.SvnDiff diff public void doDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry java.io.OutputStream result org.tmatesoft.svn.core.wc2.SvnDiff diff public void doDiff (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnDiff diff java.io.File path java.io.File[] arr$ int len$ int i$ java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists public void doDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists org.tmatesoft.svn.core.wc2.SvnDiff diff public void doDiff (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry java.io.OutputStream result org.tmatesoft.svn.core.wc2.SvnDiff diff public void doDiff (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result org.tmatesoft.svn.core.wc2.SvnDiff diff public void doDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry java.io.OutputStream result org.tmatesoft.svn.core.wc2.SvnDiff diff public void doDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists org.tmatesoft.svn.core.wc2.SvnDiff diff public void doDiff (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry java.io.OutputStream result org.tmatesoft.svn.core.wc2.SvnDiff diff public void doDiff (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists org.tmatesoft.svn.core.wc2.SvnDiff diff public void doDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry java.io.OutputStream result org.tmatesoft.svn.core.wc2.SvnDiff diff public void doDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, java.io.OutputStream, java.util.Collection) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry java.io.OutputStream result java.util.Collection changeLists org.tmatesoft.svn.core.wc2.SvnDiff diff public void doDiffStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM boolean recursive boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doDiffStatus (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler public void doMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath boolean recursive boolean useAncestry boolean force boolean dryRun public void doMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry boolean force boolean dryRun boolean recordOnly org.tmatesoft.svn.core.wc2.SvnMerge merge public void doMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath boolean recursive boolean useAncestry boolean force boolean dryRun public void doMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry boolean force boolean dryRun boolean recordOnly org.tmatesoft.svn.core.wc2.SvnMerge merge public void doMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision revision1 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath boolean recursive boolean useAncestry boolean force boolean dryRun public void doMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision revision1 java.io.File path2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry boolean force boolean dryRun boolean recordOnly org.tmatesoft.svn.core.wc2.SvnMerge merge public void doMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath boolean recursive boolean useAncestry boolean force boolean dryRun public void doMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.SVNURL url2 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry boolean force boolean dryRun boolean recordOnly org.tmatesoft.svn.core.wc2.SvnMerge merge public void doMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath boolean recursive boolean useAncestry boolean force boolean dryRun java.util.Collection ranges public void doMerge (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.util.Collection, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNRevisionRange range java.util.Iterator i$ org.tmatesoft.svn.core.SVNURL url1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.util.Collection rangesToMerge java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry boolean force boolean dryRun boolean recordOnly org.tmatesoft.svn.core.wc2.SvnMerge merge public void doMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision1 org.tmatesoft.svn.core.wc.SVNRevision revision2 java.io.File dstPath boolean recursive boolean useAncestry boolean force boolean dryRun java.util.Collection ranges public void doMerge (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.util.Collection, java.io.File, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNRevisionRange range java.util.Iterator i$ java.io.File path1 org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.util.Collection rangesToMerge java.io.File dstPath org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry boolean force boolean dryRun boolean recordOnly org.tmatesoft.svn.core.wc2.SvnMerge merge public boolean isAllowMixedRevisionsWCForMerge () public void doMergeReIntegrate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File srcPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File dstPath boolean dryRun org.tmatesoft.svn.core.wc2.SvnMerge merge public void doMergeReIntegrate (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL srcURL org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File dstPath boolean dryRun org.tmatesoft.svn.core.wc2.SvnMerge merge public void doGetLogMergedMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc2.SvnLogMergeInfo mergeinfo public void doGetLogMergedMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc2.SvnLogMergeInfo mergeinfo public void doGetLogMergedMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc2.SvnLogMergeInfo mergeinfo public void doGetLogMergedMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc2.SvnLogMergeInfo mergeinfo public void doGetLogEligibleMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc2.SvnLogMergeInfo mergeinfo public void doGetLogEligibleMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.SVNURL mergeSrcURL org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc2.SvnLogMergeInfo mergeinfo public void doGetLogEligibleMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc2.SvnLogMergeInfo mergeinfo public void doGetLogEligibleMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, java.lang.String[], org.tmatesoft.svn.core.ISVNLogEntryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision java.io.File mergeSrcPath org.tmatesoft.svn.core.wc.SVNRevision srcPegRevision boolean discoverChangedPaths String[] revisionProperties org.tmatesoft.svn.core.ISVNLogEntryHandler handler org.tmatesoft.svn.core.wc2.SvnLogMergeInfo mergeinfo public java.util.Map doGetMergedMergeInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc2.SvnGetMergeInfo mi public java.util.Map doGetMergedMergeInfo (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc2.SvnGetMergeInfo mi public java.util.Collection doSuggestMergeSources (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc2.SvnSuggestMergeSources sms public java.util.Collection doSuggestMergeSources (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc2.SvnSuggestMergeSources sms public void doPatch (java.io.File, java.io.File, boolean, int) throws org.tmatesoft.svn.core.SVNException java.io.File absPatchPath java.io.File localAbsPath boolean dryRun int stripCount org.tmatesoft.svn.core.SVNErrorMessage err private void doDiffStatus (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget source org.tmatesoft.svn.core.wc.SVNRevision rN org.tmatesoft.svn.core.wc.SVNRevision rM org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler org.tmatesoft.svn.core.wc2.SvnDiffSummarize diffSummarize private void doDiffStatus (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNDepth, boolean, org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget source1 org.tmatesoft.svn.core.wc2.SvnTarget source2 org.tmatesoft.svn.core.SVNDepth depth boolean useAncestry org.tmatesoft.svn.core.wc.ISVNDiffStatusHandler handler org.tmatesoft.svn.core.wc2.SvnDiffSummarize diffSummarize public void setAllowMixedRevisionsWCForMerge (boolean) boolean allowMixedRevisions public boolean isShowCopiesAsAdds () public void setShowCopiesAsAdds (boolean) boolean showCopiesAsAdds public boolean isGitDiffFormat () public void setGitDiffFormat (boolean) boolean gitDiffFormat }
org/tmatesoft/svn/core/wc/SVNWCClient$10.class
SVNWCClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNWCClient$10 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.ISVNInfoHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNWCClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNWCClient, org.tmatesoft.svn.core.wc.ISVNInfoHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnInfo object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNWCUtil.class
SVNWCUtil.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNWCUtil extends java.lang.Object { private static final String ECLIPSE_AUTH_MANAGER_CLASSNAME private static Boolean ourIsEclipse public void <init> () public static java.io.File getDefaultConfigurationDirectory () public static org.tmatesoft.svn.core.auth.ISVNAuthenticationManager createDefaultAuthenticationManager () public static org.tmatesoft.svn.core.auth.ISVNAuthenticationManager createDefaultAuthenticationManager (java.io.File) java.io.File configDir public static org.tmatesoft.svn.core.auth.ISVNAuthenticationManager createDefaultAuthenticationManager (java.lang.String, java.lang.String) String userName String password public static org.tmatesoft.svn.core.auth.ISVNAuthenticationManager createDefaultAuthenticationManager (java.io.File, java.lang.String, java.lang.String) java.io.File configDir String userName String password org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions options boolean store public static org.tmatesoft.svn.core.auth.ISVNAuthenticationManager createDefaultAuthenticationManager (java.io.File, java.lang.String, java.lang.String, boolean) java.io.File configDir String userName String password boolean storeAuth public static org.tmatesoft.svn.core.auth.ISVNAuthenticationManager createDefaultAuthenticationManager (java.io.File, java.lang.String, java.lang.String, java.io.File, java.lang.String, boolean) java.lang.reflect.Constructor method ClassLoader loader Class managerClass Throwable e java.io.File configDir String userName String password java.io.File privateKey String passphrase boolean storeAuth public static org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions createDefaultOptions (java.io.File, boolean) java.io.File dir boolean readonly public static org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions createDefaultOptions (boolean) boolean readonly public static boolean isVersionedDirectory (java.io.File) java.io.File dir public static boolean isWorkingCopyRoot (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File versionedDir public static boolean isWorkingCopyRoot (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File root java.io.File versionedDir boolean externalIsRoot public static java.io.File getWorkingCopyRoot (java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File versionedDir boolean stopOnExternals private static boolean isEclipse () ClassLoader loader Class platform java.lang.reflect.Method isRunning Object result Throwable th }
org/tmatesoft/svn/core/wc/SVNDiffClient$6.class
SVNDiffClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNDiffClient$6 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.ISVNLogEntryHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNDiffClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNDiffClient, org.tmatesoft.svn.core.ISVNLogEntryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNLogEntry object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNMoveClient.class
SVNMoveClient.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNMoveClient extends org.tmatesoft.svn.core.wc.SVNBasicClient { public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void doMove (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnCopy copy org.tmatesoft.svn.core.internal.wc16.SVNMoveClient16 oldClient org.tmatesoft.svn.core.wc2.SvnCopy cp org.tmatesoft.svn.core.SVNException e java.io.File src java.io.File dst org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration srcGeneration org.tmatesoft.svn.core.internal.wc2.SvnWcGeneration dstGeneration public void undoMove (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File src java.io.File dst org.tmatesoft.svn.core.internal.wc16.SVNMoveClient16 oldClient public void doVirtualCopy (java.io.File, java.io.File, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File src java.io.File dst boolean move org.tmatesoft.svn.core.wc2.SvnCopy copy }
org/tmatesoft/svn/core/wc/ISVNExternalsHandler$1.class
ISVNExternalsHandler.java package org.tmatesoft.svn.core.wc final org.tmatesoft.svn.core.wc.ISVNExternalsHandler$1 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNExternalsHandler { void <init> () public org.tmatesoft.svn.core.wc.SVNRevision[] handleExternal (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision) java.io.File externalPath org.tmatesoft.svn.core.SVNURL externalURL org.tmatesoft.svn.core.wc.SVNRevision externalRevision org.tmatesoft.svn.core.wc.SVNRevision externalPegRevision String externalsDefinition org.tmatesoft.svn.core.wc.SVNRevision externalsWorkingRevision }
org/tmatesoft/svn/core/wc/DefaultSVNCommitParameters.class
DefaultSVNCommitParameters.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.DefaultSVNCommitParameters extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNCommitParameters { public void <init> () public org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action onMissingFile (java.io.File) java.io.File file public org.tmatesoft.svn.core.wc.ISVNCommitParameters$Action onMissingDirectory (java.io.File) java.io.File file public boolean onDirectoryDeletion (java.io.File) java.io.File directory public boolean onFileDeletion (java.io.File) java.io.File file }
org/tmatesoft/svn/core/wc/SVNTreeConflictDescription.class
SVNTreeConflictDescription.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNTreeConflictDescription extends org.tmatesoft.svn.core.wc.SVNConflictDescription { private org.tmatesoft.svn.core.wc.SVNOperation myOperation private org.tmatesoft.svn.core.internal.wc.SVNConflictVersion mySourceLeftVersion private org.tmatesoft.svn.core.internal.wc.SVNConflictVersion mySourceRightVersion public void <init> (java.io.File, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.wc.SVNConflictAction, org.tmatesoft.svn.core.wc.SVNConflictReason, org.tmatesoft.svn.core.wc.SVNOperation, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion, org.tmatesoft.svn.core.internal.wc.SVNConflictVersion) java.io.File path org.tmatesoft.svn.core.SVNNodeKind nodeKind org.tmatesoft.svn.core.wc.SVNConflictAction conflictAction org.tmatesoft.svn.core.wc.SVNConflictReason conflictReason org.tmatesoft.svn.core.wc.SVNOperation operation org.tmatesoft.svn.core.internal.wc.SVNConflictVersion sourceLeftVersion org.tmatesoft.svn.core.internal.wc.SVNConflictVersion sourceRightVersion public boolean isTextConflict () public boolean isPropertyConflict () public boolean isTreeConflict () public java.io.File getPath () public org.tmatesoft.svn.core.wc.SVNOperation getOperation () public org.tmatesoft.svn.core.internal.wc.SVNConflictVersion getSourceLeftVersion () public void setSourceLeftVersion (org.tmatesoft.svn.core.internal.wc.SVNConflictVersion) org.tmatesoft.svn.core.internal.wc.SVNConflictVersion sourceLeftVersion public org.tmatesoft.svn.core.internal.wc.SVNConflictVersion getSourceRightVersion () public java.lang.String getPropertyName () }
org/tmatesoft/svn/core/wc/ISVNAddParameters.class
ISVNAddParameters.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNAddParameters extends java.lang.Object { public static final org.tmatesoft.svn.core.wc.ISVNAddParameters$Action ADD_AS_BINARY public static final org.tmatesoft.svn.core.wc.ISVNAddParameters$Action ADD_AS_IS public static final org.tmatesoft.svn.core.wc.ISVNAddParameters$Action REPORT_ERROR public abstract org.tmatesoft.svn.core.wc.ISVNAddParameters$Action onInconsistentEOLs (java.io.File) static void <clinit> () }
org/tmatesoft/svn/core/wc/SVNWCClient$11.class
SVNWCClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNWCClient$11 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.wc.SVNInfo[] val$info final synthetic org.tmatesoft.svn.core.wc.SVNWCClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNWCClient, org.tmatesoft.svn.core.wc.SVNInfo[]) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.wc2.SvnInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.wc2.SvnInfo object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/DefaultSVNRepositoryPool.class
DefaultSVNRepositoryPool.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNRepositoryPool org.tmatesoft.svn.core.io.ISVNSession org.tmatesoft.svn.core.io.ISVNConnectionListener { public static final int RUNTIME_POOL public static final int INSTANCE_POOL public static final int NO_POOL private static final long DEFAULT_IDLE_TIMEOUT private static volatile java.util.concurrent.ScheduledExecutorService ourTimer private static volatile int ourInstanceCount private org.tmatesoft.svn.core.auth.ISVNAuthenticationManager myAuthManager private org.tmatesoft.svn.core.io.ISVNTunnelProvider myTunnelProvider private org.tmatesoft.svn.util.ISVNDebugLog myDebugLog private org.tmatesoft.svn.core.ISVNCanceller myCanceller private java.util.Map myPool private long myTimeout private java.util.Map myInactiveRepositories private java.util.concurrent.ScheduledExecutorService myTimer private boolean myIsKeepConnection private java.util.concurrent.ScheduledFuture myScheduledTimeoutTask public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.io.ISVNTunnelProvider) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.io.ISVNTunnelProvider tunnelProvider public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.io.ISVNTunnelProvider, long, boolean) IllegalStateException e org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.io.ISVNTunnelProvider tunnelProvider long timeout boolean keepConnection private java.util.concurrent.ScheduledExecutorService createExecutor () public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.io.ISVNTunnelProvider, boolean, int) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.io.ISVNTunnelProvider tunnelProvider boolean keepConnections int poolMode public synchronized org.tmatesoft.svn.core.io.SVNRepository createRepository (org.tmatesoft.svn.core.SVNURL, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url boolean mayReuse org.tmatesoft.svn.core.io.SVNRepository repos java.util.Map pool public void setAuthenticationManager (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager) String key org.tmatesoft.svn.core.io.SVNRepository repository java.util.Iterator protocols org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager java.util.Map pool public boolean keepConnection (org.tmatesoft.svn.core.io.SVNRepository) org.tmatesoft.svn.core.io.SVNRepository repository public synchronized void shutdownConnections (boolean) boolean shutdownAll public void dispose () String key org.tmatesoft.svn.core.io.SVNRepository repository java.util.Iterator protocols java.util.Map pool public static void shutdownTimer () SecurityException se public void saveCommitMessage (org.tmatesoft.svn.core.io.SVNRepository, long, java.lang.String) org.tmatesoft.svn.core.io.SVNRepository repository long revision String message public java.lang.String getCommitMessage (org.tmatesoft.svn.core.io.SVNRepository, long) org.tmatesoft.svn.core.io.SVNRepository repository long revision public boolean hasCommitMessage (org.tmatesoft.svn.core.io.SVNRepository, long) org.tmatesoft.svn.core.io.SVNRepository repository long revision public void connectionClosed (org.tmatesoft.svn.core.io.SVNRepository) org.tmatesoft.svn.core.io.SVNRepository repository public void connectionOpened (org.tmatesoft.svn.core.io.SVNRepository) org.tmatesoft.svn.core.io.SVNRepository repository public void setCanceller (org.tmatesoft.svn.core.ISVNCanceller) String key org.tmatesoft.svn.core.io.SVNRepository repository java.util.Iterator protocols org.tmatesoft.svn.core.ISVNCanceller canceller java.util.Map pool public void setDebugLog (org.tmatesoft.svn.util.ISVNDebugLog) String key org.tmatesoft.svn.core.io.SVNRepository repository java.util.Iterator protocols org.tmatesoft.svn.util.ISVNDebugLog log java.util.Map pool private long getTimeout () private java.util.Map getPool () static synthetic java.util.Map access$200 (org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool) org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool x0 static synthetic long access$300 (org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool) org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool x0 }
org/tmatesoft/svn/core/wc/SVNRevision.class
SVNRevision.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNRevision extends java.lang.Object { public static final org.tmatesoft.svn.core.wc.SVNRevision HEAD public static final org.tmatesoft.svn.core.wc.SVNRevision WORKING public static final org.tmatesoft.svn.core.wc.SVNRevision PREVIOUS public static final org.tmatesoft.svn.core.wc.SVNRevision BASE public static final org.tmatesoft.svn.core.wc.SVNRevision COMMITTED public static final org.tmatesoft.svn.core.wc.SVNRevision UNDEFINED private static final java.util.Map ourValidRevisions private static java.util.regex.Pattern ISO_8601_EXTENDED_DATE_ONLY_PATTERN private static java.util.regex.Pattern ISO_8601_EXTENDED_UTC_PATTERN private static java.util.regex.Pattern ISO_8601_EXTENDED_OFFSET_PATTERN private static java.util.regex.Pattern ISO_8601_BASIC_DATE_ONLY_PATTERN private static java.util.regex.Pattern ISO_8601_BASIC_UTC_PATTERN private static java.util.regex.Pattern ISO_8601_BASIC_OFFSET_PATTERN private static java.util.regex.Pattern ISO_8601_GNU_FORMAT_PATTERN private static java.util.regex.Pattern SVN_LOG_DATE_FORMAT_PATTERN private static java.util.regex.Pattern TIME_ONLY_PATTERN private static final java.util.Collection ourTimeFormatPatterns private long myRevision private String myName private java.util.Date myDate private int myID private void <init> (long) long number private void <init> (java.lang.String, int) String name int id private void <init> (java.util.Date) java.util.Date date java.util.Calendar calendar public java.lang.String getName () public long getNumber () public java.util.Date getDate () public boolean isValid () public int getID () public int hashCode () public boolean equals (java.lang.Object) Object o org.tmatesoft.svn.core.wc.SVNRevision r public static boolean isValidRevisionNumber (long) long revision public static org.tmatesoft.svn.core.wc.SVNRevision create (long) long revisionNumber public static org.tmatesoft.svn.core.wc.SVNRevision create (java.util.Date) java.util.Date date public boolean isLocal () boolean remote public static org.tmatesoft.svn.core.wc.SVNRevision parse (java.lang.String) int year int month int day String millis int zoneOffsetInMillis int hoursOffset int minutesOffset int zoneOffsetInMillis int hoursOffset int minutesOffset int year int month int day int hours int minutes int seconds int milliseconds String millis int hours int minutes int seconds int milliseconds java.util.regex.Pattern pattern java.util.regex.Matcher matcher java.util.Iterator patterns java.util.Calendar date NumberFormatException e long number NumberFormatException nfe String value org.tmatesoft.svn.core.wc.SVNRevision revision public java.lang.String toString () static void <clinit> () }
org/tmatesoft/svn/core/wc/ISVNPropertyHandler.class
ISVNPropertyHandler.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNPropertyHandler extends java.lang.Object { public static final org.tmatesoft.svn.core.wc.ISVNPropertyHandler NULL public abstract void handleProperty (java.io.File, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException public abstract void handleProperty (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException public abstract void handleProperty (long, org.tmatesoft.svn.core.wc.SVNPropertyData) throws org.tmatesoft.svn.core.SVNException static void <clinit> () }
org/tmatesoft/svn/core/wc/SVNCopyClient.class
SVNCopyClient.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNCopyClient extends org.tmatesoft.svn.core.wc.SVNBasicClient { private org.tmatesoft.svn.core.wc.ISVNCommitHandler commitHandler private org.tmatesoft.svn.core.wc.ISVNCommitParameters commitParamaters private org.tmatesoft.svn.core.wc.ISVNExternalsHandler externalsHandler private boolean disableLocalModifications public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setCommitHandler (org.tmatesoft.svn.core.wc.ISVNCommitHandler) org.tmatesoft.svn.core.wc.ISVNCommitHandler handler public org.tmatesoft.svn.core.wc.ISVNCommitHandler getCommitHandler () public void setCommitParameters (org.tmatesoft.svn.core.wc.ISVNCommitParameters) org.tmatesoft.svn.core.wc.ISVNCommitParameters parameters public org.tmatesoft.svn.core.wc.ISVNCommitParameters getCommitParameters () public void setExternalsHandler (org.tmatesoft.svn.core.wc.ISVNExternalsHandler) org.tmatesoft.svn.core.wc.ISVNExternalsHandler externalsHandler public void setDisableLocalModificationCopying (boolean) boolean disable public org.tmatesoft.svn.core.wc.ISVNExternalsHandler getExternalsHandler () public void doCopy (org.tmatesoft.svn.core.wc.SVNCopySource[], java.io.File, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.wc.SVNCopySource[] sources java.io.File dst boolean isMove boolean makeParents boolean failWhenDstExists org.tmatesoft.svn.core.wc2.SvnCopy cp public org.tmatesoft.svn.core.SVNCommitInfo doCopy (org.tmatesoft.svn.core.wc.SVNCopySource[], org.tmatesoft.svn.core.SVNURL, boolean, boolean, boolean, java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.wc.SVNCopySource[] sources org.tmatesoft.svn.core.SVNURL dst boolean isMove boolean makeParents boolean failWhenDstExists String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.wc2.SvnRemoteCopy cp public void doCopy (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File nestedWC org.tmatesoft.svn.core.wc2.SvnCopy cp }
org/tmatesoft/svn/core/wc/SVNCommitClient.class
SVNCommitClient.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNCommitClient extends org.tmatesoft.svn.core.wc.SVNBasicClient { private org.tmatesoft.svn.core.wc.ISVNCommitHandler commitHandler private org.tmatesoft.svn.core.wc.ISVNCommitParameters commitParameters public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setCommitHander (org.tmatesoft.svn.core.wc.ISVNCommitHandler) org.tmatesoft.svn.core.wc.ISVNCommitHandler handler public void setCommitHandler (org.tmatesoft.svn.core.wc.ISVNCommitHandler) org.tmatesoft.svn.core.wc.ISVNCommitHandler handler public org.tmatesoft.svn.core.wc.ISVNCommitHandler getCommitHandler () public void setCommitParameters (org.tmatesoft.svn.core.wc.ISVNCommitParameters) org.tmatesoft.svn.core.wc.ISVNCommitParameters parameters public org.tmatesoft.svn.core.wc.ISVNCommitParameters getCommitParameters () public org.tmatesoft.svn.core.SVNCommitInfo doDelete (org.tmatesoft.svn.core.SVNURL[], java.lang.String) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNURL[] urls String commitMessage org.tmatesoft.svn.core.wc2.SvnRemoteDelete delete public org.tmatesoft.svn.core.SVNCommitInfo doDelete (org.tmatesoft.svn.core.SVNURL[], java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNURL[] urls String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.wc2.SvnRemoteDelete delete public org.tmatesoft.svn.core.SVNCommitInfo doMkDir (org.tmatesoft.svn.core.SVNURL[], java.lang.String) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNURL[] urls String commitMessage org.tmatesoft.svn.core.wc2.SvnRemoteMkDir mkdir public org.tmatesoft.svn.core.SVNCommitInfo doMkDir (org.tmatesoft.svn.core.SVNURL[], java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean) throws org.tmatesoft.svn.core.SVNException int i org.tmatesoft.svn.core.SVNURL[] urls String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties boolean makeParents org.tmatesoft.svn.core.wc2.SvnRemoteMkDir mkdir public org.tmatesoft.svn.core.SVNCommitInfo doImport (java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL dstURL String commitMessage boolean recursive public org.tmatesoft.svn.core.SVNCommitInfo doImport (java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL dstURL String commitMessage boolean useGlobalIgnores boolean recursive public org.tmatesoft.svn.core.SVNCommitInfo doImport (java.io.File, org.tmatesoft.svn.core.SVNURL, java.lang.String, org.tmatesoft.svn.core.SVNProperties, boolean, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL dstURL String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties boolean useGlobalIgnores boolean ignoreUnknownNodeTypes org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc2.SvnImport svnImport public org.tmatesoft.svn.core.SVNCommitInfo doCommit (java.io.File[], boolean, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths boolean keepLocks String commitMessage boolean force boolean recursive public org.tmatesoft.svn.core.SVNCommitInfo doCommit (java.io.File[], boolean, java.lang.String, org.tmatesoft.svn.core.SVNProperties, java.lang.String[], boolean, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNCommitInfo[] infos java.io.File[] paths boolean keepLocks String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties String[] changelists boolean keepChangelist boolean force org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc.SVNCommitPacket[] packets public org.tmatesoft.svn.core.SVNCommitInfo doCommit (org.tmatesoft.svn.core.wc.SVNCommitPacket, boolean, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNCommitPacket commitPacket boolean keepLocks String commitMessage public org.tmatesoft.svn.core.SVNCommitInfo doCommit (org.tmatesoft.svn.core.wc.SVNCommitPacket, boolean, boolean, java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNCommitPacket commitPacket boolean keepLocks boolean keepChangelist String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.SVNCommitInfo[] infos public org.tmatesoft.svn.core.SVNCommitInfo[] doCommit (org.tmatesoft.svn.core.wc.SVNCommitPacket[], boolean, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNCommitPacket[] commitPackets boolean keepLocks String commitMessage public org.tmatesoft.svn.core.SVNCommitInfo[] doCommit (org.tmatesoft.svn.core.wc.SVNCommitPacket[], boolean, boolean, java.lang.String, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc.SVNCommitItem[] items String message org.tmatesoft.svn.core.SVNPropertyValue value String propertyName java.util.Iterator i$ org.tmatesoft.svn.core.SVNCancelException e org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.wc2.SvnCommit commit org.tmatesoft.svn.core.SVNCommitInfo info org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNException e int i org.tmatesoft.svn.core.wc.SVNCommitPacket[] commitPackets boolean keepLocks boolean keepChangelist String commitMessage org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.SVNCommitInfo[] infos public org.tmatesoft.svn.core.wc.SVNCommitPacket doCollectCommitItems (java.io.File[], boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths boolean keepLocks boolean force boolean recursive org.tmatesoft.svn.core.wc.SVNCommitPacket[] packets public org.tmatesoft.svn.core.wc.SVNCommitPacket doCollectCommitItems (java.io.File[], boolean, boolean, org.tmatesoft.svn.core.SVNDepth, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths boolean keepLocks boolean force org.tmatesoft.svn.core.SVNDepth depth String[] changelists org.tmatesoft.svn.core.wc.SVNCommitPacket[] packets public org.tmatesoft.svn.core.wc.SVNCommitPacket[] doCollectCommitItems (java.io.File[], boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths boolean keepLocks boolean force boolean recursive boolean combinePackets public org.tmatesoft.svn.core.wc.SVNCommitPacket[] doCollectCommitItems (java.io.File[], boolean, boolean, org.tmatesoft.svn.core.SVNDepth, boolean, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException int i java.io.File[] paths boolean keepLocks boolean force org.tmatesoft.svn.core.SVNDepth depth boolean combinePackets String[] changelists org.tmatesoft.svn.core.wc2.SvnCommit commit org.tmatesoft.svn.core.wc2.SvnCommitPacket packet }
org/tmatesoft/svn/core/wc/ISVNAnnotateHandler.class
ISVNAnnotateHandler.java package org.tmatesoft.svn.core.wc public abstract org.tmatesoft.svn.core.wc.ISVNAnnotateHandler extends java.lang.Object { public abstract void handleLine (java.util.Date, long, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException public abstract void handleLine (java.util.Date, long, java.lang.String, java.lang.String, java.util.Date, long, java.lang.String, java.lang.String, int) throws org.tmatesoft.svn.core.SVNException public abstract boolean handleRevision (java.util.Date, long, java.lang.String, java.io.File) throws org.tmatesoft.svn.core.SVNException public abstract void handleEOF () throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/SVNClientManager.class
SVNClientManager.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNClientManager extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNRepositoryPool { private org.tmatesoft.svn.core.wc.ISVNOptions myOptions private org.tmatesoft.svn.core.wc.SVNCommitClient myCommitClient private org.tmatesoft.svn.core.wc.SVNCopyClient myCopyClient private org.tmatesoft.svn.core.wc.SVNDiffClient myDiffClient private org.tmatesoft.svn.core.wc.SVNLogClient myLogClient private org.tmatesoft.svn.core.wc.SVNMoveClient myMoveClient private org.tmatesoft.svn.core.wc.SVNStatusClient myStatusClient private org.tmatesoft.svn.core.wc.SVNUpdateClient myUpdateClient private org.tmatesoft.svn.core.wc.SVNWCClient myWCClient private org.tmatesoft.svn.core.wc.SVNChangelistClient myChangelistClient private org.tmatesoft.svn.core.wc.admin.SVNAdminClient myAdminClient private org.tmatesoft.svn.core.wc.admin.SVNLookClient myLookClient private org.tmatesoft.svn.core.wc.ISVNEventHandler myEventHandler private org.tmatesoft.svn.core.wc.ISVNRepositoryPool myRepositoryPool private org.tmatesoft.svn.util.ISVNDebugLog myDebugLog private boolean myIsIgnoreExternals private void <init> (org.tmatesoft.svn.core.wc.ISVNOptions, org.tmatesoft.svn.core.wc.ISVNRepositoryPool) org.tmatesoft.svn.core.wc.ISVNOptions options org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool private void <init> (org.tmatesoft.svn.core.wc.ISVNOptions, org.tmatesoft.svn.core.auth.ISVNAuthenticationManager) org.tmatesoft.svn.core.wc.ISVNOptions options org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager public static org.tmatesoft.svn.core.wc.SVNClientManager newInstance () public static org.tmatesoft.svn.core.wc.SVNClientManager newInstance (org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNOptions options public static org.tmatesoft.svn.core.wc.SVNClientManager newInstance (org.tmatesoft.svn.core.wc.ISVNOptions, org.tmatesoft.svn.core.auth.ISVNAuthenticationManager) org.tmatesoft.svn.core.wc.ISVNOptions options org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager public static org.tmatesoft.svn.core.wc.SVNClientManager newInstance (org.tmatesoft.svn.core.wc.ISVNOptions, org.tmatesoft.svn.core.wc.ISVNRepositoryPool) org.tmatesoft.svn.core.wc.ISVNOptions options org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool public static org.tmatesoft.svn.core.wc.SVNClientManager newInstance (org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions, java.lang.String, java.lang.String) org.tmatesoft.svn.core.internal.wc.DefaultSVNOptions options String userName String password boolean storeAuth org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager public org.tmatesoft.svn.core.io.SVNRepository createRepository (org.tmatesoft.svn.core.SVNURL, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url boolean mayReuse org.tmatesoft.svn.core.io.SVNRepository repository public void shutdownConnections (boolean) boolean shutdownAll public void dispose () public org.tmatesoft.svn.core.wc.ISVNOptions getOptions () public void setEventHandler (org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNEventHandler handler public void setIgnoreExternals (boolean) boolean isIgnoreExternals public boolean isIgnoreExternals () public void setOptions (org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNOptions options public org.tmatesoft.svn.core.wc.SVNCommitClient getCommitClient () public org.tmatesoft.svn.core.wc.admin.SVNAdminClient getAdminClient () public org.tmatesoft.svn.core.wc.admin.SVNLookClient getLookClient () public org.tmatesoft.svn.core.wc.SVNCopyClient getCopyClient () public org.tmatesoft.svn.core.wc.SVNDiffClient getDiffClient () public org.tmatesoft.svn.core.wc.SVNLogClient getLogClient () public org.tmatesoft.svn.core.wc.SVNMoveClient getMoveClient () public org.tmatesoft.svn.core.wc.SVNStatusClient getStatusClient () public org.tmatesoft.svn.core.wc.SVNUpdateClient getUpdateClient () public org.tmatesoft.svn.core.wc.SVNWCClient getWCClient () public org.tmatesoft.svn.core.wc.SVNChangelistClient getChangelistClient () public org.tmatesoft.svn.util.ISVNDebugLog getDebugLog () public void setDebugLog (org.tmatesoft.svn.util.ISVNDebugLog) org.tmatesoft.svn.util.ISVNDebugLog log public void setAuthenticationManager (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager public void setCanceller (org.tmatesoft.svn.core.ISVNCanceller) org.tmatesoft.svn.core.ISVNCanceller canceller public org.tmatesoft.svn.core.wc.ISVNRepositoryPool getRepositoryPool () }
org/tmatesoft/svn/core/wc/SVNEventAdapter.class
SVNEventAdapter.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNEventAdapter extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { public void <init> () public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress }
org/tmatesoft/svn/core/wc/SVNMergeFileSet.class
SVNMergeFileSet.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNMergeFileSet extends java.lang.Object { private String myLocalFilePath private String myBaseFilePath private String myRepositoryFilePath private String myWCFilePath private String myMergeResultFilePath private String myMimeType private org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea myAdminArea private org.tmatesoft.svn.core.internal.wc.admin.SVNLog myLog private String myLocalLabel private String myBaseLabel private String myRepositoryLabel private java.io.File myLocalFile private java.io.File myBaseFile private java.io.File myRepositoryFile private java.io.File myMergeResultFile private java.io.File myCopyFromFile private java.util.Collection myTmpPaths public void <init> (org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea, org.tmatesoft.svn.core.internal.wc.admin.SVNLog, java.io.File, java.io.File, java.lang.String, java.io.File, java.io.File, java.io.File, java.lang.String) org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea adminArea org.tmatesoft.svn.core.internal.wc.admin.SVNLog log java.io.File baseFile java.io.File localFile String wcPath java.io.File reposFile java.io.File resultFile java.io.File copyFromFile String mimeType public void setMergeLabels (java.lang.String, java.lang.String, java.lang.String) String baseLabel String localLabel String repositoryLabel public org.tmatesoft.svn.core.internal.wc.admin.SVNLog getLog () public java.lang.String getBaseLabel () public java.lang.String getLocalLabel () public java.lang.String getRepositoryLabel () public java.lang.String getBasePath () throws org.tmatesoft.svn.core.SVNException java.io.File tmp public java.lang.String getLocalPath () public java.lang.String getWCPath () public java.lang.String getRepositoryPath () throws org.tmatesoft.svn.core.SVNException java.io.File tmp public java.lang.String getResultPath () public java.io.File getBaseFile () public java.io.File getWCFile () public java.io.File getLocalFile () public java.io.File getRepositoryFile () public java.io.File getResultFile () public boolean isBinary () public java.lang.String getMimeType () public org.tmatesoft.svn.core.internal.wc.admin.SVNAdminArea getAdminArea () public void dispose () throws org.tmatesoft.svn.core.SVNException String path java.util.Iterator paths org.tmatesoft.svn.core.SVNProperties command public java.io.File getCopyFromFile () public java.lang.String getCopyFromPath () String root String copyFrom String copyFromPath }
org/tmatesoft/svn/core/wc/SVNStatusClient$2.class
SVNStatusClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNStatusClient$2 extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNStatusHandler { final synthetic java.io.File val$absPath final synthetic org.tmatesoft.svn.core.wc.SVNStatus[] val$result final synthetic org.tmatesoft.svn.core.wc.SVNStatusClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNStatusClient, java.io.File, org.tmatesoft.svn.core.wc.SVNStatus[]) public void handleStatus (org.tmatesoft.svn.core.wc.SVNStatus) org.tmatesoft.svn.core.wc.SVNStatus status }
org/tmatesoft/svn/core/wc/ISVNAddParameters$Action.class
ISVNAddParameters.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.ISVNAddParameters$Action extends java.lang.Object { private void <init> () synthetic void <init> (org.tmatesoft.svn.core.wc.ISVNAddParameters$1) org.tmatesoft.svn.core.wc.ISVNAddParameters$1 x0 }
org/tmatesoft/svn/core/wc/SVNDiffClient$5.class
SVNDiffClient.java package org.tmatesoft.svn.core.wc org.tmatesoft.svn.core.wc.SVNDiffClient$5 extends java.lang.Object implements org.tmatesoft.svn.core.wc2.ISvnObjectReceiver { final synthetic org.tmatesoft.svn.core.ISVNLogEntryHandler val$handler final synthetic org.tmatesoft.svn.core.wc.SVNDiffClient this$0 void <init> (org.tmatesoft.svn.core.wc.SVNDiffClient, org.tmatesoft.svn.core.ISVNLogEntryHandler) public void receive (org.tmatesoft.svn.core.wc2.SvnTarget, org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget target org.tmatesoft.svn.core.SVNLogEntry object public volatile synthetic void receive (org.tmatesoft.svn.core.wc2.SvnTarget, java.lang.Object) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc2.SvnTarget x0 Object x1 }
org/tmatesoft/svn/core/wc/SVNUpdateClient.class
SVNUpdateClient.java package org.tmatesoft.svn.core.wc public org.tmatesoft.svn.core.wc.SVNUpdateClient extends org.tmatesoft.svn.core.wc.SVNBasicClient { private org.tmatesoft.svn.core.wc.ISVNExternalsHandler myExternalsHandler private boolean updateLocksOnDemand private boolean exportExpandsKeywords public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setExternalsHandler (org.tmatesoft.svn.core.wc.ISVNExternalsHandler) org.tmatesoft.svn.core.wc.ISVNExternalsHandler externalsHandler public org.tmatesoft.svn.core.wc.ISVNExternalsHandler getExternalsHandler () public long doUpdate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive public long doUpdate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive boolean force public long[] doUpdate (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean allowUnversionedObstructions boolean depthIsSticky public long[] doUpdate (java.io.File[], org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException int i java.io.File[] paths org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean allowUnversionedObstructions boolean depthIsSticky boolean makeParents org.tmatesoft.svn.core.wc2.SvnUpdate up public long doUpdate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean allowUnversionedObstructions boolean depthIsSticky long[] result public void setUpdateLocksOnDemand (boolean) boolean locksOnDemand public boolean isUpdateLocksOnDemand () public long doSwitch (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive public long doSwitch (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive public long doSwitch (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File file org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive boolean force public long doSwitch (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean allowUnversionedObstructions boolean depthIsSticky public long doSwitch (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean allowUnversionedObstructions boolean depthIsSticky boolean ignoreAncestry org.tmatesoft.svn.core.wc2.SvnSwitch sw public long doCheckout (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive public long doCheckout (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision boolean recursive boolean force public long doCheckout (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.SVNDepth, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNDepth depth boolean allowUnversionedObstructions org.tmatesoft.svn.core.wc2.SvnCheckout co public long doExport (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision String eolStyle boolean force boolean recursive public long doExport (org.tmatesoft.svn.core.SVNURL, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNURL url java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision String eolStyle boolean overwrite org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc2.SvnExport export public long doExport (java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File srcPath java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision String eolStyle boolean force boolean recursive public long doExport (java.io.File, java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, boolean, org.tmatesoft.svn.core.SVNDepth) throws org.tmatesoft.svn.core.SVNException java.io.File srcPath java.io.File dstPath org.tmatesoft.svn.core.wc.SVNRevision pegRevision org.tmatesoft.svn.core.wc.SVNRevision revision String eolStyle boolean overwrite org.tmatesoft.svn.core.SVNDepth depth org.tmatesoft.svn.core.wc2.SvnExport export public void doRelocate (java.io.File, org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File dst org.tmatesoft.svn.core.SVNURL oldURL org.tmatesoft.svn.core.SVNURL newURL boolean recursive org.tmatesoft.svn.core.wc2.SvnRelocate relocate public void doCanonicalizeURLs (java.io.File, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File dst boolean omitDefaultPort boolean recursive org.tmatesoft.svn.core.wc2.SvnCanonicalizeUrls cu public void setExportExpandsKeywords (boolean) boolean expand public boolean isExportExpandsKeywords () }
org/tmatesoft/svn/core/wc/xml/
org/tmatesoft/svn/core/wc/xml/SVNXMLDirEntryHandler.class
SVNXMLDirEntryHandler.java package org.tmatesoft.svn.core.wc.xml public org.tmatesoft.svn.core.wc.xml.SVNXMLDirEntryHandler extends org.tmatesoft.svn.core.wc.xml.AbstractXMLHandler implements org.tmatesoft.svn.core.ISVNDirEntryHandler java.util.Comparator { public static final String EXPIRES_TAG public static final String CREATED_TAG public static final String COMMENT_TAG public static final String OWNER_TAG public static final String TOKEN_TAG public static final String LOCK_TAG public static final String PATH_ATTR public static final String REVISION_ATTR public static final String LISTS_TAG public static final String LIST_TAG public static final String ENTRY_TAG public static final String NAME_TAG public static final String SIZE_TAG public static final String COMMIT_TAG public static final String DATE_TAG public static final String AUTHOR_TAG private java.util.Collection myDirEntries public void <init> (org.xml.sax.ContentHandler) org.xml.sax.ContentHandler saxHandler public void <init> (org.xml.sax.ContentHandler, org.tmatesoft.svn.util.ISVNDebugLog) org.xml.sax.ContentHandler saxHandler org.tmatesoft.svn.util.ISVNDebugLog log public void startTarget (java.lang.String) org.xml.sax.SAXException e String path public void handleDirEntry (org.tmatesoft.svn.core.SVNDirEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNDirEntry entry public void endTarget () org.tmatesoft.svn.core.SVNDirEntry entry java.util.Iterator ents org.xml.sax.SAXException e private void sendToHandler (org.tmatesoft.svn.core.SVNDirEntry) throws org.xml.sax.SAXException org.tmatesoft.svn.core.SVNDirEntry entry org.tmatesoft.svn.core.SVNLock lock protected java.lang.String getHeaderName () public int compare (java.lang.Object, java.lang.Object) Object o1 Object o2 org.tmatesoft.svn.core.SVNDirEntry e1 org.tmatesoft.svn.core.SVNDirEntry e2 }
org/tmatesoft/svn/core/wc/xml/AbstractXMLHandler.class
AbstractXMLHandler.java package org.tmatesoft.svn.core.wc.xml public abstract org.tmatesoft.svn.core.wc.xml.AbstractXMLHandler extends java.lang.Object implements org.xml.sax.Locator { private org.xml.sax.helpers.AttributesImpl mySharedAttributes private org.xml.sax.ContentHandler myHandler private org.tmatesoft.svn.util.ISVNDebugLog myLog protected void <init> (org.xml.sax.ContentHandler, org.tmatesoft.svn.util.ISVNDebugLog) org.xml.sax.ContentHandler contentHandler org.tmatesoft.svn.util.ISVNDebugLog log protected org.tmatesoft.svn.util.ISVNDebugLog getDebugLog () public void startDocument () org.xml.sax.SAXException e public void endDocument () org.xml.sax.SAXException e private org.xml.sax.ContentHandler getHandler () protected abstract java.lang.String getHeaderName () protected void openTag (java.lang.String) throws org.xml.sax.SAXException String name protected void closeTag (java.lang.String) throws org.xml.sax.SAXException String name protected void addTag (java.lang.String, java.lang.String) throws org.xml.sax.SAXException String tagName String value protected void addAttribute (java.lang.String, java.lang.String) String name String value public int getColumnNumber () public int getLineNumber () public java.lang.String getPublicId () public java.lang.String getSystemId () }
org/tmatesoft/svn/core/wc/xml/SVNXMLLogHandler$1.class
SVNXMLLogHandler.java package org.tmatesoft.svn.core.wc.xml synthetic org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler$1 extends java.lang.Object { }
org/tmatesoft/svn/core/wc/xml/SVNXMLSerializer.class
SVNXMLSerializer.java package org.tmatesoft.svn.core.wc.xml public org.tmatesoft.svn.core.wc.xml.SVNXMLSerializer extends java.lang.Object implements org.xml.sax.ContentHandler { private java.io.Writer myWriter private String myEol private boolean myCharacters public void <init> (java.io.OutputStream) java.io.UnsupportedEncodingException e java.io.OutputStream os public void <init> (java.io.Writer) java.io.Writer writer public void flush () throws java.io.IOException public void startDocument () throws org.xml.sax.SAXException java.io.IOException e public void startElement (java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes) throws org.xml.sax.SAXException int i java.io.IOException e String namespaceURI String localName String qName org.xml.sax.Attributes atts public void characters (char[], int, int) throws org.xml.sax.SAXException String cdata java.io.IOException e char[] ch int start int length public void endElement (java.lang.String, java.lang.String, java.lang.String) throws org.xml.sax.SAXException java.io.IOException e String namespaceURI String localName String qName public void endDocument () throws org.xml.sax.SAXException java.io.IOException e public void ignorableWhitespace (char[], int, int) throws org.xml.sax.SAXException char[] ch int start int length public void endPrefixMapping (java.lang.String) throws org.xml.sax.SAXException String prefix public void skippedEntity (java.lang.String) throws org.xml.sax.SAXException String name public void setDocumentLocator (org.xml.sax.Locator) org.xml.sax.Locator locator public void processingInstruction (java.lang.String, java.lang.String) throws org.xml.sax.SAXException String target String data public void startPrefixMapping (java.lang.String, java.lang.String) throws org.xml.sax.SAXException String prefix String uri }
org/tmatesoft/svn/core/wc/xml/SVNXMLLogHandler.class
SVNXMLLogHandler.java package org.tmatesoft.svn.core.wc.xml public org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler extends org.tmatesoft.svn.core.wc.xml.AbstractXMLHandler implements org.tmatesoft.svn.core.ISVNLogEntryHandler { public static final String COPYFROM_REV_ATTR public static final String COPYFROM_PATH_ATTR public static final String ACTION_ATTR public static final String REVISION_ATTR public static final String MSG_TAG public static final String PATH_TAG public static final String PATHS_TAG public static final String DATE_TAG public static final String AUTHOR_TAG public static final String LOGENTRY_TAG public static final String LOG_TAG private boolean myIsOmitLogMessage private java.util.LinkedList myMergeStack public void <init> (org.xml.sax.ContentHandler) org.xml.sax.ContentHandler contentHandler public void <init> (org.xml.sax.ContentHandler, org.tmatesoft.svn.util.ISVNDebugLog) org.xml.sax.ContentHandler contentHandler org.tmatesoft.svn.util.ISVNDebugLog log public java.lang.String getHeaderName () public void handleLogEntry (org.tmatesoft.svn.core.SVNLogEntry) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.xml.sax.SAXException e org.tmatesoft.svn.core.SVNLogEntry logEntry public void setOmitLogMessage (boolean) boolean omitLogMessage private void sendToHandler (org.tmatesoft.svn.core.SVNLogEntry) throws org.xml.sax.SAXException String key org.tmatesoft.svn.core.SVNLogEntryPath path java.util.Iterator paths String message org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler$MergeFrame frame org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler$MergeFrame frame org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler$MergeFrame frame org.tmatesoft.svn.core.SVNLogEntry logEntry }
org/tmatesoft/svn/core/wc/xml/SVNXMLInfoHandler.class
SVNXMLInfoHandler.java package org.tmatesoft.svn.core.wc.xml public org.tmatesoft.svn.core.wc.xml.SVNXMLInfoHandler extends org.tmatesoft.svn.core.wc.xml.AbstractXMLHandler implements org.tmatesoft.svn.core.wc.ISVNInfoHandler { private static final String INFO_TAG private static final String ENTRY_TAG private static final String REVISION_ATTR private static final String PATH_ATTR private static final String KIND_ATTR private static final String URL_TAG private static final String REPOSITORY_TAG private static final String UUID_TAG private static final String ROOT_TAG private static final String WC_INFO_TAG private static final String SCHEDULE_TAG private static final String COPY_FROM_URL_TAG private static final String COPY_FROM_REVISION_TAG private static final String CHECKSUM_TAG private static final String TEXT_TIME_TAG private static final String PROP_TIME_TAG private static final String COMMIT_TAG private static final String AUTHOR_TAG private static final String DATE_TAG private static final String CONFLICT_TAG private static final String OLD_CONFLICT_TAG private static final String WRK_CONFLICT_TAG private static final String NEW_CONFLICT_TAG private static final String PROP_CONFLICT_TAG private static final String TOKEN_TAG private static final String OWNER_TAG private static final String COMMENT_TAG private static final String CREATED_TAG private static final String EXPIRES_TAG private static final String LOCK_TAG private static final String DEPTH_TAG private static final String CHANGELIST_TAG private java.io.File myTargetPath public void <init> (org.xml.sax.ContentHandler) org.xml.sax.ContentHandler contentHandler public void <init> (org.xml.sax.ContentHandler, org.tmatesoft.svn.util.ISVNDebugLog) org.xml.sax.ContentHandler contentHandler org.tmatesoft.svn.util.ISVNDebugLog log public void setTargetPath (java.io.File) java.io.File path protected java.lang.String getHeaderName () public void handleInfo (org.tmatesoft.svn.core.wc.SVNInfo) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.xml.sax.SAXException e org.tmatesoft.svn.core.wc.SVNInfo info private void sendToHandler (org.tmatesoft.svn.core.wc.SVNInfo) throws org.xml.sax.SAXException String schedule org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.wc.SVNInfo info org.tmatesoft.svn.core.SVNURL rootURL String uuid protected java.lang.String getRelativePath (java.io.File) java.io.File path String fullPath StringBuffer relativePath char pathSeparator boolean targetMeet protected java.lang.String getTargetPath () }
org/tmatesoft/svn/core/wc/xml/SVNXMLLogHandler$MergeFrame.class
SVNXMLLogHandler.java package org.tmatesoft.svn.core.wc.xml org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler$MergeFrame extends java.lang.Object { private long myNumberOfChildrenRemaining final synthetic org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler this$0 private void <init> (org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler) static synthetic long access$010 (org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler$MergeFrame) org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler$MergeFrame x0 synthetic void <init> (org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler, org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler$1) org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler x0 org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler$1 x1 static synthetic long access$000 (org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler$MergeFrame) org.tmatesoft.svn.core.wc.xml.SVNXMLLogHandler$MergeFrame x0 }
org/tmatesoft/svn/core/wc/xml/SVNXMLAnnotateHandler.class
SVNXMLAnnotateHandler.java package org.tmatesoft.svn.core.wc.xml public org.tmatesoft.svn.core.wc.xml.SVNXMLAnnotateHandler extends org.tmatesoft.svn.core.wc.xml.AbstractXMLHandler implements org.tmatesoft.svn.core.wc.ISVNAnnotateHandler { public static final String PATH_ATTR public static final String REVISION_ATTR public static final String DATE_TAG public static final String AUTHOR_TAG public static final String COMMIT_TAG public static final String ENTRY_TAG public static final String LINE_NUMBER_TAG public static final String TARGET_TAG public static final String BLAME_TAG public static final String MERGED_TAG private long myLineNumber private boolean myIsUseMergeHistory public void <init> (org.xml.sax.ContentHandler) org.xml.sax.ContentHandler contentHandler public void <init> (org.xml.sax.ContentHandler, org.tmatesoft.svn.util.ISVNDebugLog) org.xml.sax.ContentHandler contentHandler org.tmatesoft.svn.util.ISVNDebugLog log public void <init> (org.xml.sax.ContentHandler, org.tmatesoft.svn.util.ISVNDebugLog, boolean) org.xml.sax.ContentHandler contentHandler org.tmatesoft.svn.util.ISVNDebugLog log boolean isUseMergeHistory protected java.lang.String getHeaderName () public void startTarget (java.lang.String) org.xml.sax.SAXException e String pathOrURL public void endTarget () org.xml.sax.SAXException e public void handleLine (java.util.Date, long, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.xml.sax.SAXException e java.util.Date date long revision String author String line public void handleLine (java.util.Date, long, java.lang.String, java.lang.String, java.util.Date, long, java.lang.String, java.lang.String, int) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.xml.sax.SAXException e java.util.Date date long revision String author String line java.util.Date mergedDate long mergedRevision String mergedAuthor String mergedPath int lineNumber public boolean handleRevision (java.util.Date, long, java.lang.String, java.io.File) throws org.tmatesoft.svn.core.SVNException java.util.Date date long revision String author java.io.File contents public void handleEOF () }
org/tmatesoft/svn/core/wc/xml/SVNXMLStatusHandler.class
SVNXMLStatusHandler.java package org.tmatesoft.svn.core.wc.xml public org.tmatesoft.svn.core.wc.xml.SVNXMLStatusHandler extends org.tmatesoft.svn.core.wc.xml.AbstractXMLHandler implements org.tmatesoft.svn.core.wc.ISVNStatusHandler { private static final String AGAINST_TAG private static final String TARGET_TAG public static final String EXPIRES_TAG public static final String CREATED_TAG public static final String COMMENT_TAG public static final String OWNER_TAG public static final String TOKEN_TAG public static final String DATE_TAG public static final String AUTHOR_TAG public static final String REMOTE_STATUS_TAG public static final String LOCK_TAG public static final String COMMIT_TAG public static final String WC_STATUS_TAG public static final String ENTRY_TAG public static final String STATUS_TAG public static final String REVISION_ATTR public static final String SWITCHED_ATTR public static final String COPIED_ATTR public static final String WC_LOCKED_ATTR public static final String PROPS_ATTR public static final String ITEM_ATTR public static final String PATH_ATTR private static final String TRUE private java.io.File myTargetPath public void <init> (org.xml.sax.ContentHandler) org.xml.sax.ContentHandler saxHandler public void <init> (org.xml.sax.ContentHandler, org.tmatesoft.svn.util.ISVNDebugLog) org.xml.sax.ContentHandler saxHandler org.tmatesoft.svn.util.ISVNDebugLog log public void startTarget (java.io.File) org.xml.sax.SAXException e java.io.File path public void handleStatus (org.tmatesoft.svn.core.wc.SVNStatus) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.xml.sax.SAXException th org.tmatesoft.svn.core.wc.SVNStatus status public void endTarget (long) org.xml.sax.SAXException e long revision private void sendToHandler (org.tmatesoft.svn.core.wc.SVNStatus) throws org.xml.sax.SAXException org.tmatesoft.svn.core.wc.SVNStatus status protected java.lang.String getRelativePath (java.io.File) java.io.File path String fullPath StringBuffer relativePath char pathSeparator boolean targetMeet protected java.lang.String getTargetPath () protected java.lang.String getHeaderName () }
org/tmatesoft/svn/core/wc/admin/
org/tmatesoft/svn/core/wc/admin/ISVNChangeEntryHandler.class
ISVNChangeEntryHandler.java package org.tmatesoft.svn.core.wc.admin public abstract org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler extends java.lang.Object { public abstract void handleEntry (org.tmatesoft.svn.core.wc.admin.SVNChangeEntry) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/admin/SVNAdminEventAdapter.class
SVNAdminEventAdapter.java package org.tmatesoft.svn.core.wc.admin public org.tmatesoft.svn.core.wc.admin.SVNAdminEventAdapter extends java.lang.Object implements org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler { public void <init> () public void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event double progress public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress }
org/tmatesoft/svn/core/wc/admin/SVNReplayHandler.class
SVNReplayHandler.java package org.tmatesoft.svn.core.wc.admin public org.tmatesoft.svn.core.wc.admin.SVNReplayHandler extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNReplayHandler { private org.tmatesoft.svn.core.io.SVNRepository myTargetRepository private boolean myHasCommitRevPropsCapability private org.tmatesoft.svn.core.ISVNLogEntryHandler myLogEntryHandler private org.tmatesoft.svn.util.ISVNDebugLog myDebugLog private org.tmatesoft.svn.core.wc.ISVNEventHandler myCanceller private org.tmatesoft.svn.core.internal.wc.SVNSynchronizeEditor mySyncEditor private org.tmatesoft.svn.core.wc.admin.SVNAdminClient myAdminClient private int myNormalizedRevPropsCount public void <init> (org.tmatesoft.svn.core.io.SVNRepository, boolean, org.tmatesoft.svn.core.ISVNLogEntryHandler, org.tmatesoft.svn.util.ISVNDebugLog, org.tmatesoft.svn.core.wc.ISVNEventHandler, org.tmatesoft.svn.core.wc.admin.SVNAdminClient) org.tmatesoft.svn.core.io.SVNRepository targetRepository boolean hasCommitRevPropsCapability org.tmatesoft.svn.core.ISVNLogEntryHandler logEntryHandler org.tmatesoft.svn.util.ISVNDebugLog debugLog org.tmatesoft.svn.core.wc.ISVNEventHandler canceller org.tmatesoft.svn.core.wc.admin.SVNAdminClient adminClient public org.tmatesoft.svn.core.io.ISVNEditor handleStartRevision (long, org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException long revision org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.SVNProperties filtered org.tmatesoft.svn.core.SVNProperties normalizedProps org.tmatesoft.svn.core.io.ISVNEditor cancellableEditor public void handleEndRevision (long, org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.io.ISVNEditor) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long revision org.tmatesoft.svn.core.SVNProperties revisionProperties org.tmatesoft.svn.core.io.ISVNEditor editor org.tmatesoft.svn.core.SVNProperties existingProperties org.tmatesoft.svn.core.SVNProperties filtered org.tmatesoft.svn.core.SVNProperties normalizedProps int filteredCount public int getNormalizedRevPropsCount () public int getNormalizedNodePropsCount () private int filterProperties (org.tmatesoft.svn.core.SVNProperties, org.tmatesoft.svn.core.SVNProperties, boolean) String propName org.tmatesoft.svn.core.SVNPropertyValue propValue boolean filter java.util.Iterator propNamesIter org.tmatesoft.svn.core.SVNProperties revProps org.tmatesoft.svn.core.SVNProperties filteredProps boolean isStart int filteredCount private boolean filterIncludeDateAuthorSync (java.lang.String) String propName private boolean filterExcludeDateAuthorSync (java.lang.String) String propName private boolean filterIncludeLog (java.lang.String) String propName private boolean filterExcludeLog (java.lang.String) String propName }
org/tmatesoft/svn/core/wc/admin/ISVNHistoryHandler.class
ISVNHistoryHandler.java package org.tmatesoft.svn.core.wc.admin public abstract org.tmatesoft.svn.core.wc.admin.ISVNHistoryHandler extends java.lang.Object { public abstract void handlePath (org.tmatesoft.svn.core.wc.admin.SVNAdminPath) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/admin/SVNAdminBasicClient.class
SVNAdminBasicClient.java package org.tmatesoft.svn.core.wc.admin public org.tmatesoft.svn.core.wc.admin.SVNAdminBasicClient extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { private org.tmatesoft.svn.core.wc.ISVNRepositoryPool myRepositoryPool private org.tmatesoft.svn.core.wc.ISVNOptions myOptions private org.tmatesoft.svn.core.wc.ISVNEventHandler myEventDispatcher private org.tmatesoft.svn.util.ISVNDebugLog myDebugLog protected org.tmatesoft.svn.core.io.SVNRepository createRepository (org.tmatesoft.svn.core.SVNURL, java.lang.String, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String reposUUID org.tmatesoft.svn.core.SVNURL url String uuid boolean mayReuse org.tmatesoft.svn.core.io.SVNRepository repository protected void dispatchEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException e org.tmatesoft.svn.core.SVNErrorMessage err Throwable th org.tmatesoft.svn.core.wc.SVNEvent event double progress public void setDebugLog (org.tmatesoft.svn.util.ISVNDebugLog) org.tmatesoft.svn.util.ISVNDebugLog log public org.tmatesoft.svn.core.wc.ISVNOptions getOptions () public void checkCancelled () throws org.tmatesoft.svn.core.SVNCancelException public void setEventHandler (org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNEventHandler dispatcher protected org.tmatesoft.svn.core.wc.ISVNEventHandler getEventDispatcher () protected void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options protected void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setOptions (org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNOptions options public org.tmatesoft.svn.util.ISVNDebugLog getDebugLog () public void handleEvent (org.tmatesoft.svn.core.wc.SVNEvent, double) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.SVNEvent event double progress }
org/tmatesoft/svn/core/wc/admin/SVNAdminPath.class
SVNAdminPath.java package org.tmatesoft.svn.core.wc.admin public org.tmatesoft.svn.core.wc.admin.SVNAdminPath extends java.lang.Object { private String myPath private String myNodeID private long myRevision private int myTreeDepth private boolean myIsDir public void <init> (java.lang.String, java.lang.String, long) String path String nodeID long revision public void <init> (java.lang.String, java.lang.String, int, boolean) String path String nodeID int treeDepth boolean isDir public boolean isDir () public java.lang.String getNodeID () public java.lang.String getPath () public long getRevision () public int getTreeDepth () }
org/tmatesoft/svn/core/wc/admin/SVNAdminClient$1.class
SVNAdminClient.java package org.tmatesoft.svn.core.wc.admin org.tmatesoft.svn.core.wc.admin.SVNAdminClient$1 extends java.lang.Object implements org.tmatesoft.svn.core.io.ISVNLockHandler { final synthetic org.tmatesoft.svn.core.wc.admin.SVNAdminClient this$0 void <init> (org.tmatesoft.svn.core.wc.admin.SVNAdminClient) public void handleLock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error public void handleUnlock (java.lang.String, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage) throws org.tmatesoft.svn.core.SVNException String path org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error }
org/tmatesoft/svn/core/wc/admin/ISVNAdminEventHandler.class
ISVNAdminEventHandler.java package org.tmatesoft.svn.core.wc.admin public abstract org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNEventHandler { public abstract void handleAdminEvent (org.tmatesoft.svn.core.wc.admin.SVNAdminEvent, double) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/admin/SVNSyncInfo.class
SVNSyncInfo.java package org.tmatesoft.svn.core.wc.admin public org.tmatesoft.svn.core.wc.admin.SVNSyncInfo extends java.lang.Object { private String mySrcURL private String mySourceRepositoryUUID private long myLastMergedRevision public void <init> (java.lang.String, java.lang.String, long) String srcURL String sourceRepositoryUUID long lastMergedRevision public java.lang.String getSrcURL () public java.lang.String getSourceRepositoryUUID () public long getLastMergedRevision () }
org/tmatesoft/svn/core/wc/admin/SVNAdminEventAction.class
SVNAdminEventAction.java package org.tmatesoft.svn.core.wc.admin public org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction extends java.lang.Object { private int myID public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction REVISION_LOAD public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction REVISION_LOADED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction REVISION_LOAD_EDIT_PATH public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction REVISION_LOAD_DELETE_PATH public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction REVISION_LOAD_ADD_PATH public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction REVISION_LOAD_REPLACE_PATH public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction REVISION_DUMPED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction TRANSACTION_LISTED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction TRANSACTION_REMOVED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction UNLOCK_FAILED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction UNLOCKED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction NOT_LOCKED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction LOCK_LISTED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction RECOVERY_STARTED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction UPGRADE public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction REVISION_PROPERTIES_COPIED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction DUMP_FILTER_REVISION_COMMITTED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction DUMP_FILTER_REVISION_SKIPPED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction DUMP_FILTER_TOTAL_REVISIONS_DROPPED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction DUMP_FILTER_DROPPED_RENUMBERED_REVISION public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction DUMP_FILTER_RENUMBERED_REVISION public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction DUMP_FILTER_TOTAL_NODES_DROPPED public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction DUMP_FILTER_DROPPED_NODE public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction PACK_START public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction PACK_END public static final org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction NORMALIZED_PROPERTIES private void <init> (int) int id public int getID () public java.lang.String toString () static void <clinit> () }
org/tmatesoft/svn/core/wc/admin/SVNAdminEvent.class
SVNAdminEvent.java package org.tmatesoft.svn.core.wc.admin public org.tmatesoft.svn.core.wc.admin.SVNAdminEvent extends java.lang.Object { private String myTxnName private java.io.File myTxnDir private long myShard private long myRevision private long myOriginalRevision private long myDroppedRevisionsCount private int myDroppedNodesCount private org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction myAction private String myPath private String myMessage private org.tmatesoft.svn.core.SVNLock myLock private org.tmatesoft.svn.core.SVNErrorMessage myError public void <init> (long, long, org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction, java.lang.String) long revision long originalRevision org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction action String message public void <init> (org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction, java.lang.String, java.lang.String) org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction action String path String message public void <init> (org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction, long) org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction action long shard public void <init> (long, org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction, java.lang.String) long revision org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction action String message public void <init> (java.lang.String, java.io.File, org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction) String txnName java.io.File txnDir org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction action public void <init> (org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction, org.tmatesoft.svn.core.SVNLock, org.tmatesoft.svn.core.SVNErrorMessage, java.lang.String) org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction action org.tmatesoft.svn.core.SVNLock lock org.tmatesoft.svn.core.SVNErrorMessage error String message public void <init> (org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction, java.lang.String) org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction action String message public void <init> (org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction) org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction action public org.tmatesoft.svn.core.wc.admin.SVNAdminEventAction getAction () public java.lang.String getMessage () public long getOriginalRevision () public long getRevision () public java.io.File getTxnDir () public java.lang.String getTxnName () public java.lang.String getPath () public org.tmatesoft.svn.core.SVNLock getLock () public org.tmatesoft.svn.core.SVNErrorMessage getError () public long getDroppedRevisionsCount () public int getDroppedNodesCount () public void setDroppedRevisionsCount (long) long droppedRevisionsCount public void setDroppedNodesCount (int) int droppedNodesCount public long getShard () }
org/tmatesoft/svn/core/wc/admin/SVNAdminClient$SessionInfo.class
SVNAdminClient.java package org.tmatesoft.svn.core.wc.admin org.tmatesoft.svn.core.wc.admin.SVNAdminClient$SessionInfo extends java.lang.Object { org.tmatesoft.svn.core.io.SVNRepository myRepository long myLastMergedRevision final synthetic org.tmatesoft.svn.core.wc.admin.SVNAdminClient this$0 public void <init> (org.tmatesoft.svn.core.wc.admin.SVNAdminClient, org.tmatesoft.svn.core.io.SVNRepository, long) org.tmatesoft.svn.core.io.SVNRepository repos long lastMergedRev }
org/tmatesoft/svn/core/wc/admin/ISVNTreeHandler.class
ISVNTreeHandler.java package org.tmatesoft.svn.core.wc.admin public abstract org.tmatesoft.svn.core.wc.admin.ISVNTreeHandler extends java.lang.Object { public abstract void handlePath (org.tmatesoft.svn.core.wc.admin.SVNAdminPath) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/admin/ISVNChangedDirectoriesHandler.class
ISVNChangedDirectoriesHandler.java package org.tmatesoft.svn.core.wc.admin public abstract org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler extends java.lang.Object { public abstract void handleDir (java.lang.String) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/admin/SVNLookClient.class
SVNLookClient.java package org.tmatesoft.svn.core.wc.admin public org.tmatesoft.svn.core.wc.admin.SVNLookClient extends org.tmatesoft.svn.core.wc.admin.SVNAdminBasicClient { private org.tmatesoft.svn.core.wc.admin.ISVNGNUDiffGenerator myDiffGenerator public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public org.tmatesoft.svn.core.SVNLogEntry doGetInfo (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException long revNum org.tmatesoft.svn.core.SVNProperties revProps String date String author String logMessage java.io.File repositoryRoot org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public org.tmatesoft.svn.core.SVNLogEntry doGetInfo (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.SVNProperties txnProps String date String author String logMessage java.io.File repositoryRoot String transactionName org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public long doGetYoungestRevision (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public java.lang.String doGetUUID (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public java.lang.String doGetAuthor (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException long revNum org.tmatesoft.svn.core.SVNProperties revProps java.io.File repositoryRoot org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public java.lang.String doGetAuthor (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.SVNProperties txnProps java.io.File repositoryRoot String transactionName org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doCat (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long revNum org.tmatesoft.svn.core.internal.io.fs.FSRoot root java.io.File repositoryRoot String path org.tmatesoft.svn.core.wc.SVNRevision revision java.io.OutputStream out org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doCat (java.io.File, java.lang.String, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.internal.io.fs.FSRoot root java.io.File repositoryRoot String path String transactionName java.io.OutputStream out org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public java.util.Date doGetDate (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException long revNum org.tmatesoft.svn.core.SVNProperties revProps String date java.io.File repositoryRoot org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public java.util.Date doGetDate (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.SVNProperties txnProps String date java.io.File repositoryRoot String transactionName org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public java.lang.String doGetLog (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException long revNum org.tmatesoft.svn.core.SVNProperties revProps java.io.File repositoryRoot org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public java.lang.String doGetLog (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.SVNProperties txnProps java.io.File repositoryRoot String transactionName org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doGetChanged (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler, boolean) throws org.tmatesoft.svn.core.SVNException long revNum org.tmatesoft.svn.core.internal.io.fs.FSRoot root long baseRevision org.tmatesoft.svn.core.internal.wc.SVNNodeEditor editor java.io.File repositoryRoot org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler handler boolean includeCopyInfo org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doGetChanged (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.internal.io.fs.FSRoot root long baseRevision org.tmatesoft.svn.core.internal.wc.SVNNodeEditor editor java.io.File repositoryRoot String transactionName org.tmatesoft.svn.core.wc.admin.ISVNChangeEntryHandler handler boolean includeCopyInfo org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doGetChangedDirectories (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler) throws org.tmatesoft.svn.core.SVNException long revNum org.tmatesoft.svn.core.internal.io.fs.FSRoot root long baseRevision org.tmatesoft.svn.core.internal.wc.SVNNodeEditor editor java.io.File repositoryRoot org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler handler org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doGetChangedDirectories (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.internal.io.fs.FSRoot root long baseRevision org.tmatesoft.svn.core.internal.wc.SVNNodeEditor editor java.io.File repositoryRoot String transactionName org.tmatesoft.svn.core.wc.admin.ISVNChangedDirectoriesHandler handler org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doGetHistory (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, boolean, long, org.tmatesoft.svn.core.wc.admin.ISVNHistoryHandler) throws org.tmatesoft.svn.core.SVNException long revNum java.io.File repositoryRoot String path org.tmatesoft.svn.core.wc.SVNRevision revision boolean includeIDs long limit org.tmatesoft.svn.core.wc.admin.ISVNHistoryHandler handler org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public org.tmatesoft.svn.core.SVNLock doGetLock (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File repositoryRoot String path org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doGetTree (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, org.tmatesoft.svn.core.wc.admin.ISVNTreeHandler) throws org.tmatesoft.svn.core.SVNException long revNum org.tmatesoft.svn.core.internal.io.fs.FSRoot root org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node org.tmatesoft.svn.core.internal.io.fs.FSID id org.tmatesoft.svn.core.SVNNodeKind kind java.io.File repositoryRoot String path org.tmatesoft.svn.core.wc.SVNRevision revision boolean includeIDs boolean recursive org.tmatesoft.svn.core.wc.admin.ISVNTreeHandler handler org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doGetTree (java.io.File, java.lang.String, java.lang.String, boolean, boolean, org.tmatesoft.svn.core.wc.admin.ISVNTreeHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.internal.io.fs.FSRoot root org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node org.tmatesoft.svn.core.internal.io.fs.FSID id org.tmatesoft.svn.core.SVNNodeKind kind java.io.File repositoryRoot String path String transactionName boolean includeIDs boolean recursive org.tmatesoft.svn.core.wc.admin.ISVNTreeHandler handler org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doGetDiff (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long revNum org.tmatesoft.svn.core.internal.io.fs.FSRoot root long baseRevision org.tmatesoft.svn.core.internal.wc.SVNNodeEditor editor org.tmatesoft.svn.core.wc.admin.ISVNGNUDiffGenerator generator java.io.File repositoryRoot org.tmatesoft.svn.core.wc.SVNRevision revision boolean diffDeleted boolean diffAdded boolean diffCopyFrom java.io.OutputStream os org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doGetDiff (java.io.File, java.lang.String, boolean, boolean, boolean, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.internal.io.fs.FSRoot root long baseRevision org.tmatesoft.svn.core.internal.wc.SVNNodeEditor editor org.tmatesoft.svn.core.wc.admin.ISVNGNUDiffGenerator generator java.io.File repositoryRoot String transactionName boolean diffDeleted boolean diffAdded boolean diffCopyFrom java.io.OutputStream os org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public org.tmatesoft.svn.core.SVNPropertyValue doGetProperty (java.io.File, java.lang.String, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot String propName String path org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNProperties props public org.tmatesoft.svn.core.SVNProperties doGetProperties (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot String path org.tmatesoft.svn.core.wc.SVNRevision revision public org.tmatesoft.svn.core.SVNPropertyValue doGetProperty (java.io.File, java.lang.String, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot String propName String path String transactionName org.tmatesoft.svn.core.SVNProperties props public org.tmatesoft.svn.core.SVNProperties doGetProperties (java.io.File, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot String path String transactionName public org.tmatesoft.svn.core.SVNPropertyValue doGetRevisionProperty (java.io.File, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot String propName org.tmatesoft.svn.core.wc.SVNRevision revision org.tmatesoft.svn.core.SVNProperties revProps public org.tmatesoft.svn.core.SVNProperties doGetRevisionProperties (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot org.tmatesoft.svn.core.wc.SVNRevision revision public org.tmatesoft.svn.core.SVNPropertyValue doGetRevisionProperty (java.io.File, java.lang.String, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot String propName String transactionName org.tmatesoft.svn.core.SVNProperties revProps public org.tmatesoft.svn.core.SVNProperties doGetRevisionProperties (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot String transactionName public void setDiffGenerator (org.tmatesoft.svn.core.wc.admin.ISVNGNUDiffGenerator) org.tmatesoft.svn.core.wc.admin.ISVNGNUDiffGenerator diffGenerator public org.tmatesoft.svn.core.wc.admin.ISVNGNUDiffGenerator getDiffGenerator () org.tmatesoft.svn.core.internal.wc.DefaultSVNGNUDiffGenerator defaultDiffGenerator private void getTree (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, org.tmatesoft.svn.core.internal.io.fs.FSID, boolean, int, boolean, org.tmatesoft.svn.core.wc.admin.ISVNTreeHandler) throws org.tmatesoft.svn.core.SVNException String name org.tmatesoft.svn.core.internal.io.fs.FSEntry entry java.util.Iterator names org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node java.util.Map entries org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.FSRoot root String path org.tmatesoft.svn.core.SVNNodeKind kind org.tmatesoft.svn.core.internal.io.fs.FSID id boolean includeIDs int depth boolean recursive org.tmatesoft.svn.core.wc.admin.ISVNTreeHandler handler private org.tmatesoft.svn.core.SVNProperties getProperties (java.io.File, java.lang.String, java.lang.String, org.tmatesoft.svn.core.wc.SVNRevision, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long revNum org.tmatesoft.svn.core.internal.io.fs.FSTransactionInfo txn org.tmatesoft.svn.core.internal.io.fs.FSRoot root org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node java.io.File repositoryRoot String propName String path org.tmatesoft.svn.core.wc.SVNRevision revision String txnName boolean singleProp boolean revProps org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs private void getHistory (org.tmatesoft.svn.core.internal.io.fs.FSFS, java.lang.String, long, long, long, boolean, boolean, org.tmatesoft.svn.core.wc.admin.ISVNHistoryHandler) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err long tmpRev org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot revRoot org.tmatesoft.svn.core.internal.io.fs.FSRevisionNode node org.tmatesoft.svn.core.SVNException svne long revision String id org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs String path long start long end long limit boolean crossCopies boolean includeIDs org.tmatesoft.svn.core.wc.admin.ISVNHistoryHandler handler org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot root org.tmatesoft.svn.core.internal.io.fs.FSNodeHistory history long count private org.tmatesoft.svn.core.internal.wc.SVNNodeEditor generateDeltaTree (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSRoot, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.FSRoot root long baseRevision org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot baseRoot org.tmatesoft.svn.core.internal.wc.SVNNodeEditor editor private void catFile (org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err byte[] buffer int len org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe java.io.InputStream contents org.tmatesoft.svn.core.internal.io.fs.FSRoot root String path java.io.OutputStream out org.tmatesoft.svn.core.SVNNodeKind kind private org.tmatesoft.svn.core.SVNNodeKind verifyPath (org.tmatesoft.svn.core.internal.io.fs.FSRoot, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.internal.io.fs.FSRoot root String path org.tmatesoft.svn.core.SVNNodeKind kind private org.tmatesoft.svn.core.internal.io.fs.FSFS open (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File repositoryRoot org.tmatesoft.svn.core.wc.SVNRevision revision private org.tmatesoft.svn.core.internal.io.fs.FSFS open (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.File repositoryRoot String transactionName }
org/tmatesoft/svn/core/wc/admin/SVNAdminClient.class
SVNAdminClient.java package org.tmatesoft.svn.core.wc.admin public org.tmatesoft.svn.core.wc.admin.SVNAdminClient extends org.tmatesoft.svn.core.wc.admin.SVNAdminBasicClient { private org.tmatesoft.svn.core.ISVNLogEntryHandler mySyncHandler private org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler myDumpFilterHandler private org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler myEventHandler private org.tmatesoft.svn.core.internal.io.fs.FSHotCopier myHotCopier private org.tmatesoft.svn.core.internal.wc.SVNDumpStreamParser myDumpStreamParser private org.tmatesoft.svn.core.internal.wc.SVNDumpEditor myDumpEditor private static final int LOCK_RETRY_COUNT public void <init> (org.tmatesoft.svn.core.auth.ISVNAuthenticationManager, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.auth.ISVNAuthenticationManager authManager org.tmatesoft.svn.core.wc.ISVNOptions options public void <init> (org.tmatesoft.svn.core.wc.ISVNRepositoryPool, org.tmatesoft.svn.core.wc.ISVNOptions) org.tmatesoft.svn.core.wc.ISVNRepositoryPool repositoryPool org.tmatesoft.svn.core.wc.ISVNOptions options public void setReplayHandler (org.tmatesoft.svn.core.ISVNLogEntryHandler) org.tmatesoft.svn.core.ISVNLogEntryHandler handler public void setEventHandler (org.tmatesoft.svn.core.wc.ISVNEventHandler) org.tmatesoft.svn.core.wc.ISVNEventHandler handler public org.tmatesoft.svn.core.SVNURL doCreateRepository (java.io.File, java.lang.String, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path String uuid boolean enableRevisionProperties boolean force public org.tmatesoft.svn.core.SVNURL doCreateRepository (java.io.File, java.lang.String, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path String uuid boolean enableRevisionProperties boolean force boolean pre14Compatible public org.tmatesoft.svn.core.SVNURL doCreateRepository (java.io.File, java.lang.String, boolean, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path String uuid boolean enableRevisionProperties boolean force boolean pre14Compatible boolean pre15Compatible boolean pre16Compatible public org.tmatesoft.svn.core.SVNURL doCreateRepository (java.io.File, java.lang.String, boolean, boolean, boolean, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path String uuid boolean enableRevisionProperties boolean force boolean pre14Compatible boolean pre15Compatible boolean pre16Compatible boolean pre17Compatible boolean with17Compatible public org.tmatesoft.svn.core.SVNURL doCreateRepository (java.io.File, java.lang.String, boolean, boolean, boolean, boolean) throws org.tmatesoft.svn.core.SVNException java.io.File path String uuid boolean enableRevisionProperties boolean force boolean pre14Compatible boolean pre15Compatible public void doCopyRevisionProperties (org.tmatesoft.svn.core.SVNURL, long, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNProperties normalizedProps long i int normalizedRevPropsCount long step org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNURL toURL long startRevision long endRevision org.tmatesoft.svn.core.io.SVNRepository toRepos org.tmatesoft.svn.core.wc.admin.SVNAdminClient$SessionInfo info org.tmatesoft.svn.core.SVNException error org.tmatesoft.svn.core.SVNException error2 public void doInitialize (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNErrorMessage err boolean supportsPartialReplay long latestRevision org.tmatesoft.svn.core.SVNPropertyValue fromURLProp org.tmatesoft.svn.core.SVNURL rootURL String uuid org.tmatesoft.svn.core.SVNProperties normalizedProps org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNURL fromURL org.tmatesoft.svn.core.SVNURL toURL org.tmatesoft.svn.core.io.SVNRepository toRepos org.tmatesoft.svn.core.io.SVNRepository fromRepos org.tmatesoft.svn.core.SVNException error org.tmatesoft.svn.core.SVNException error2 public org.tmatesoft.svn.core.wc.admin.SVNSyncInfo doInfo (org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNPropertyValue fromURL org.tmatesoft.svn.core.SVNPropertyValue fromUUID org.tmatesoft.svn.core.SVNPropertyValue lastMergedRevProp long lastMergedRev org.tmatesoft.svn.core.SVNURL toURL org.tmatesoft.svn.core.io.SVNRepository toRepos public void doPack (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSPacker packer java.io.File repositoryRoot org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doCompleteSynchronize (org.tmatesoft.svn.core.SVNURL, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNURL fromURL org.tmatesoft.svn.core.SVNURL toURL org.tmatesoft.svn.core.replicator.SVNRepositoryReplicator replicator org.tmatesoft.svn.core.io.SVNRepository fromRepos org.tmatesoft.svn.core.io.SVNRepository toRepos public void doSynchronize (org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException NumberFormatException nfe org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNProperties normalizedProps long copyingRev org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.wc.admin.SVNAdminClient$SessionInfo info long lastMergedRevision org.tmatesoft.svn.core.SVNPropertyValue currentlyCopying long toLatestRevision int normalizedRevPropsCount long fromLatestRevision boolean hasCommitRevPropCapability long startRevision long endRevision org.tmatesoft.svn.core.wc.admin.SVNReplayHandler replayHandler org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNException svne org.tmatesoft.svn.core.SVNURL toURL org.tmatesoft.svn.core.io.SVNRepository toRepos org.tmatesoft.svn.core.io.SVNRepository fromRepos org.tmatesoft.svn.core.SVNException error org.tmatesoft.svn.core.SVNException error2 public void doListLocks (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File digestFile org.tmatesoft.svn.core.io.ISVNLockHandler handler java.io.File repositoryRoot org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doRemoveLocks (java.io.File, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event org.tmatesoft.svn.core.SVNException svne String path org.tmatesoft.svn.core.SVNLock lock int i java.io.File repositoryRoot String[] paths org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doListTransactions (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event String txnName java.io.File txnDir java.util.Iterator names java.util.Map txns java.io.File repositoryRoot org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doRemoveTransactions (java.io.File, java.lang.String[]) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event String txnName int i java.io.File repositoryRoot String[] transactions org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doVerify (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot public void doVerify (java.io.File, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision) throws org.tmatesoft.svn.core.SVNException long youngestRevision long lowerRev long upperRev java.io.File repositoryRoot org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doDump (java.io.File, java.io.OutputStream, org.tmatesoft.svn.core.wc.SVNRevision, org.tmatesoft.svn.core.wc.SVNRevision, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err long youngestRevision long lowerR long upperR java.io.File repositoryRoot java.io.OutputStream dumpStream org.tmatesoft.svn.core.wc.SVNRevision startRevision org.tmatesoft.svn.core.wc.SVNRevision endRevision boolean isIncremental boolean useDeltas org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doLoad (java.io.File, java.io.InputStream) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot java.io.InputStream dumpStream public void doLoad (java.io.File, java.io.InputStream, boolean, boolean, org.tmatesoft.svn.core.wc.admin.SVNUUIDAction, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.wc.ISVNLoadHandler handler org.tmatesoft.svn.core.internal.wc.SVNDumpStreamParser parser java.io.File repositoryRoot java.io.InputStream dumpStream boolean usePreCommitHook boolean usePostCommitHook org.tmatesoft.svn.core.wc.admin.SVNUUIDAction uuidAction String parentDir java.nio.charset.CharsetDecoder decoder org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doRecover (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event org.tmatesoft.svn.core.internal.io.fs.FSRecoverer recoverer java.io.File repositoryRoot org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doUpgrade (java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event java.io.File reposFormatFile int format java.io.File repositoryRoot org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doSetUUID (java.io.File, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err String[] components java.io.File repositoryRoot String uuid org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doHotCopy (java.io.File, java.io.File) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.io.fs.FSHotCopier copier java.io.File srcRepositoryRoot java.io.File newRepositoryRoot org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public long getYoungestRevision (java.io.File) throws org.tmatesoft.svn.core.SVNException java.io.File repositoryRoot org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs public void doFilter (java.io.InputStream, java.io.OutputStream, boolean, boolean, boolean, boolean, java.util.Collection, boolean) throws org.tmatesoft.svn.core.SVNException String message org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event String message org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event String message org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event Long revision org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler$RevisionItem revItem int i java.util.Map renumberHistory Long[] reNumberedRevisions String path int i String message org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event String[] paths java.util.Map droppedNodes java.io.InputStream dumpStream java.io.OutputStream resultDumpStream boolean exclude boolean renumberRevisions boolean dropEmptyRevisions boolean preserveRevisionProperties java.util.Collection prefixes boolean skipMissingMergeSources java.nio.charset.CharsetDecoder decoder org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler handler org.tmatesoft.svn.core.internal.wc.SVNDumpStreamParser parser protected void handlePropertesCopied (boolean, long) throws org.tmatesoft.svn.core.SVNException String message org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event boolean foundSyncProps long revision protected void handleNormalizedProperties (int, int) throws org.tmatesoft.svn.core.SVNException String message org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event int normalizedRevPropsCount int normalizedNodePropsCount private org.tmatesoft.svn.core.internal.io.fs.FSHotCopier getHotCopier () private void verify (org.tmatesoft.svn.core.internal.io.fs.FSFS, long, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot toRoot org.tmatesoft.svn.core.io.ISVNEditor editor String message long rev org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs long startRev long endRev long youngestRev private void dump (org.tmatesoft.svn.core.internal.io.fs.FSFS, java.io.OutputStream, long, long, boolean, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event String message long toRev long fromRev long toRev org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot fromRoot org.tmatesoft.svn.core.wc.admin.SVNAdminEvent event long fromRev long toRev boolean useDeltasForRevision org.tmatesoft.svn.core.internal.io.fs.FSRevisionRoot toRoot org.tmatesoft.svn.core.io.ISVNEditor dumpEditor String message long i org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs java.io.OutputStream dumpStream long start long end boolean isIncremental boolean useDeltas boolean isDumping long youngestRevision org.tmatesoft.svn.core.internal.wc.SVNAdminDeltifier deltifier String uuid int version private void writeRevisionRecord (java.io.OutputStream, org.tmatesoft.svn.core.internal.io.fs.FSFS, long) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.internal.util.SVNDate date org.tmatesoft.svn.core.SVNErrorMessage err java.io.UnsupportedEncodingException uee java.io.OutputStream dumpStream org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs long revision org.tmatesoft.svn.core.SVNProperties revProps String revisionDate java.io.ByteArrayOutputStream encodedProps String propContents private void writeDumpData (java.io.OutputStream, java.lang.String) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.io.IOException ioe java.io.OutputStream out String data private org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler createLoadHandler (org.tmatesoft.svn.core.internal.io.fs.FSFS, boolean, boolean, org.tmatesoft.svn.core.wc.admin.SVNUUIDAction, java.lang.String) org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs boolean usePreCommitHook boolean usePostCommitHook org.tmatesoft.svn.core.wc.admin.SVNUUIDAction uuidAction String parentDir org.tmatesoft.svn.core.internal.wc.DefaultLoadHandler handler private org.tmatesoft.svn.core.internal.wc.DefaultDumpFilterHandler getDumpFilterHandler (java.io.OutputStream, boolean, boolean, boolean, boolean, java.util.Collection, boolean) java.io.OutputStream os boolean exclude boolean renumberRevisions boolean dropEmptyRevisions boolean preserveRevisionProperties java.util.Collection prefixes boolean skipMissingMergeSources private org.tmatesoft.svn.core.internal.wc.SVNDumpStreamParser getDumpStreamParser () private org.tmatesoft.svn.core.internal.wc.SVNDumpEditor getDumpEditor (org.tmatesoft.svn.core.internal.io.fs.FSFS, org.tmatesoft.svn.core.internal.io.fs.FSRoot, long, long, java.lang.String, java.io.OutputStream, boolean, boolean) org.tmatesoft.svn.core.internal.io.fs.FSFS fsfs org.tmatesoft.svn.core.internal.io.fs.FSRoot root long toRevision long oldestDumpedRevision String rootPath java.io.OutputStream dumpStream boolean useDeltas boolean isVerify private org.tmatesoft.svn.core.SVNProperties copyRevisionProperties (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.io.SVNRepository, long, boolean) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository fromRepository org.tmatesoft.svn.core.io.SVNRepository toRepository long revision boolean sync int filteredCount org.tmatesoft.svn.core.SVNProperties existingRevProps org.tmatesoft.svn.core.SVNProperties revProps org.tmatesoft.svn.core.SVNProperties normalizedProps private org.tmatesoft.svn.core.wc.admin.SVNAdminClient$SessionInfo openSourceRepository (org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err NumberFormatException nfe org.tmatesoft.svn.core.io.SVNRepository targetRepos org.tmatesoft.svn.core.SVNPropertyValue fromURL org.tmatesoft.svn.core.SVNPropertyValue fromUUID org.tmatesoft.svn.core.SVNPropertyValue lastMergedRev org.tmatesoft.svn.core.SVNURL srcURL org.tmatesoft.svn.core.io.SVNRepository srcRepos private void checkIfRepositoryIsAtRoot (org.tmatesoft.svn.core.io.SVNRepository, org.tmatesoft.svn.core.SVNURL) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err org.tmatesoft.svn.core.io.SVNRepository repos org.tmatesoft.svn.core.SVNURL url org.tmatesoft.svn.core.SVNURL reposRoot private void lock (org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNErrorMessage err java.net.UnknownHostException e InterruptedException e org.tmatesoft.svn.core.SVNPropertyValue reposLockToken org.tmatesoft.svn.core.io.SVNRepository repos String hostName String lockToken int i org.tmatesoft.svn.core.SVNErrorMessage childError org.tmatesoft.svn.core.SVNErrorMessage err private void unlock (org.tmatesoft.svn.core.io.SVNRepository) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.io.SVNRepository repos public static org.tmatesoft.svn.core.SVNProperties normalizeRevisionProperties (org.tmatesoft.svn.core.SVNProperties) throws org.tmatesoft.svn.core.SVNException org.tmatesoft.svn.core.SVNPropertyValue value String normalizedValue String propName java.util.Iterator propNamesIter org.tmatesoft.svn.core.SVNProperties revProps org.tmatesoft.svn.core.SVNProperties normalizedProps public static java.lang.String normalizeString (java.lang.String) throws org.tmatesoft.svn.core.SVNException String string static synthetic org.tmatesoft.svn.core.wc.admin.ISVNAdminEventHandler access$000 (org.tmatesoft.svn.core.wc.admin.SVNAdminClient) org.tmatesoft.svn.core.wc.admin.SVNAdminClient x0 }
org/tmatesoft/svn/core/wc/admin/ISVNGNUDiffGenerator.class
ISVNGNUDiffGenerator.java package org.tmatesoft.svn.core.wc.admin public abstract org.tmatesoft.svn.core.wc.admin.ISVNGNUDiffGenerator extends java.lang.Object implements org.tmatesoft.svn.core.wc.ISVNDiffGenerator { public static final int ADDED public static final int DELETED public static final int MODIFIED public static final int COPIED public static final int NO_DIFF public abstract void displayHeader (int, java.lang.String, java.lang.String, long, java.io.OutputStream) throws org.tmatesoft.svn.core.SVNException }
org/tmatesoft/svn/core/wc/admin/SVNChangeEntry.class
SVNChangeEntry.java package org.tmatesoft.svn.core.wc.admin public org.tmatesoft.svn.core.wc.admin.SVNChangeEntry extends java.lang.Object { public static final char TYPE_ADDED public static final char TYPE_DELETED public static final char TYPE_UPDATED private String myPath private char myType private String myCopyFromPath private long myCopyFromRevision private boolean myHasTextModifications private boolean myHasPropModifications private org.tmatesoft.svn.core.SVNNodeKind myKind public void <init> (java.lang.String, org.tmatesoft.svn.core.SVNNodeKind, char, java.lang.String, long, boolean, boolean) String path org.tmatesoft.svn.core.SVNNodeKind kind char type String copyFromPath long copyFromRevision boolean hasTextModifications boolean hasPropModifications public java.lang.String getCopyFromPath () public long getCopyFromRevision () public java.lang.String getPath () public char getType () public boolean hasPropertyModifications () public boolean hasTextModifications () public org.tmatesoft.svn.core.SVNNodeKind getKind () }
org/tmatesoft/svn/core/wc/admin/SVNUUIDAction.class
SVNUUIDAction.java package org.tmatesoft.svn.core.wc.admin public org.tmatesoft.svn.core.wc.admin.SVNUUIDAction extends java.lang.Object { public static final org.tmatesoft.svn.core.wc.admin.SVNUUIDAction IGNORE_UUID public static final org.tmatesoft.svn.core.wc.admin.SVNUUIDAction FORCE_UUID public static final org.tmatesoft.svn.core.wc.admin.SVNUUIDAction DEFAULT private void <init> () static void <clinit> () }
org/tmatesoft/svn/util/
org/tmatesoft/svn/util/SVNDebugLogAdapter.class
SVNDebugLogAdapter.java package org.tmatesoft.svn.util public abstract org.tmatesoft.svn.util.SVNDebugLogAdapter extends java.lang.Object implements org.tmatesoft.svn.util.ISVNDebugLog { public void <init> () public void logError (org.tmatesoft.svn.util.SVNLogType, java.lang.String) org.tmatesoft.svn.util.SVNLogType logType String message public void logError (org.tmatesoft.svn.util.SVNLogType, java.lang.Throwable) org.tmatesoft.svn.util.SVNLogType logType Throwable th public void logSevere (org.tmatesoft.svn.util.SVNLogType, java.lang.String) org.tmatesoft.svn.util.SVNLogType logType String message public void logSevere (org.tmatesoft.svn.util.SVNLogType, java.lang.Throwable) org.tmatesoft.svn.util.SVNLogType logType Throwable th public void logFine (org.tmatesoft.svn.util.SVNLogType, java.lang.Throwable) org.tmatesoft.svn.util.SVNLogType logType Throwable th public void logFine (org.tmatesoft.svn.util.SVNLogType, java.lang.String) org.tmatesoft.svn.util.SVNLogType logType String message public void logFiner (org.tmatesoft.svn.util.SVNLogType, java.lang.Throwable) org.tmatesoft.svn.util.SVNLogType logType Throwable th public void logFiner (org.tmatesoft.svn.util.SVNLogType, java.lang.String) org.tmatesoft.svn.util.SVNLogType logType String message public void logFinest (org.tmatesoft.svn.util.SVNLogType, java.lang.Throwable) org.tmatesoft.svn.util.SVNLogType logType Throwable th public void logFinest (org.tmatesoft.svn.util.SVNLogType, java.lang.String) org.tmatesoft.svn.util.SVNLogType logType String message public void flushStream (java.lang.Object) org.tmatesoft.svn.core.internal.util.SVNLogInputStream logStream org.tmatesoft.svn.core.internal.util.SVNLogOutputStream logStream Object stream public java.io.InputStream createLogStream (org.tmatesoft.svn.util.SVNLogType, java.io.InputStream) org.tmatesoft.svn.util.SVNLogType logType java.io.InputStream is public java.io.OutputStream createLogStream (org.tmatesoft.svn.util.SVNLogType, java.io.OutputStream) org.tmatesoft.svn.util.SVNLogType logType java.io.OutputStream os public java.io.OutputStream createInputLogStream () public java.io.OutputStream createOutputLogStream () }
org/tmatesoft/svn/util/SVNLogType.class
SVNLogType.java package org.tmatesoft.svn.util public org.tmatesoft.svn.util.SVNLogType extends java.lang.Object { public static final org.tmatesoft.svn.util.SVNLogType NETWORK public static final org.tmatesoft.svn.util.SVNLogType WC public static final org.tmatesoft.svn.util.SVNLogType FSFS public static final org.tmatesoft.svn.util.SVNLogType CLIENT public static final org.tmatesoft.svn.util.SVNLogType DEFAULT private String myName private String myShortName private void <init> (java.lang.String, java.lang.String) String name String shortName public java.lang.String getName () public java.lang.String getShortName () static void <clinit> () }
org/tmatesoft/svn/util/ISVNDebugLog.class
ISVNDebugLog.java package org.tmatesoft.svn.util public abstract org.tmatesoft.svn.util.ISVNDebugLog extends java.lang.Object { public abstract void logError (org.tmatesoft.svn.util.SVNLogType, java.lang.String) public abstract void logError (org.tmatesoft.svn.util.SVNLogType, java.lang.Throwable) public abstract void logSevere (org.tmatesoft.svn.util.SVNLogType, java.lang.String) public abstract void logSevere (org.tmatesoft.svn.util.SVNLogType, java.lang.Throwable) public abstract void logFine (org.tmatesoft.svn.util.SVNLogType, java.lang.Throwable) public abstract void logFine (org.tmatesoft.svn.util.SVNLogType, java.lang.String) public abstract void logFiner (org.tmatesoft.svn.util.SVNLogType, java.lang.Throwable) public abstract void logFiner (org.tmatesoft.svn.util.SVNLogType, java.lang.String) public abstract void logFinest (org.tmatesoft.svn.util.SVNLogType, java.lang.Throwable) public abstract void logFinest (org.tmatesoft.svn.util.SVNLogType, java.lang.String) public abstract void log (org.tmatesoft.svn.util.SVNLogType, java.lang.Throwable, java.util.logging.Level) public abstract void log (org.tmatesoft.svn.util.SVNLogType, java.lang.String, java.util.logging.Level) public abstract void log (org.tmatesoft.svn.util.SVNLogType, java.lang.String, byte[]) public abstract java.io.InputStream createLogStream (org.tmatesoft.svn.util.SVNLogType, java.io.InputStream) public abstract java.io.OutputStream createLogStream (org.tmatesoft.svn.util.SVNLogType, java.io.OutputStream) public abstract java.io.OutputStream createOutputLogStream () public abstract java.io.OutputStream createInputLogStream () public abstract void flushStream (java.lang.Object) }
org/tmatesoft/svn/util/Version.class
Version.java package org.tmatesoft.svn.util public org.tmatesoft.svn.util.Version extends java.lang.Object { private static String PROPERTIES_PATH private static final String SHORT_VERSION_STRING_PROPERTY private static final String VERSION_STRING_PROPERTY private static final String VERSION_MAJOR_PROPERTY private static final String VERSION_MINOR_PROPERTY private static final String VERSION_MICRO_PROPERTY private static final String VERSION_REVISION_PROPERTY private static final String SVN_VERSION_PROPERTY private static final String VERSION_STRING_DEFAULT private static final String VERSION_MAJOR_DEFAULT private static final String VERSION_MINOR_DEFAULT private static final String VERSION_MICRO_DEFAULT private static final String VERSION_REVISION_DEFAULT private static final String SVN_VERSION_DEFAULT private static String ourUserAgent private static java.util.Properties ourProperties public void <init> () public static java.lang.String getVersionString () public static java.lang.String getShortVersionString () public static java.lang.String getSVNVersion () public static void setUserAgent (java.lang.String) String userAgent public static java.lang.String getUserAgent () public static int getMajorVersion () NumberFormatException nfe public static int getMinorVersion () NumberFormatException nfe public static int getMicroVersion () NumberFormatException nfe public static long getRevisionNumber () char ch int start StringBuffer revValue NumberFormatException nfe NumberFormatException nfe String revisionProperty public static java.lang.String getRevisionString () private static void loadProperties () java.io.IOException e java.io.InputStream is static void <clinit> () }
org/tmatesoft/svn/util/SVNDebugLog.class
SVNDebugLog.java package org.tmatesoft.svn.util public org.tmatesoft.svn.util.SVNDebugLog extends java.lang.Object { private static org.tmatesoft.svn.util.ISVNDebugLog ourDefaultLog public void <init> () public static void setDefaultLog (org.tmatesoft.svn.util.ISVNDebugLog) org.tmatesoft.svn.util.ISVNDebugLog log public static org.tmatesoft.svn.util.ISVNDebugLog getDefaultLog () }
svnkit.build.properties
org/tmatesoft/svn/core/internal/wc/servers
org/tmatesoft/svn/core/internal/wc/README.txt
org/tmatesoft/svn/core/internal/wc/config
org/tmatesoft/svn/core/io/repository/
org/tmatesoft/svn/core/io/repository/template.jar