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 Patterns 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
 

Method Detail

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 class
index - the index in the original array of Patterns that the pattern parameter represents.


Copyright © 2004-2011 Spring BeanDoc. All Rights Reserved.