com.greenfrvr.annyprefs.annotation.AnnyPref Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of annyprefs-annotations Show documentation
Show all versions of annyprefs-annotations Show documentation
Android annotation based SharedPreferences wrapper with fluent interface.
The newest version!
package com.greenfrvr.annyprefs.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.CLASS;
/**
* Created by greenfrvr
*/
@Target(TYPE)
@Retention(CLASS)
public @interface AnnyPref {
String name() default "";
}