Package org.tmatesoft.svn.core.wc2
Class SvnGetStatusSummary
- java.lang.Object
-
- org.tmatesoft.svn.core.wc2.SvnOperation<SvnStatusSummary>
-
- org.tmatesoft.svn.core.wc2.SvnGetStatusSummary
-
- All Implemented Interfaces:
ISvnOperationOptionsProvider
public class SvnGetStatusSummary extends SvnOperation<SvnStatusSummary>
Represents status operation as local working copy summary status fortargetand all its children.SvnOperation.run()method returnsSvnStatusSummaryobject which describe the summary status of the working copytargetand all its children. * Reported all entries, unmodified, local modifications out of date. Doesn't connect to repository.changeListsare not used. Externals are not processed.- Since:
- 1.7
- Version:
- 1.7
- Author:
- TMate Software Ltd.
- See Also:
SvnStatusSummary
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedSvnGetStatusSummary(SvnOperationFactory factory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetTrailUrl()Returns URL for checking whethertargetwas switched by comparing withtarget's URL.booleanisChangesWorkingCopy()Gets whether the operation changes working copybooleanisCommitted()Returns whether to retrieve last committed revisions or current revisions.voidsetCommitted(boolean isCommitted)Sets whether to retrieve last committed revisions or current revisions.voidsetTrailUrl(java.lang.String trailUrl)Sets URL for checking whethertargetwas switched by comparing withtarget's URL.-
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, isSleepForTimestamp, isUseParentWcFormat, needsHomohenousTargets, run, setApplicalbeChangelists, setDepth, setRevision, setSingleTarget, setSleepForTimestamp, setSqliteJournalMode
-
-
-
-
Constructor Detail
-
SvnGetStatusSummary
protected SvnGetStatusSummary(SvnOperationFactory factory)
-
-
Method Detail
-
isCommitted
public boolean isCommitted()
Returns whether to retrieve last committed revisions or current revisions.- Returns:
trueif last committed revisions should be retrieved, otherwisefalse
-
setCommitted
public void setCommitted(boolean isCommitted)
Sets whether to retrieve last committed revisions or current revisions.- Parameters:
isCommitted-trueif last committed revisions should be retrieved, otherwisefalse
-
getTrailUrl
public java.lang.String getTrailUrl()
Returns URL for checking whethertargetwas switched by comparing withtarget's URL. Used for 1.6 working copies only.- Returns:
- trail URL
-
setTrailUrl
public void setTrailUrl(java.lang.String trailUrl)
Sets URL for checking whethertargetwas switched by comparing withtarget's URL. Used for 1.6 working copies only.- Parameters:
trailUrl- trail URL
-
isChangesWorkingCopy
public boolean isChangesWorkingCopy()
Gets whether the operation changes working copy- Overrides:
isChangesWorkingCopyin classSvnOperation<SvnStatusSummary>- Returns:
trueif the operation changes the working copy, otherwisefalse
-
-