FileDocCategorySizeDatePackage
TestApplication.javaAPI DocAndroid 5.1 API1520Thu Mar 12 22:22:12 GMT 2015com.android.multidexlegacytestapp

TestApplication

public class TestApplication extends android.support.multidex.MultiDexApplication

Fields Summary
public static Annotation
annotation
public static Annotation
annotation2
public static Annotation
annotation3
public static Class
interfaceClass
Constructors Summary
Methods Summary
public static java.lang.annotation.AnnotationgetAnnotationWithEnum()


        
        return getSoleAnnotation(TestApplication.class);
    
public static java.lang.annotation.AnnotationgetSoleAnnotation(java.lang.Class annotated)

        Annotation[] annot = annotated.getAnnotations();
        if (annot.length == 1) {
            return annot[0];
        }

        throw new AssertionError();