Package org.gnome.gtksourceview
Interface Buffer.BracketMatchedCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
Buffer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface declaration of the
BracketMatchedCallback
callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
run
(@Nullable TextIter iter, BracketMatchType state) iter
is set to a valid iterator pointing to the matching bracket ifstate
isBracketMatchType.FOUND
.default MemorySegment
toCallback
(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, int)
method.default void
upcall
(MemorySegment sourceBuffer, MemorySegment iter, int state) Theupcall
method is called from native code.
-
Method Details
-
run
iter
is set to a valid iterator pointing to the matching bracket ifstate
isBracketMatchType.FOUND
. Otherwiseiter
is meaningless.The signal is emitted only when the
state
changes, typically when the cursor moves.A use-case for this signal is to show messages in a
Statusbar
. -
upcall
Theupcall
method is called from native code. The parameters are marshaled andrun(org.gnome.gtk.TextIter, org.gnome.gtksourceview.BracketMatchType)
is executed. -
toCallback
Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, int)
method.- Specified by:
toCallback
in interfaceFunctionPointer
- Parameters:
arena
- the function pointer will be allocated in this arena- Returns:
- the native function pointer
-