Package hudson.scm
Interface SVNLogFilter
- All Superinterfaces:
 Serializable
- All Known Implementing Classes:
 DefaultSVNLogFilter,NullSVNLogFilter
- 
Method Summary
Modifier and TypeMethodDescriptionbooleanIs there any exclusion rule?booleanisIncluded(org.tmatesoft.svn.core.SVNLogEntry logEntry) Checks if the given log entry should be considered for the purposes of SCM polling.voidsetTaskListener(TaskListener listener)  
- 
Method Details
- 
setTaskListener
 - 
hasExclusionRule
boolean hasExclusionRule()Is there any exclusion rule?- Returns:
 - true if the filter could possibly filter anything.
 
 - 
isIncluded
boolean isIncluded(org.tmatesoft.svn.core.SVNLogEntry logEntry) Checks if the given log entry should be considered for the purposes of SCM polling.- Returns:
 trueif the should trigger polling,falseotherwise
 
 -