com.deque.axe.android.constants.AndroidClassNames Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axe-devtools-android-core Show documentation
Show all versions of axe-devtools-android-core Show documentation
The Axe Devtools Android Core Library
The newest version!
package com.deque.axe.android.constants;
import androidx.annotation.StringDef;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.SOURCE)
@StringDef({
AndroidClassNames.CHECKBOX,
AndroidClassNames.EDIT_TEXT,
AndroidClassNames.IMAGE_VIEW,
AndroidClassNames.SWITCH,
AndroidClassNames.TEXT_VIEW
})
public @interface AndroidClassNames {
String CHECKBOX = "android.widget.CheckBox";
String EDIT_TEXT = "android.widget.EditText";
String IMAGE_VIEW = "android.widget.ImageView";
String SWITCH = "android.widget.Switch";
String TEXT_VIEW = "android.widget.TextVIew";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy