com.appland.appmap.annotation.NoAppMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appmap-annotation Show documentation
Show all versions of appmap-annotation Show documentation
Inspect and record the execution of Java for use with App Land
The newest version!
package com.appland.appmap.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE, ElementType.METHOD })
public @interface NoAppMap {
}