Interface EntryBuffer.OnInsertedText

Enclosing class:
EntryBuffer
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface EntryBuffer.OnInsertedText
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onInsertedText(int position, Str chars, int n_chars)
    This signal is emitted after text is inserted into the buffer.
  • Method Details

    • onInsertedText

      void onInsertedText(int position, @Nonnull Str chars, int n_chars)
      This signal is emitted after text is inserted into the buffer.
      Parameters:
      position - the position the text was inserted at.
      chars - The text that was inserted.
      n_chars - The number of characters that were inserted.