com.topdesk.timetransformer.agent.DoNotInstrument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of time-transformer-agent Show documentation
Show all versions of time-transformer-agent Show documentation
Instrumentation agent to change System.currentTimeMillis() and System.nanoTime() for testing purposes
The newest version!
package com.topdesk.timetransformer.agent;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Marker interface to annotate classes that should not be instrumented with the TimeTransformer
*/
@Retention(RetentionPolicy.CLASS)
@Target(ElementType.TYPE)
public @interface DoNotInstrument {
// Marker interface
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy