com.airbnb.paris.annotations.ParisConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paris-annotations Show documentation
Show all versions of paris-annotations Show documentation
Paris is a system for creating and applying styles to views in Android.
package com.airbnb.paris.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.PACKAGE)
public @interface ParisConfig {
String defaultStyleNameFormat() default "";
Class> rClass() default Void.class;
}