|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object | +--javax.swing.text.DocumentFilter
Safe:
| Constructor Summary | |
DocumentFilter()
Enabled: |
|
| Method Summary | |
void |
insertString(javax.swing.text.DocumentFilter.FilterBypass fb,
int offset,
String string,
AttributeSet attr)
Suppressed: Invoked prior to insertion of text into the specified Document. |
void |
remove(javax.swing.text.DocumentFilter.FilterBypass fb,
int offset,
int length)
Suppressed: Invoked prior to removal of the specified region in the specified Document. |
void |
replace(javax.swing.text.DocumentFilter.FilterBypass fb,
int offset,
int length,
String text,
AttributeSet attrs)
Suppressed: Invoked prior to replacing a region of text in the specified Document. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public DocumentFilter()
| Method Detail |
public void remove(javax.swing.text.DocumentFilter.FilterBypass fb,
int offset,
int length)
throws BadLocationException
FilterBypass as
necessary.
fb - FilterBypass that can be used to mutate Documentoffset - the offset from the beginning >= 0length - the number of characters to remove >= 0
BadLocationException
public void insertString(javax.swing.text.DocumentFilter.FilterBypass fb,
int offset,
String string,
AttributeSet attr)
throws BadLocationException
fb - FilterBypass that can be used to mutate Documentoffset - the offset into the document to insert the content >= 0.
All positions that track change at or after the given location
will move.string - the string to insertattr - the attributes to associate with the inserted
content. This may be null if there are no attributes.
BadLocationException
public void replace(javax.swing.text.DocumentFilter.FilterBypass fb,
int offset,
int length,
String text,
AttributeSet attrs)
throws BadLocationException
fb - FilterBypass that can be used to mutate Documentoffset - Location in Documentlength - Length of text to deletetext - Text to insert, null indicates no text to insertattrs - AttributeSet indicating attributes of inserted text,
null is legal.
BadLocationException
|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||