TP-metaprogrammation-test/TP5/Utility.java

10 lines
223 B
Java
Raw Normal View History

2023-06-21 18:09:35 +00:00
import java.lang.annotation.*;
/** Indicate that a class is a utility class and thus only defines
* static methods Utility.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
public @interface Utility {
}