Example usage for org.aspectj.util FuzzyBoolean MAYBE

List of usage examples for org.aspectj.util FuzzyBoolean MAYBE

Introduction

In this page you can find the example usage for org.aspectj.util FuzzyBoolean MAYBE.

Prototype

FuzzyBoolean MAYBE

To view the source code for org.aspectj.util FuzzyBoolean MAYBE.

Click Source Link

Usage

From source file:org.caesarj.compiler.aspectj.CaesarKindedPointcut.java

License:Open Source License

public FuzzyBoolean fastMatch(FastMatchInfo info) {
    if (info.getKind() != null) {
        if (info.getKind() != kind)
            return FuzzyBoolean.NO;
    }/*from   w w  w .  j a v a  2 s  . co m*/

    return FuzzyBoolean.MAYBE;
}