List of usage examples for org.aspectj.weaver.patterns FastMatchInfo getKind
public Kind getKind()
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; }//w w w . j a v a 2 s . c o m return FuzzyBoolean.MAYBE; }