
org.aspectj.configuration.model.ClassRef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aspectj-scripting Show documentation
Show all versions of aspectj-scripting Show documentation
Scripting extension for AspectJ agent. Allow java bytecode instrumentation at jvm startup
by using MVEL expression and execute code from maven artifacts
The newest version!
package org.aspectj.configuration.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@XmlAccessorType(XmlAccessType.FIELD)
public class ClassRef {
private String variable;
private String className;
ClassRef() {
}
public ClassRef(String className, String variable) {
this.className = className;
this.variable = variable;
}
public String getVariable() {
return variable;
}
public String getClassName() {
return className;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy