Package org.gnome.gtk
Class EntryBuffer.Builder<B extends EntryBuffer.Builder<B>>
java.lang.Object
io.github.jwharm.javagi.gobject.Builder<B>
org.gnome.gobject.GObject.Builder<B>
org.gnome.gtk.EntryBuffer.Builder<B>
- Type Parameters:
B
- the type of the Builder that is returned
- All Implemented Interfaces:
BuilderInterface
- Direct Known Subclasses:
PasswordEntryBuffer.Builder
- Enclosing class:
EntryBuffer
public static class EntryBuffer.Builder<B extends EntryBuffer.Builder<B>>
extends GObject.Builder<B>
Inner class implementing a builder pattern to construct a GObject with
properties.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Finish building theEntryBuffer
object.The text is altered in the default handler for this signal.This signal is emitted after text is inserted into the buffer.setMaxLength
(int maxLength) The maximum length (in characters) of the text in the buffer.The contents of the buffer.Methods inherited from class org.gnome.gobject.GObject.Builder
onNotify
Methods inherited from class io.github.jwharm.javagi.gobject.Builder
addBuilderProperty, connect, connect, connectSignals, getArena, getNames, getValues
-
Constructor Details
-
Builder
protected Builder()Default constructor for aBuilder
object.
-
-
Method Details
-
build
Finish building theEntryBuffer
object. This will callGObject.withProperties(org.gnome.glib.Type, java.lang.String[], org.gnome.gobject.Value[])
to create a new GObject instance, which is then cast toEntryBuffer
.- Overrides:
build
in classGObject.Builder<B extends EntryBuffer.Builder<B>>
- Returns:
- a new instance of
EntryBuffer
with the properties that were set in the Builder object.
-
setMaxLength
The maximum length (in characters) of the text in the buffer.- Parameters:
maxLength
- the value for themax-length
property- Returns:
- the
Builder
instance is returned, to allow method chaining
-
setText
-
onDeletedText
The text is altered in the default handler for this signal.If you want access to the text after the text has been modified, use
ConnectFlags.AFTER
.- Parameters:
handler
- the signal handler- Returns:
- the
Builder
instance is returned, to allow method chaining - See Also:
-
onInsertedText
This signal is emitted after text is inserted into the buffer.- Parameters:
handler
- the signal handler- Returns:
- the
Builder
instance is returned, to allow method chaining - See Also:
-