aboutsummaryrefslogtreecommitdiff
path: root/utils/reflector/src/main/java/org/robolectric/util/reflector/Constructor.java
blob: d69c39145a9bae040bf726d86dccbc58ae1d836f (plain)
1
2
3
4
5
6
7
8
9
10
11
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;

/** Indicates that the annotated method is a constructor. */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Constructor {}