All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bumptech.glide.annotation.compiler.Index Maven / Gradle / Ivy

There is a newer version: 5.0.0-rc01
Show newest version
package com.bumptech.glide.annotation.compiler;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Used to retrieve LibraryGlideModule and GlideExtension classes in our annotation processor from
 * libraries and applications.
 *
 * 

Part of the internals of Glide's annotation processor and not for public use. */ @Target(ElementType.TYPE) // Needs to be parsed from class files in JAR. @Retention(RetentionPolicy.CLASS) @interface Index { String[] modules() default {}; String[] extensions() default {}; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy