Package hudson.scm
Class DefaultSVNLogFilter
java.lang.Object
hudson.scm.DefaultSVNLogFilter
- All Implemented Interfaces:
SVNLogFilter
,Serializable
Determines whether a log entry contains changes within the included paths for a project.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Is there any exclusion rule?boolean
isIncluded
(org.tmatesoft.svn.core.SVNLogEntry logEntry) Checks if the given log entry should be considered for the purposes of SCM polling.void
setTaskListener
(TaskListener listener)
-
Constructor Details
-
DefaultSVNLogFilter
-
-
Method Details
-
setTaskListener
- Specified by:
setTaskListener
in interfaceSVNLogFilter
-
hasExclusionRule
public boolean hasExclusionRule()Description copied from interface:SVNLogFilter
Is there any exclusion rule?- Specified by:
hasExclusionRule
in interfaceSVNLogFilter
- Returns:
- true if the filter could possibly filter anything.
-
isIncluded
public boolean isIncluded(org.tmatesoft.svn.core.SVNLogEntry logEntry) Description copied from interface:SVNLogFilter
Checks if the given log entry should be considered for the purposes of SCM polling.- Specified by:
isIncluded
in interfaceSVNLogFilter
- Returns:
true
if the should trigger polling,false
otherwise
-