Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gluonhq/connect
https://github.com/gluonhq/connect
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gluonhq/connect
- Owner: gluonhq
- License: other
- Created: 2018-12-10T07:15:48.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-12-19T18:38:56.000Z (about 3 years ago)
- Last Synced: 2024-01-30T16:30:35.019Z (11 months ago)
- Language: Java
- Size: 136 KB
- Stars: 14
- Watchers: 9
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Gluon Connect
## Introduction
Gluon Connect is a client-side library that simplifies binding your data from any source and format to your
JavaFX UI controls. It works by retrieving data from a data source and converting that data from a specific format
into JavaFX observable lists and observable objects that can be used directly in JavaFX UI controls. It is designed to
allow developers to easily add support for custom data sources and data formats.* Reference Documentation: http://docs.gluonhq.com/connect
* JavaDoc: http://docs.gluonhq.com/connect/javadoc## Dependency
### Together with Gluon Mobile
A dependency to Gluon Connect is automatically added when using the [Gluon Mobile](http://gluonhq.com/products/mobile/) dependency.
You also need to configure the four required Charm Down plugins that are used in Gluon Mobile.dependencies {
compile 'com.gluonhq:charm:4.3.2'
}jfxmobile {
downConfig {
version '3.2.4'
plugins 'display', 'lifecycle', 'statusbar', 'storage'
}
}### Standalone
You can also use the library as a standalone dependency. You only need to define the following dependency:
##### Gradle
dependencies {
compile 'com.gluonhq:connect:1.4.3'
}##### Maven
com.gluonhq
connect
1.4.3