|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Methods | |
com.lonniepryor.blues.aop | Describes the interfaces used to interact with the Blues Framework AOP system. |
com.lonniepryor.blues.util | Common utility classes used throughout the Blues Framework. |
Uses of Methods in com.lonniepryor.blues.aop |
Methods in com.lonniepryor.blues.aop with parameters of type Methods | |
static Pointcut |
Pointcut.invokeMethod(Methods specification)
Creates a new specification satisified by join points whose target method satisfy the supplied specification. |
Uses of Methods in com.lonniepryor.blues.util |
Methods in com.lonniepryor.blues.util that return Methods | |
static Methods |
Methods.declaredPublic()
Returns a specification satisfied by Methods decalred as public. |
static Methods |
Methods.declaredProtected()
Returns a specification satisfied by Methods decalred as protected. |
static Methods |
Methods.declaredPrivate()
Returns a specification satisfied by Methods decalred as private. |
static Methods |
Methods.declaredPackageProtected()
Returns a specification satisfied by Methods decalred as package protected. |
static Methods |
Methods.declaredStatic()
Returns a specification satisfied by Methods decalred as static. |
static Methods |
Methods.declaredAbstract()
Returns a specification satisfied by Methods decalred as abstract. |
static Methods |
Methods.declaredFinal()
Returns a specification satisfied by Methods decalred as final. |
static Methods |
Methods.declaredSynchronized()
Returns a specification satisfied by Methods decalred as synchronized. |
static Methods |
Methods.declaredNative()
Returns a specification satisfied by Methods decalred as native. |
static Methods |
Methods.takingNoParameters()
Returns specification satisfied by Methods taking no parameters. |
static Methods |
Methods.takingOneParameter()
Returns a specification satisfied by Methods taking one parameter. |
static Methods |
Methods.returningVoid()
Returns a specification satisfied by Methods returning void. |
static Methods |
Methods.propertyAccessors()
Returns a specification satisfied by Methods that are valid JavaBeans accessor methods. |
static Methods |
Methods.propertyMutators()
Returns a specification satisfied by Methods that are valid JavaBeans mutator methods. |
static Methods |
Methods.equalTo(java.lang.reflect.Method toTest)
Creates a new specification satisfied by Methods equal to the supplied Method. |
static Methods |
Methods.named(java.lang.String namePattern)
Creates a new specification satisfied by Methods whose names match the supplied pattern. |
static Methods |
Methods.named(Strings specification)
Creates a new specification satisfied by Methods whose names satisfy the supplied specification. |
static Methods |
Methods.declaredOn(Types specification)
Creates a new specification satisfied only by Methods hosted on classes that satisfy the supplied specification. |
static Methods |
Methods.taking(Parameters specification)
Creates a new specification satisfied only by Methods with parameter Lists that satisfy the supplied specification. |
static Methods |
Methods.throwing(Throwables specification)
Creates a new specification satisfied only by Methods with throwable sets that satisfy the supplied specification. |
static Methods |
Methods.returning(Types specification)
Creates a new specification satisfied only by Methods that return Types that satisfy the supplied specification. |
static Methods |
Methods.parse(java.lang.String methodsPattern)
Parses a pattern string into a complete Methods specification. |
Methods |
Methods.and(Methods specification)
Returns a specification representing a logical AND of this specification on the left and the supplied specification on the right. |
Methods |
Methods.or(Methods specification)
Returns a specification representing a logical OR of this specification on the left and the supplied specification on the right. |
Methods |
Methods.not()
Returns a specification representing a logical NOT of this specification. |
Methods in com.lonniepryor.blues.util with parameters of type Methods | |
Methods |
Methods.and(Methods specification)
Returns a specification representing a logical AND of this specification on the left and the supplied specification on the right. |
Methods |
Methods.or(Methods specification)
Returns a specification representing a logical OR of this specification on the left and the supplied specification on the right. |
static Types |
Types.withAMethod(Methods specification)
Creates a new specification satisfied by Types that have at least one method matching the supplied specification. |
static Types |
Types.withADeclaredMethod(Methods specification)
Creates a new specification satisfied by Types that have at least one declared method matching the supplied specification. |
static Types |
Types.withAllMethods(Methods specification)
Creates a new specification satisfied by Types that have all methods matching the supplied specification. |
static Types |
Types.withAllDeclaredMethods(Methods specification)
Creates a new specification satisfied by Types that have all declared methods matching the supplied specification. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |