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

org.robolectric.util.inject.Supersedes Maven / Gradle / Ivy

The newest version!
package org.robolectric.util.inject;

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;

/** Indicates that the annotated type is intended as a replacement for another type. */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Supersedes {

  /** The type that is superceded by the annotated type. */
  Class value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy