org.springframework.core
Interface ControlFlow


public interface ControlFlow

Interface to be implemented by objects that can return information about the current call stack. Useful in AOP (as in AspectJ cflow concept) but not AOP-specific.

Version:
$Id: ControlFlow.java,v 1.2 2004/03/18 02:46:06 trisberg Exp $
Author:
Rod Johnson

Method Summary
 boolean under(java.lang.Class clazz)
           
 boolean under(java.lang.Class clazz, java.lang.String methodName)
          Matches whole method name.
 boolean underToken(java.lang.String token)
           
 

Method Detail

under

public boolean under(java.lang.Class clazz)

under

public boolean under(java.lang.Class clazz,
                     java.lang.String methodName)
Matches whole method name.


underToken

public boolean underToken(java.lang.String token)


Copyright (C) 2003-2004 The Spring Framework Project.