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

org.qbicc.rt.annotation.Tracking Maven / Gradle / Ivy

There is a newer version: 17.alpha.0.57
Show newest version
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