Interface BasicTextModel.Content

All Known Implementing Classes:
BasicTextModel.InMemoryContent
Enclosing class:
BasicTextModel

public static interface BasicTextModel.Content
This interface describes the underlying storage mechanism for the BasicTextModel.
Since:
24
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    getText(int index)
    Returns the text string for the specified paragraph index.
    void
    insertLineBreak(int index, int offset)
    Inserts a line break.
    int
    insertTextSegment(int index, int offset, String text, StyleAttributeMap attrs)
    This method is called to insert a single text segment at the given position.
    boolean
    Determines whether this content is writable (i.e.
    void
    Removes the specified range.
    int
    Returns the number of paragraphs in this content.
  • Method Details Link icon

    • size Link icon

      int size()
      Returns the number of paragraphs in this content.
      Returns:
      the number paragraphs
    • getText Link icon

      String getText(int index)
      Returns the text string for the specified paragraph index. The returned text string cannot be null and must not contain any control characters other than TAB. The caller should never attempt to ask for a paragraph outside of the valid range.
      Parameters:
      index - the paragraph index in the range (0...size())
      Returns:
      the text string or null
    • insertTextSegment Link icon

      int insertTextSegment(int index, int offset, String text, StyleAttributeMap attrs)
      This method is called to insert a single text segment at the given position. The BasicTextModel guarantees that this method is only called when the content is writable.
      Parameters:
      index - the paragraph index
      offset - the insertion offset within the paragraph
      text - the text to insert
      attrs - the style attributes
      Returns:
      the number of characters inserted
    • insertLineBreak Link icon

      void insertLineBreak(int index, int offset)
      Inserts a line break. The BasicTextModel guarantees that this method is only called when the content is writable.
      Parameters:
      index - the model index
      offset - the text offset
    • removeRange Link icon

      void removeRange(TextPos start, TextPos end)
      Removes the specified range. The BasicTextModel guarantees that this method is only called when the content is writable, and that start precedes end.
      Parameters:
      start - the start of the region to be removed
      end - the end of the region to be removed, expected to be greater than the start position
    • isWritable Link icon

      boolean isWritable()
      Determines whether this content is writable (i.e. supports modification).
      Returns:
      true if writable