Package org.tmatesoft.svn.core.wc2
Interface ISvnObjectReceiver<T>
-
- Type Parameters:
T
- type of received object
- All Known Implementing Classes:
AbstractSvnCommit
,SvnAnnotate
,SvnCommit
,SvnDiffStatusReceiver
,SvnDiffSummarize
,SvnGetChangelistPaths
,SvnGetInfo
,SvnGetProperties
,SvnGetStatus
,SvnImport
,SvnList
,SvnLog
,SvnLogMergeInfo
,SvnNgCleanup.CleanupStatusWalk
,SvnNgCommitUtil.CommitStatusWalker
,SvnNgDiffUtil.DiffStatusCallback
,SvnNgGetStatus
,SvnNgLogMergeInfo.LogEntryReceiver
,SvnNgMergeCallback2.VerifyTouchedByDelCheck
,SvnNgPatch.CanDeleteBaton
,SvnReceivingOperation
,SvnRemoteCopy
,SvnRemoteDelete
,SvnRemoteMkDir
,SvnRemoteSetProperty
,SVNRemoteStatusEditor17
,SVNRemoteStatusEditor17.DirectoryInfo
,SvnRepositoryCopyRevisionProperties
,SvnRepositoryDump
,SvnRepositoryFilter
,SvnRepositoryGetChanged
,SvnRepositoryGetChangedDirectories
,SvnRepositoryGetHistory
,SvnRepositoryGetTree
,SvnRepositoryInitialize
,SvnRepositoryListLocks
,SvnRepositoryListTransactions
,SvnRepositoryLoad
,SvnRepositoryPack
,SvnRepositoryReceivingOperation
,SvnRepositoryRecover
,SvnRepositoryRemoveLocks
,SvnRepositoryRemoveTransactions
,SvnRepositorySynchronize
,SvnRepositoryUpgrade
,SvnRepositoryVerify
,SvnSetLock
,SvnSetProperty
,SvnUnlock
,SVNWCContext.ConflictStatusWalker
public interface ISvnObjectReceiver<T>
This interface describes the operation that can receive object(s). Implementation isSvnReceivingOperation
, and many intermediate classes for 1.6 compatibility (classes that deal with handlers). Clients can provide their own handlers for receiving the object(s) by implementing this interface and assign them inSvnReceivingOperation.setReceiver(ISvnObjectReceiver)
.- Version:
- 1.7
- See Also:
SvnReceivingOperation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
receive(SvnTarget target, T object)
Receives object with is target.
-
-
-
Method Detail
-
receive
void receive(SvnTarget target, T object) throws SVNException
Receives object with is target.- Parameters:
target
- target of the objectobject
- object- Throws:
SVNException
-
-