org.springframework.beandoc.util
Interface MatchedPatternCallback
public interface MatchedPatternCallback
Callback interface to be implemented by clients of the PatternMatcher
class. The single method in the interface is called by the matcher for each pattern in
an array of Pattern
s that matches a bean name/id or class.
- Since:
- 1.0
- Author:
- Darren Davison
Method Summary |
void |
patternMatched(String pattern,
int index)
Called for each matching pattern in an array |
patternMatched
void patternMatched(String pattern,
int index)
- Called for each matching pattern in an array
- Parameters:
pattern
- the compiled Pattern that matched against the name/id or classindex
- the index in the original array of Patterns that the pattern parameter
represents.
Copyright © 2004-2009 Spring BeanDoc. All Rights Reserved.