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

com.qa.framework.classfinder.annotation.Impl Maven / Gradle / Ivy

There is a newer version: 2.5
Show newest version
package com.qa.framework.classfinder.annotation;

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

/**
 * 指定接口的实现类
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Impl {

    /**
     * Value class.
     *
     * @return the class
     */
    Class value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy