javax.swing.text

Interface AbstractDocument.Content

  • All Known Implementing Classes:
    GapContent, StringContent
    Enclosing class:
    AbstractDocument

    public static interface AbstractDocument.Content
    Interface to describe a sequence of character content that can be edited. Implementations may or may not support a history mechanism which will be reflected by whether or not mutations return an UndoableEdit implementation.
    See Also:
    AbstractDocument
    • Method Detail

      • createPosition

        Position createPosition(int offset)
                                throws BadLocationException
        Creates a position within the content that will track change as the content is mutated.
        Parameters:
        offset - the offset in the content >= 0
        Returns:
        a Position
        Throws:
        BadLocationException - for an invalid offset
      • length

        int length()
        Current length of the sequence of character content.
        Returns:
        the length >= 0
      • insertString

        UndoableEdit insertString(int where,
                                String str)
                                  throws BadLocationException
        Inserts a string of characters into the sequence.
        Parameters:
        where - offset into the sequence to make the insertion >= 0
        str - string to insert
        Returns:
        if the implementation supports a history mechanism, a reference to an Edit implementation will be returned, otherwise returns null
        Throws:
        BadLocationException - thrown if the area covered by the arguments is not contained in the character sequence
      • remove

        UndoableEdit remove(int where,
                          int nitems)
                            throws BadLocationException
        Removes some portion of the sequence.
        Parameters:
        where - The offset into the sequence to make the insertion >= 0.
        nitems - The number of items in the sequence to remove >= 0.
        Returns:
        If the implementation supports a history mechansim, a reference to an Edit implementation will be returned, otherwise null.
        Throws:
        BadLocationException - Thrown if the area covered by the arguments is not contained in the character sequence.
      • getString

        String getString(int where,
                       int len)
                         throws BadLocationException
        Fetches a string of characters contained in the sequence.
        Parameters:
        where - Offset into the sequence to fetch >= 0.
        len - number of characters to copy >= 0.
        Returns:
        the string
        Throws:
        BadLocationException - Thrown if the area covered by the arguments is not contained in the character sequence.
      • getChars

        void getChars(int where,
                    int len,
                    Segment txt)
                      throws BadLocationException
        Gets a sequence of characters and copies them into a Segment.
        Parameters:
        where - the starting offset >= 0
        len - the number of characters >= 0
        txt - the target location to copy into
        Throws:
        BadLocationException - Thrown if the area covered by the arguments is not contained in the character sequence.

Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/swing/text/abstractdocument.content.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.

References

  1. View the html document Language of the document:fr Manuel PHP : https://docs.oracle.com

These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.

Contents Haut