- All Superinterfaces:
 Observable,ObservableObjectValue<String>,ObservableStringValue,ObservableValue<String>
- Enclosing class:
 - TextInputControl
 
protected static interface TextInputControl.Content extends ObservableStringValue
Interface representing a text input's content. Since it is an ObservableStringValue,
 you can also bind to, or observe the content.
- Since:
 - JavaFX 2.0
 
- 
Method Summary
Modifier and Type Method Description voiddelete(int start, int end, boolean notifyListeners)Removes a sequence of characters from the content.Stringget(int start, int end)Retrieves a subset of the content.voidinsert(int index, String text, boolean notifyListeners)Inserts a sequence of characters into the content.intlength()Returns the number of characters represented by the content.Methods inherited from interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener 
- 
Method Details
- 
get
Retrieves a subset of the content.- Parameters:
 start- the startend- the end- Returns:
 - a subset of the content
 
 - 
insert
Inserts a sequence of characters into the content.- Parameters:
 index- the indextext- the text stringnotifyListeners- the notify listener flag- Since:
 - JavaFX 2.1
 
 - 
delete
void delete(int start, int end, boolean notifyListeners)Removes a sequence of characters from the content.- Parameters:
 start- the startend- the endnotifyListeners- the notify listener flag- Since:
 - JavaFX 2.1
 
 - 
length
int length()Returns the number of characters represented by the content.- Returns:
 - the number of characters
 
 
 -