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

com.therouter.inject.ServiceProvider.kt Maven / Gradle / Ivy

There is a newer version: 1.2.3-rc17
Show newest version
package com.therouter.inject

import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
import kotlin.reflect.KClass

/**
 * Created by ZhangTao on 17/8/11.
 */
@Retention(RetentionPolicy.SOURCE)
@Target(
    AnnotationTarget.FUNCTION,
    AnnotationTarget.CLASS,
    AnnotationTarget.PROPERTY_GETTER,
    AnnotationTarget.PROPERTY_SETTER
)
annotation class ServiceProvider(val returnType: KClass<*> = ServiceProvider::class, val params: Array> = [])




© 2015 - 2024 Weber Informatics LLC | Privacy Policy