com.xenonsoft.bridgetown.aop
Interface IMethodJoinPoint

All Superinterfaces:
IJoinPoint
All Known Implementing Classes:
DefaultMethodJoinPoint

public interface IMethodJoinPoint
extends IJoinPoint

A contract interface for a method join point, which associates a class finder and method finder together.

Version:
$Id: IMethodJoinPoint.java,v 1.2 2005/02/23 01:28:14 peter_pilgrim Exp $
Author:
Peter Pilgrim, 01-Oct-2004 19:26:35

Method Summary
 void define(java.lang.String classExpr, java.lang.String methodExpr)
          A callback method designed for assembly factories to use that defines the method joinpoint after instantiating it dynamically.
 IClassFinder getClassFinder()
          Retrieves the class finder that ultimately matches a single class
 IMethodFinder getMethodFinder()
          Retrieves the method finder that ultimately matches a single method
 

Method Detail

getClassFinder

public IClassFinder getClassFinder()
Retrieves the class finder that ultimately matches a single class

Returns:
the class finder

getMethodFinder

public IMethodFinder getMethodFinder()
Retrieves the method finder that ultimately matches a single method

Returns:
the method finder

define

public void define(java.lang.String classExpr,
                   java.lang.String methodExpr)
A callback method designed for assembly factories to use that defines the method joinpoint after instantiating it dynamically.

Parameters:
classExpr - the class finder expression
methodExpr - the method finder expression


Copyright © 2005 XeNoNSoFT.com. All Rights Reserved.