Liking cljdoc? Tell your friends :D

javax.swing.text.PlainDocument

A plain document that maintains no character attributes. The default element structure for this document is a map of the lines in the text. The Element returned by getDefaultRootElement is a map of the lines, and each child element represents a line. This model does not maintain any character level attributes, but each line can be tagged with an arbitrary set of attributes. Line to offset, and offset to line translations can be quickly performed using the default root element. The structure information of the DocumentEvent's fired by edits will indicate the line structure changes.

The default content storage management is performed by a gapped buffer implementation (GapContent). It supports editing reasonably large documents with good efficiency when the edits are contiguous or clustered, as is typical.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeans™ has been added to the java.beans package. Please see XMLEncoder.

A plain document that maintains no character attributes.  The
default element structure for this document is a map of the lines in
the text.  The Element returned by getDefaultRootElement is
a map of the lines, and each child element represents a line.
This model does not maintain any character level attributes,
but each line can be tagged with an arbitrary set of attributes.
Line to offset, and offset to line translations can be quickly
performed using the default root element.  The structure information
of the DocumentEvent's fired by edits will indicate the line
structure changes.

The default content storage management is performed by a
gapped buffer implementation (GapContent).  It supports
editing reasonably large documents with good efficiency when
the edits are contiguous or clustered, as is typical.

Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is
appropriate for short term storage or RMI between applications running
the same version of Swing.  As of 1.4, support for long term storage
of all JavaBeans™
has been added to the java.beans package.
Please see XMLEncoder.
raw docstring

*-line-limit-attributeclj

Static Constant.

Name of the attribute that specifies the maximum length of a line, if there is a maximum length. The type for the value is Integer.

type: java.lang.String

Static Constant.

Name of the attribute that specifies the maximum
 length of a line, if there is a maximum length.
 The type for the value is Integer.

type: java.lang.String
raw docstring

*-tab-size-attributeclj

Static Constant.

Name of the attribute that specifies the tab size for tabs contained in the content. The type for the value is Integer.

type: java.lang.String

Static Constant.

Name of the attribute that specifies the tab
 size for tabs contained in the content.  The
 type for the value is Integer.

type: java.lang.String
raw docstring

->plain-documentclj

(->plain-document)
(->plain-document c)

Constructor.

Constructs a plain text document. A default root element is created, and the tab size set to 8.

c - the container for the content - javax.swing.text.AbstractDocument$Content

Constructor.

Constructs a plain text document.  A default root element is created,
 and the tab size set to 8.

c - the container for the content - `javax.swing.text.AbstractDocument$Content`
raw docstring

get-default-root-elementclj

(get-default-root-element this)

Gets the default root element for the document model.

returns: the root - javax.swing.text.Element

Gets the default root element for the document model.

returns: the root - `javax.swing.text.Element`
raw docstring

get-paragraph-elementclj

(get-paragraph-element this pos)

Get the paragraph element containing the given position. Since this document only models lines, it returns the line instead.

pos - the starting offset >= 0 - int

returns: the element - javax.swing.text.Element

Get the paragraph element containing the given position.  Since this
 document only models lines, it returns the line instead.

pos - the starting offset >= 0 - `int`

returns: the element - `javax.swing.text.Element`
raw docstring

insert-stringclj

(insert-string this offs str a)

Inserts some content into the document. Inserting content causes a write lock to be held while the actual changes are taking place, followed by notification to the observers on the thread that grabbed the write lock.

This method is thread safe, although most Swing methods are not. Please see Concurrency in Swing for more information.

offs - the starting offset >= 0 - int str - the string to insert; does nothing with null/empty strings - java.lang.String a - the attributes for the inserted content - javax.swing.text.AttributeSet

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

Inserts some content into the document.
 Inserting content causes a write lock to be held while the
 actual changes are taking place, followed by notification
 to the observers on the thread that grabbed the write lock.

 This method is thread safe, although most Swing methods
 are not. Please see
 Concurrency
 in Swing for more information.

offs - the starting offset >= 0 - `int`
str - the string to insert; does nothing with null/empty strings - `java.lang.String`
a - the attributes for the inserted content - `javax.swing.text.AttributeSet`

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

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

× close