android.text.Selection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.text;
public class Selection
{
Selection() { throw new RuntimeException("Stub!"); }
public static final int getSelectionStart(java.lang.CharSequence text) { throw new RuntimeException("Stub!"); }
public static final int getSelectionEnd(java.lang.CharSequence text) { throw new RuntimeException("Stub!"); }
public static void setSelection(android.text.Spannable text, int start, int stop) { throw new RuntimeException("Stub!"); }
public static final void setSelection(android.text.Spannable text, int index) { throw new RuntimeException("Stub!"); }
public static final void selectAll(android.text.Spannable text) { throw new RuntimeException("Stub!"); }
public static final void extendSelection(android.text.Spannable text, int index) { throw new RuntimeException("Stub!"); }
public static final void removeSelection(android.text.Spannable text) { throw new RuntimeException("Stub!"); }
public static boolean moveUp(android.text.Spannable text, android.text.Layout layout) { throw new RuntimeException("Stub!"); }
public static boolean moveDown(android.text.Spannable text, android.text.Layout layout) { throw new RuntimeException("Stub!"); }
public static boolean moveLeft(android.text.Spannable text, android.text.Layout layout) { throw new RuntimeException("Stub!"); }
public static boolean moveRight(android.text.Spannable text, android.text.Layout layout) { throw new RuntimeException("Stub!"); }
public static boolean extendUp(android.text.Spannable text, android.text.Layout layout) { throw new RuntimeException("Stub!"); }
public static boolean extendDown(android.text.Spannable text, android.text.Layout layout) { throw new RuntimeException("Stub!"); }
public static boolean extendLeft(android.text.Spannable text, android.text.Layout layout) { throw new RuntimeException("Stub!"); }
public static boolean extendRight(android.text.Spannable text, android.text.Layout layout) { throw new RuntimeException("Stub!"); }
public static boolean extendToLeftEdge(android.text.Spannable text, android.text.Layout layout) { throw new RuntimeException("Stub!"); }
public static boolean extendToRightEdge(android.text.Spannable text, android.text.Layout layout) { throw new RuntimeException("Stub!"); }
public static boolean moveToLeftEdge(android.text.Spannable text, android.text.Layout layout) { throw new RuntimeException("Stub!"); }
public static boolean moveToRightEdge(android.text.Spannable text, android.text.Layout layout) { throw new RuntimeException("Stub!"); }
public static final java.lang.Object SELECTION_START;
public static final java.lang.Object SELECTION_END;
static { SELECTION_START = null; SELECTION_END = null; }
}