mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-01 07:16:39 +00:00
13 lines
320 B
Java
13 lines
320 B
Java
package com.java2nb.common.annotation;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
@Target(ElementType.METHOD)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface Log {
|
|
String value() default "";
|
|
}
|