com.tocea.easycoverage.annotations.synchronize.Synchronized Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyCoverage4J-annotations Show documentation
Show all versions of easyCoverage4J-annotations Show documentation
Annotations employed by the framework to skip automatic tests.
package com.tocea.easycoverage.annotations.synchronize;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
* This annotation specifies that all methods of a class should be synchronized.
*
* @author Romain Delamare
*
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Synchronized {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy