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 aspectjweaver Show documentation
Show all versions of aspectjweaver Show documentation
The AspectJ weaver applies aspects to Java classes. It can be used as a Java agent in order to apply load-time
weaving (LTW) during class-loading and also contains the AspectJ runtime classes.
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