Package io.github.sosuisen.jfxbuilder.web
package io.github.sosuisen.jfxbuilder.web
JavaFX Builder API for Web Module.
This package contains builder classes for JavaFX web components, enabling declarative and hierarchical UI construction with strongly-typed APIs.
The builder classes in this package provide a fluent interface for creating and configuring JavaFX web-related components such as WebView, WebEngine, HTMLEditor, and other web integration elements.
Example usage:
WebView webView = WebViewBuilder.create()
.prefWidth(800)
.prefHeight(600)
.build();
webView.getEngine().load("https://example.com");
-
ClassesClassDescriptionThe
HTMLEditorBuilderclass constructs instances of theHTMLEditorclass and offers a fluent interface for creating and configuring it.TheHTMLEditorSkinBuilderclass constructs instances of theHTMLEditorSkinclass and offers a fluent interface for creating and configuring it.TheHTMLEditorSkinCommandBuilderclass constructs instances of theCommandclass and offers a fluent interface for creating and configuring it.ThePopupFeaturesBuilderclass constructs instances of thePopupFeaturesclass and offers a fluent interface for creating and configuring it.ThePromptDataBuilderclass constructs instances of thePromptDataclass and offers a fluent interface for creating and configuring it.TheWebEngineBuilderclass constructs instances of theWebEngineclass and offers a fluent interface for creating and configuring it.TheWebErrorEventBuilderclass constructs instances of theWebErrorEventclass and offers a fluent interface for creating and configuring it.TheWebEventBuilderclass constructs instances of theWebEventclass and offers a fluent interface for creating and configuring it.TheWebHistoryBuilderclass constructs instances of theWebHistoryclass and offers a fluent interface for creating and configuring it.TheWebHistoryEntryBuilderclass constructs instances of theEntryclass and offers a fluent interface for creating and configuring it.TheWebViewBuilderclass constructs instances of theWebViewclass and offers a fluent interface for creating and configuring it.