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

net.sf.andromedaioc.annotation.Resource Maven / Gradle / Ivy

The newest version!
package net.sf.andromedaioc.annotation;

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

/**
 * Resource annotation. Injection into field, set method
 * or constructor parameter will be from android resources
 *
 * @author Alexey Mitrov
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER})
public @interface Resource {
    int id();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy