Package org.tmatesoft.svn.core.wc2
Class SvnPatch
- java.lang.Object
-
- org.tmatesoft.svn.core.wc2.SvnOperation<java.lang.Void>
-
- org.tmatesoft.svn.core.wc2.SvnPatch
-
- All Implemented Interfaces:
ISvnOperationOptionsProvider
public class SvnPatch extends SvnOperation<java.lang.Void>
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
dryRun
private boolean
ignoreWhitespace
private java.io.File
patchFile
private boolean
removeTempFiles
private boolean
reverse
private int
stripCount
-
Constructor Summary
Constructors Modifier Constructor Description protected
SvnPatch(SvnOperationFactory factory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.File
getPatchFile()
int
getStripCount()
boolean
isDryRun()
boolean
isIgnoreWhitespace()
boolean
isRemoveTempFiles()
boolean
isReverse()
void
setDryRun(boolean dryRun)
void
setIgnoreWhitespace(boolean ignoreWhitespace)
void
setPatchFile(java.io.File patchFile)
void
setRemoveTempFiles(boolean removeTempFiles)
void
setReverse(boolean reverse)
void
setStripCount(int stripCount)
-
Methods inherited from class org.tmatesoft.svn.core.wc2.SvnOperation
addTarget, cancel, ensureArgumentsAreValid, ensureEnoughTargets, ensureHomohenousTargets, getApplicableChangelists, getAuthenticationManager, getCanceller, getDepth, getEventHandler, getFirstTarget, getMaximumTargetsCount, getMinimumTargetsCount, getOperationalWorkingCopy, getOperationFactory, getOptions, getRepositoryPool, getRevision, getSqliteJournalMode, getTargets, hasFileTargets, hasLocalTargets, hasRemoteTargets, initDefaults, isCancelled, isChangesWorkingCopy, isSleepForTimestamp, isUseParentWcFormat, needsHomohenousTargets, run, setApplicalbeChangelists, setDepth, setRevision, setSingleTarget, setSleepForTimestamp, setSqliteJournalMode
-
-
-
-
Constructor Detail
-
SvnPatch
protected SvnPatch(SvnOperationFactory factory)
-
-
Method Detail
-
getPatchFile
public java.io.File getPatchFile()
-
setPatchFile
public void setPatchFile(java.io.File patchFile)
-
isDryRun
public boolean isDryRun()
-
setDryRun
public void setDryRun(boolean dryRun)
-
getStripCount
public int getStripCount()
-
setStripCount
public void setStripCount(int stripCount)
-
isReverse
public boolean isReverse()
-
setReverse
public void setReverse(boolean reverse)
-
isIgnoreWhitespace
public boolean isIgnoreWhitespace()
-
setIgnoreWhitespace
public void setIgnoreWhitespace(boolean ignoreWhitespace)
-
isRemoveTempFiles
public boolean isRemoveTempFiles()
-
setRemoveTempFiles
public void setRemoveTempFiles(boolean removeTempFiles)
-
-