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

ru.yandex.qatools.properties.annotations.Resource Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
package ru.yandex.qatools.properties.annotations;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

/**
 * User: eroshenkoam
 * Date: 11/9/12, 1:47 PM
 */
public interface Resource {

    @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
    @Target({java.lang.annotation.ElementType.TYPE})
    public @interface File {
        String value();
    }

    @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
    @Target({java.lang.annotation.ElementType.TYPE})
    public @interface Classpath {
        String value();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy