android.text
Interface Editable

All Superinterfaces:
Appendable, CharSequence, GetChars, Spannable, Spanned
All Known Implementing Classes:
SpannableStringBuilder

public interface Editable
extends CharSequence, GetChars, Spannable, Appendable


Nested Class Summary
static class Editable.Factory
           
 
Field Summary
 
Fields inherited from interface android.text.Spanned
SPAN_COMPOSING, SPAN_EXCLUSIVE_EXCLUSIVE, SPAN_EXCLUSIVE_INCLUSIVE, SPAN_INCLUSIVE_EXCLUSIVE, SPAN_INCLUSIVE_INCLUSIVE, SPAN_INTERMEDIATE, SPAN_MARK_MARK, SPAN_MARK_POINT, SPAN_PARAGRAPH, SPAN_POINT_MARK, SPAN_POINT_MARK_MASK, SPAN_POINT_POINT, SPAN_PRIORITY, SPAN_PRIORITY_SHIFT, SPAN_USER, SPAN_USER_SHIFT
 
Method Summary
 Editable append(char text)
           
 Editable append(CharSequence text)
           
 Editable append(CharSequence text, int start, int end)
           
 void clear()
           
 void clearSpans()
           
 Editable delete(int st, int en)
           
 InputFilter[] getFilters()
           
 Editable insert(int where, CharSequence text)
           
 Editable insert(int where, CharSequence text, int start, int end)
           
 Editable replace(int st, int en, CharSequence text)
           
 Editable replace(int st, int en, CharSequence source, int start, int end)
           
 void setFilters(InputFilter[] filters)
           
 
Methods inherited from interface android.text.GetChars
getChars
 
Methods inherited from interface android.text.Spannable
removeSpan, setSpan
 
Methods inherited from interface android.text.Spanned
getSpanEnd, getSpanFlags, getSpans, getSpanStart, nextSpanTransition
 
Methods inherited from interface java.lang.CharSequence
charAt, length, subSequence, toString
 

Method Detail

replace

Editable replace(int st,
                 int en,
                 CharSequence source,
                 int start,
                 int end)

replace

Editable replace(int st,
                 int en,
                 CharSequence text)

insert

Editable insert(int where,
                CharSequence text,
                int start,
                int end)

insert

Editable insert(int where,
                CharSequence text)

delete

Editable delete(int st,
                int en)

append

Editable append(CharSequence text)
Specified by:
append in interface Appendable

append

Editable append(CharSequence text,
                int start,
                int end)
Specified by:
append in interface Appendable

append

Editable append(char text)
Specified by:
append in interface Appendable

clear

void clear()

clearSpans

void clearSpans()

setFilters

void setFilters(InputFilter[] filters)

getFilters

InputFilter[] getFilters()


Copyright © 2008-2012. All Rights Reserved.