Skip to content

Commit

Permalink
AutoRestore
Browse files Browse the repository at this point in the history
  • Loading branch information
Zweihui committed Jul 16, 2018
1 parent 70b435b commit a355fb0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions apt-lib/src/main/java/com/zwh/annotation/apt/AutoRestore.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.zwh.annotation.apt;

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 AutoRestore {
String value() default "";
}

0 comments on commit a355fb0

Please sign in to comment.