Liking cljdoc? Tell your friends :D

javax.swing.text.DocumentFilter$FilterBypass

Used as a way to circumvent calling back into the Document to change it. Document implementations that wish to support a DocumentFilter must provide an implementation that will not callback into the DocumentFilter when the following methods are invoked from the DocumentFilter.

Used as a way to circumvent calling back into the Document to
change it. Document implementations that wish to support
a DocumentFilter must provide an implementation that will
not callback into the DocumentFilter when the following methods
are invoked from the DocumentFilter.
raw docstring

->filter-bypassclj

(->filter-bypass)

Constructor.

Constructor.
raw docstring

get-documentclj

(get-document this)

Returns the Document the mutation is occurring on.

returns: Document that remove/insertString will operate on - javax.swing.text.Document

Returns the Document the mutation is occurring on.

returns: Document that remove/insertString will operate on - `javax.swing.text.Document`
raw docstring

insert-stringclj

(insert-string this offset string attr)

Inserts the specified text, bypassing the DocumentFilter.

offset - the offset into the document to insert the content >= 0. All positions that track change at or after the given location will move. - int string - the string to insert - java.lang.String attr - the attributes to associate with the inserted content. This may be null if there are no attributes. - javax.swing.text.AttributeSet

throws: javax.swing.text.BadLocationException - the given insert position is not a valid position within the document

Inserts the specified text, bypassing the
 DocumentFilter.

offset - the offset into the document to insert the content >= 0. All positions that track change at or after the given location will move. - `int`
string - the string to insert - `java.lang.String`
attr - the attributes to associate with the inserted content. This may be null if there are no attributes. - `javax.swing.text.AttributeSet`

throws: javax.swing.text.BadLocationException - the given insert position is not a valid position within the document
raw docstring

removeclj

(remove this offset length)

Removes the specified region of text, bypassing the DocumentFilter.

offset - the offset from the beginning >= 0 - int length - the number of characters to remove >= 0 - int

throws: javax.swing.text.BadLocationException - some portion of the removal range was not a valid part of the document. The location in the exception is the first bad position encountered.

Removes the specified region of text, bypassing the
 DocumentFilter.

offset - the offset from the beginning >= 0 - `int`
length - the number of characters to remove >= 0 - `int`

throws: javax.swing.text.BadLocationException - some portion of the removal range was not a valid part of the document. The location in the exception is the first bad position encountered.
raw docstring

replaceclj

(replace this offset length string attrs)

Deletes the region of text from offset to offset length, and replaces it with text.

offset - Location in Document - int length - Length of text to delete - int string - Text to insert, null indicates no text to insert - java.lang.String attrs - AttributeSet indicating attributes of inserted text, null is legal. - javax.swing.text.AttributeSet

throws: javax.swing.text.BadLocationException - the given insert is not a valid position within the document

Deletes the region of text from offset to
 offset  length, and replaces it with
  text.

offset - Location in Document - `int`
length - Length of text to delete - `int`
string - Text to insert, null indicates no text to insert - `java.lang.String`
attrs - AttributeSet indicating attributes of inserted text, null is legal. - `javax.swing.text.AttributeSet`

throws: javax.swing.text.BadLocationException - the given insert is not a valid position within the document
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close