android.text.Selection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
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; }
}