org.qbicc.rt.annotation.Tracking Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qbicc-rt-annotation Show documentation
Show all versions of qbicc-rt-annotation Show documentation
Qbicc JDK run time annotation library
package org.qbicc.rt.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Indicate that this class tracks the associated file name.
*/
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.TYPE)
@Repeatable(Tracking.List.class)
public @interface Tracking {
String value();
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.TYPE)
@interface List {
Tracking[] value();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy