org.aspectj.weaver.patterns.ISignaturePattern Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aspectjmatcher Show documentation
Show all versions of aspectjmatcher Show documentation
The AspectJ matcher can be used for matching pointcuts independently of any AspectJ compilation or weaving steps.
Most notably, this can be used by frameworks such as Spring AOP which utilise the @AspectJ pointcut syntax but
implement aspect weaving in a way independent of AspectJ, e.g. using dynamic proxies.
package org.aspectj.weaver.patterns;
import java.util.List;
import java.util.Map;
import org.aspectj.weaver.Member;
import org.aspectj.weaver.ResolvedType;
import org.aspectj.weaver.UnresolvedType;
import org.aspectj.weaver.World;
public interface ISignaturePattern {
byte PATTERN = 1;
byte NOT = 2;
byte OR = 3;
byte AND = 4;
boolean matches(Member member, World world, boolean b);
ISignaturePattern parameterizeWith(Map typeVariableBindingMap, World world);
ISignaturePattern resolveBindings(IScope scope, Bindings none);
List getExactDeclaringTypes();
boolean isMatchOnAnyName();
boolean couldEverMatch(ResolvedType type);
boolean isStarAnnotation();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy