10 lines
316 B
Java
10 lines
316 B
Java
|
//: net/mindview/atunit/TestProperty.java
|
||
|
// The @Unit @TestProperty tag.
|
||
|
package net.mindview.atunit;
|
||
|
import java.lang.annotation.*;
|
||
|
|
||
|
// Both fields and methods may be tagged as properties:
|
||
|
@Target({ElementType.FIELD, ElementType.METHOD})
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
public @interface TestProperty {} ///:~
|