Add MultiSelectListPreference

This commit is contained in:
arkon 2021-05-08 09:45:57 -04:00
parent 8dd92e32df
commit cfa95304e0
1 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,40 @@
package androidx.preference;
import android.content.Context;
import java.util.Set;
public class MultiSelectListPreference extends DialogPreference {
public MultiSelectListPreference(Context context) {
throw new RuntimeException("Stub!");
}
public void setEntries(CharSequence[] entries) {
throw new RuntimeException("Stub!");
}
public CharSequence[] getEntries() {
throw new RuntimeException("Stub!");
}
public void setEntryValues(CharSequence[] entryValues) {
throw new RuntimeException("Stub!");
}
public CharSequence[] getEntryValues() {
throw new RuntimeException("Stub!");
}
public void setValues(Set<String> values) {
throw new RuntimeException("Stub!");
}
public Set<String> getValues() {
throw new RuntimeException("Stub!");
}
public int findIndexOfValue(String value) {
throw new RuntimeException("Stub!");
}
}