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 TypeMethodDescriptionvoidrun(@Nullable TextIter iter, BracketMatchType state) iteris set to a valid iterator pointing to the matching bracket ifstateisBracketMatchType.FOUND.default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, int)method.default voidupcall(MemorySegment sourceBuffer, MemorySegment iter, int state) Theupcallmethod is called from native code.
-
Method Details
-
run
iteris set to a valid iterator pointing to the matching bracket ifstateisBracketMatchType.FOUND. Otherwiseiteris meaningless.The signal is emitted only when the
statechanges, typically when the cursor moves.A use-case for this signal is to show messages in a
Statusbar. -
upcall
Theupcallmethod 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:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-