20 lines
399 B
Java
20 lines
399 B
Java
package androidx.preference;
|
|
|
|
import android.content.Context;
|
|
|
|
public class EditTextPreference extends DialogPreference {
|
|
|
|
public EditTextPreference(Context context) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public String getText() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void setText(String text) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
}
|