package android.widget; /* * Copyright (C) Contributors to the Suwayomi project * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ public class EditText { public EditText(android.content.Context context) { throw new RuntimeException("Stub!"); } public EditText(android.content.Context context, android.util.AttributeSet attrs) { throw new RuntimeException("Stub!"); } public EditText(android.content.Context context, android.util.AttributeSet attrs, int defStyleAttr) { throw new RuntimeException("Stub!"); } public EditText(android.content.Context context, android.util.AttributeSet attrs, int defStyleAttr, int defStyleRes) { throw new RuntimeException("Stub!"); } public boolean getFreezesText() { throw new RuntimeException("Stub!"); } protected boolean getDefaultEditable() { throw new RuntimeException("Stub!"); } protected android.text.method.MovementMethod getDefaultMovementMethod() { throw new RuntimeException("Stub!"); } public android.text.Editable getText() { throw new RuntimeException("Stub!"); } public void setText(java.lang.CharSequence text, android.widget.TextView.BufferType type) { throw new RuntimeException("Stub!"); } public void setSelection(int start, int stop) { throw new RuntimeException("Stub!"); } public void setSelection(int index) { throw new RuntimeException("Stub!"); } public void selectAll() { throw new RuntimeException("Stub!"); } public void extendSelection(int index) { throw new RuntimeException("Stub!"); } public void setEllipsize(android.text.TextUtils.TruncateAt ellipsis) { throw new RuntimeException("Stub!"); } public java.lang.CharSequence getAccessibilityClassName() { throw new RuntimeException("Stub!"); } }