org.aspectj.weaver.ast.HasAnnotation 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.
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.aspectj.weaver.ast;
import org.aspectj.weaver.ResolvedType;
import org.aspectj.weaver.UnresolvedType;
public class HasAnnotation extends Test {
private Var v;
private ResolvedType annType;
public HasAnnotation(Var v, ResolvedType annType) {
super();
this.v = v;
this.annType = annType;
}
/* (non-Javadoc)
* @see org.aspectj.weaver.ast.Test#accept(org.aspectj.weaver.ast.ITestVisitor)
*/
public void accept(ITestVisitor v) {
v.visit(this);
}
public String toString() {
return "(" + v + " has annotation @" + annType + ")";
}
public boolean equals(Object other) {
if (other instanceof HasAnnotation) {
HasAnnotation o = (HasAnnotation) other;
return o.v.equals(v) && o.annType.equals(annType);
} else {
return false;
}
}
public int hashCode() {
return v.hashCode()*37+annType.hashCode();
}
public Var getVar() {
return v;
}
public UnresolvedType getAnnotationType() {
return annType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy