blob: 7858bca0b9ea75afdccea9a267f407d7abb60c2a [file] [log] [blame]
package com.android.annotations;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.CLASS)
@Target({METHOD, CONSTRUCTOR})
public @interface Trace {}