标签:time target lan retention ret inject inter port run
package com.test.mvp.mvpdemo.mvp.v5.inject;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface InjectPresenter {
}
---------------------
标签:time target lan retention ret inject inter port run
原文地址:https://www.cnblogs.com/hyhy904/p/11299068.html