-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
= Desktop Demo Application | ||
:icons: font | ||
|
||
WARNING: This demo uses experimental APIs from the desktop module. The underlying APIs are not stable and may change in future versions without notice. | ||
|
||
This is a demonstration application showing how to use the desktop module of our SDK. | ||
It provides examples of basic usage and common implementation patterns. | ||
|
||
== Overview | ||
|
||
The DesktopDemo is a simple application that demonstrates: | ||
|
||
* Basic setup of a desktop application | ||
* Implementation of core functionality | ||
* Common usage patterns | ||
|
||
== Running the Demo | ||
|
||
[source,bash] | ||
---- | ||
./gradlew :DesktopDemo:run | ||
---- | ||
|
||
== Note | ||
|
||
This demo is built using the experimental desktop module. As the underlying APIs may change, | ||
please ensure you're using compatible versions of all modules. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
= Desktop Module | ||
:icons: font | ||
|
||
WARNING: This module is experimental. The API is not stable and may change in future versions without notice. | ||
|
||
This module provides concrete implementations of the core interfaces for desktop Java applications. | ||
It enables building desktop applications using our SDK. | ||
|
||
== Overview | ||
|
||
The desktop module is part of our SDK's desktop support, introduced in version 2.8.0. | ||
It implements the core interfaces necessary for desktop application development. | ||
|
||
== Usage | ||
|
||
See the DesktopDemo module for examples of how to use this implementation. |