All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.topdesk.timetransformer.agent.DoNotInstrument Maven / Gradle / Ivy

Go to download

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