Class SvnDiffStatusReceiver
- java.lang.Object
-
- org.tmatesoft.svn.core.internal.wc2.ng.SvnDiffStatusReceiver
-
- All Implemented Interfaces:
ISvnObjectReceiver<SvnStatus>
public class SvnDiffStatusReceiver extends java.lang.Object implements ISvnObjectReceiver<SvnStatus>
-
-
Field Summary
Fields Modifier and Type Field Description private java.io.File
anchor
private ISvnDiffCallback
callback
private java.util.Collection<java.lang.String>
changelists
private SVNWCContext
context
private ISVNWCDb
db
private boolean
gitFormat
private boolean
ignoreAncestry
private boolean
showCopiesAsAdds
-
Constructor Summary
Constructors Constructor Description SvnDiffStatusReceiver(SVNWCContext context, java.io.File anchor, ISVNWCDb db, ISvnDiffCallback callback, boolean ignoreAncestry, boolean showCopiesAsAdds, boolean gitFormat, java.util.Collection<java.lang.String> changelists)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private void
fileDiff(java.io.File localAbspath, java.lang.String path)
java.io.File
getAnchor()
ISvnDiffCallback
getCallback()
SVNWCContext
getContext()
ISVNWCDb
getDb()
private java.io.File
getEmptyFile()
boolean
isGitFormat()
boolean
isIgnoreAncestry()
boolean
isShowCopiesAsAdds()
void
receive(SvnTarget target, SvnStatus status)
Receives object with is target.
-
-
-
Field Detail
-
context
private final SVNWCContext context
-
anchor
private final java.io.File anchor
-
db
private final ISVNWCDb db
-
callback
private final ISvnDiffCallback callback
-
showCopiesAsAdds
private final boolean showCopiesAsAdds
-
gitFormat
private final boolean gitFormat
-
ignoreAncestry
private final boolean ignoreAncestry
-
changelists
private final java.util.Collection<java.lang.String> changelists
-
-
Constructor Detail
-
SvnDiffStatusReceiver
public SvnDiffStatusReceiver(SVNWCContext context, java.io.File anchor, ISVNWCDb db, ISvnDiffCallback callback, boolean ignoreAncestry, boolean showCopiesAsAdds, boolean gitFormat, java.util.Collection<java.lang.String> changelists)
-
-
Method Detail
-
getContext
public SVNWCContext getContext()
-
getAnchor
public java.io.File getAnchor()
-
getDb
public ISVNWCDb getDb()
-
getCallback
public ISvnDiffCallback getCallback()
-
isIgnoreAncestry
public boolean isIgnoreAncestry()
-
isShowCopiesAsAdds
public boolean isShowCopiesAsAdds()
-
isGitFormat
public boolean isGitFormat()
-
receive
public void receive(SvnTarget target, SvnStatus status) throws SVNException
Description copied from interface:ISvnObjectReceiver
Receives object with is target.- Specified by:
receive
in interfaceISvnObjectReceiver<SvnStatus>
- Parameters:
target
- target of the objectstatus
- object- Throws:
SVNException
-
fileDiff
private void fileDiff(java.io.File localAbspath, java.lang.String path) throws SVNException
- Throws:
SVNException
-
getEmptyFile
private java.io.File getEmptyFile() throws SVNException
- Throws:
SVNException
-
-