mirror of
https://github.com/mihonapp/mihon.git
synced 2025-01-04 23:37:14 +01:00
16 lines
343 B
Java
16 lines
343 B
Java
|
package eu.kanade.mangafeed;
|
||
|
|
||
|
import java.lang.annotation.ElementType;
|
||
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
|
import java.lang.annotation.Target;
|
||
|
|
||
|
/**
|
||
|
* Created by len on 1/10/15.
|
||
|
*/
|
||
|
|
||
|
@Target(ElementType.TYPE)
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
public @interface UseModule {
|
||
|
Class value();
|
||
|
}
|