com.xenonsoft.bridgetown.aop
Interface IMethodFinder

All Known Implementing Classes:
DefaultGlobMethodFinder

public interface IMethodFinder

A contract for a concrete class that identifies a particular method that is applicable to an aspect oriented joinpoint.

Version:
$Id: IMethodFinder.java,v 1.2 2004/09/29 03:26:00 peter_pilgrim Exp $
Author:
peterp, 20-Sep-2004

Method Summary
 java.lang.String getFinder()
          Gets the match method filter string The format of the filter string will depend on the implementation class, you are advise to look at the documentation there for further information.
 boolean isMatched(java.lang.reflect.Method method)
          Returns a flag if this finder matches the Java method
 void setFinder(java.lang.String matchString)
          Sets the match method filter string The format of the filter string will depend on the implementation class, you are advise to look at the documentation there for further information.
 

Method Detail

getFinder

public java.lang.String getFinder()
Gets the match method filter string

The format of the filter string will depend on the implementation class, you are advise to look at the documentation there for further information.

Returns:
the text string that describes how to filter a method

setFinder

public void setFinder(java.lang.String matchString)
Sets the match method filter string

The format of the filter string will depend on the implementation class, you are advise to look at the documentation there for further information.

Parameters:
matchString - the text string that describes how to filter a method

isMatched

public boolean isMatched(java.lang.reflect.Method method)
Returns a flag if this finder matches the Java method

Parameters:
method - the method to match
Returns:
boolean flag true if the method is matches the filter


Copyright © 2005 XeNoNSoFT.com. All Rights Reserved.