All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aspectj.weaver.patterns.ISignaturePattern Maven / Gradle / Ivy

Go to download

AspectJ tools most notably contains the AspectJ compiler (AJC). AJC applies aspects to Java classes during compilation, fully replacing Javac for plain Java classes and also compiling native AspectJ or annotation-based @AspectJ syntax. Furthermore, AJC can weave aspects into existing class files in a post-compile binary weaving step. This library is a superset of AspectJ weaver and hence also of AspectJ runtime.

There is a newer version: 1.9.22.1
Show newest version
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