Class SyncInfoFilter
- java.lang.Object
-
- org.eclipse.team.core.synchronize.SyncInfoFilter
-
- Direct Known Subclasses:
FastSyncInfoFilter
,SyncInfoFilter.ContentComparisonSyncInfoFilter
public abstract class SyncInfoFilter extends Object
ASyncInfoFilter
tests aSyncInfo
for inclusion, typically in aSyncInfoSet
.- Since:
- 3.0
- See Also:
SyncInfo
,SyncInfoSet
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SyncInfoFilter.ContentComparisonSyncInfoFilter
SelectsSyncInfo
whose local and remote contents match.
-
Constructor Summary
Constructors Constructor Description SyncInfoFilter()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract boolean
select(SyncInfo info, IProgressMonitor monitor)
Returntrue
if the providedSyncInfo
matches the filter.
-
-
-
Method Detail
-
select
public abstract boolean select(SyncInfo info, IProgressMonitor monitor)
Returntrue
if the providedSyncInfo
matches the filter.- Parameters:
info
- theSyncInfo
to be testedmonitor
- a progress monitor- Returns:
true
if theSyncInfo
matches the filter
-
-