org.robolectric.util.reflector.Static Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-reflector Show documentation
Show all versions of utils-reflector Show documentation
An alternative Android testing framework.
The newest version!
package org.robolectric.util.reflector;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/** Marks {@link Reflector} methods which serve as accessors for static members. */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Static {}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy