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

org.robolectric.annotation.InDevelopment Maven / Gradle / Ivy

The newest version!
package org.robolectric.annotation;

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

/**
 * InDevelopment applies to @Implementation methods and @Implements classes that are affected by
 * changes in unreleased versions of Android. 
* Only unreleased versions of android, as defined in the AndroidVersions honor this annotation * during validation. */ @Documented @Retention(RetentionPolicy.SOURCE) @Target({ElementType.METHOD, ElementType.TYPE}) public @interface InDevelopment {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy