API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.swing.text. DocumentFilter.FilterBypass View Source
Author(s)
Since
1.4
Version
Serial
Hierarchy
 Object
      DocumentFilter.FilterBypass
Implements
Subclasses
Description
publicabstractstatic abstract class DocumentFilter.FilterBypass
  Used as a way to circumvent calling back into the Document to change it.
See also:   
Constructors
public DocumentFilter.FilterBypass ()
Methods
Hide/Show inherited methods
publicabstract Document getDocument ()
  Returns the Document the mutation is occuring on.
publicabstract void insertString (int offset, String string, AttributeSet attr) throws BadLocationException
  Inserts the specified text, bypassing the DocumentFilter.
publicabstract void remove (int offset, int length) throws BadLocationException
  Removes the specified region of text, bypassing the DocumentFilter.
publicabstract void replace (int offset, int length, String string, AttributeSet attrs) throws BadLocationException
  Deletes the region of text from offset to offset + length, and replaces it with text.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar