com.newrelic.api.agent.weaver.WeaveIntoAllMethods Maven / Gradle / Ivy
/*
*
* * Copyright 2020 New Relic Corporation. All rights reserved.
* * SPDX-License-Identifier: Apache-2.0
*
*/
package com.newrelic.api.agent.weaver;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* A method with this annotation will be weaved into all methods on the class.
*
* Note: This will not weave code into any constructors or static initializers in the class.
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface WeaveIntoAllMethods {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy