Uses of Class
io.github.sosuisen.jfxbuilder.controls.TreeItemBuilder
Packages that use TreeItemBuilder
-
Uses of TreeItemBuilder in io.github.sosuisen.jfxbuilder.controls
Methods in io.github.sosuisen.jfxbuilder.controls that return TreeItemBuilderModifier and TypeMethodDescriptionfinal TreeItemBuilder<T> TreeItemBuilder.addChildren(Collection<? extends TreeItem<T>> col) Calls theaddAllmethod on the ObservableList returned by theTreeItem#getChildren()method.final TreeItemBuilder<T> TreeItemBuilder.addChildren(TreeItem<T>... elements) Calls theaddAllmethod on the ObservableList returned by theTreeItem#getChildren()method.Applies a function to the TreeItem instance being constructed.static <T> TreeItemBuilder<T> TreeItemBuilder.create()Returns an instance of theTreeItemBuilder<T>.static <T> TreeItemBuilder<T> TreeItemBuilder.create(T value) Accepts the constructor arguments ofTreeItem(T)and returns an instance ofTreeItemBuilder<T>.static <T> TreeItemBuilder<T> Accepts the constructor arguments ofTreeItem(T, Node)and returns an instance ofTreeItemBuilder<T>.TreeItemBuilder.expanded(boolean value) A builder method that invokes thesetExpandedmethod on the instance being constructed.TreeItemBuilder.expandedPropertyApply(Consumer<BooleanProperty> op) Applies a function to theexpandedPropertyof the instance being constructed.A builder method that invokes thesetGraphicmethod on the instance being constructed.TreeItemBuilder.graphicPropertyApply(Consumer<ObjectProperty<Node>> op) Applies a function to thegraphicPropertyof the instance being constructed.TreeItemBuilder.leafPropertyApply(Consumer<ReadOnlyBooleanProperty> op) Applies a function to theleafPropertyof the instance being constructed.TreeItemBuilder.parentPropertyApply(Consumer<ReadOnlyObjectProperty<TreeItem<T>>> op) Applies a function to theparentPropertyof the instance being constructed.A builder method that invokes thesetValuemethod on the instance being constructed.TreeItemBuilder.valuePropertyApply(Consumer<ObjectProperty<T>> op) Applies a function to thevaluePropertyof the instance being constructed.static <T> TreeItemBuilder<T> TreeItemBuilder.withChildren(Collection<? extends TreeItem<T>> col) Creates an instance of the builder, then calls theaddAllmethod on the ObservableList returned by theTreeItem#getChildren()method.static <T> TreeItemBuilder<T> TreeItemBuilder.withChildren(TreeItem<T>... elements) Creates an instance of the builder, then calls theaddAllmethod on the ObservableList returned by theTreeItem#getChildren()method.