jodd.proxetta.ProxyTargetInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jodd-proxetta Show documentation
Show all versions of jodd-proxetta Show documentation
Jodd Proxetta is the fastest proxy creator with unique approach for defying pointcuts and advices.
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.
package jodd.proxetta;
/**
* Holder for various {@link jodd.proxetta.ProxyTarget} information.
*/
public final class ProxyTargetInfo {
public int argumentCount;
public Class[] argumentsClasses;
public Object[] arguments;
public Class returnType;
public String targetMethodName;
public String targetMethodSignature;
public String targetMethodDescription;
public Class targetClass;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy