-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #273 from dlsc-software-consulting-gmbh/staging
Staging
- Loading branch information
Showing
17 changed files
with
205 additions
and
17 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,74 @@ | ||
[ | ||
{ | ||
"id": "openjfxstartedref", | ||
"name": "Getting Started with JavaFX", | ||
"description": "A quick-start guide detailing JavaFX setup across different IDEs and build tools such as Maven and Gradle. Ideal for newcomers or those seeking smooth integration.", | ||
"url": "https://openjfx.io/openjfx-docs//", | ||
"tags": "Getting Started", | ||
"createdOn": "2023-08-23", | ||
"modifiedOn": "2023-08-23" | ||
}, | ||
{ | ||
"id": "fxdocsref", | ||
"name": "JavaFX Documentation Project", | ||
"description": "Consolidates key information for developers. It's open source and encourages community contributions for enhanced quality and usefulness.", | ||
"url": "https://fxdocs.github.io/docs/html5/", | ||
"tags": "Getting Started", | ||
"createdOn": "2023-08-23", | ||
"modifiedOn": "2023-08-23" | ||
}, | ||
{ | ||
"id": "apiref", | ||
"name": "JavaFX API Documentation", | ||
"description": "A comprehensive reference guide covering all classes, methods, and interfaces of JavaFX. Essential for developers seeking in-depth knowledge of its functionalities.", | ||
"url": "https://openjfx.io/javadoc/20/", | ||
"tags": "Documentation", | ||
"createdOn": "2023-08-23", | ||
"modifiedOn": "2023-08-23" | ||
}, | ||
{ | ||
"id": "fxmlref", | ||
"name": "JavaFX FXML Reference", | ||
"description": "An introductory guide to FXML, the XML-based markup language designed for building JavaFX user interfaces. ", | ||
"url": "https://openjfx.io/javadoc/20/javafx.fxml/javafx/fxml/doc-files/introduction_to_fxml.html", | ||
"tags": "FXML", | ||
"createdOn": "2023-08-23", | ||
"modifiedOn": "2023-08-23" | ||
}, | ||
{ | ||
"id": "cssref", | ||
"name": "JavaFX CSS Reference", | ||
"description": "An in-depth guide to JavaFX CSS styling, detailing properties, pseudo-classes, control skins, and their structural breakdown.", | ||
"url": "https://openjfx.io/javadoc/20/javafx.graphics/javafx/scene/doc-files/cssref.html", | ||
"tags": "CSS", | ||
"createdOn": "2023-08-23", | ||
"modifiedOn": "2023-08-23" | ||
}, | ||
{ | ||
"id": "modenacssref", | ||
"name": "JavaFX Default CSS (Modena)", | ||
"description": "Modena is the default theme for JavaFX 8+. This guide provides the built-in CSS styles, helping developers customize and enhance the UI.", | ||
"url": "https://github.com/openjdk/jfx/blob/master/modules/javafx.controls/src/main/resources/com/sun/javafx/scene/control/skin/modena/modena.css", | ||
"tags": "CSS", | ||
"createdOn": "2023-08-23", | ||
"modifiedOn": "2023-08-23" | ||
}, | ||
{ | ||
"id": "caspiancssref", | ||
"name": "JavaFX CSS (Caspian)", | ||
"description": "Caspian is the default theme for JavaFX 2.x. This guide offers the built-in CSS styles, helping developers customize and enhance the UI.", | ||
"url": "https://github.com/openjdk/jfx/blob/master/modules/javafx.controls/src/main/resources/com/sun/javafx/scene/control/skin/caspian/caspian.css", | ||
"tags": "CSS", | ||
"createdOn": "2023-08-23", | ||
"modifiedOn": "2023-08-23" | ||
}, | ||
{ | ||
"id": "oraclestartedref", | ||
"name": "Getting Started with JavaFX8", | ||
"description": "An essential guide to JavaFX 8 fundamentals, offering insights into core concepts and practices. Valuable for developers aiming to grasp the foundational aspects of JavaFX.", | ||
"url": "https://docs.oracle.com/javase/8/javafx/get-started-tutorial/index.html", | ||
"tags": "Getting Started", | ||
"createdOn": "2023-08-23", | ||
"modifiedOn": "2023-08-23" | ||
} | ||
] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
16 changes: 16 additions & 0 deletions
16
src/main/java/com/dlsc/jfxcentral/data/model/Documentation.java
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 @@ | ||
package com.dlsc.jfxcentral.data.model; | ||
|
||
public class Documentation extends ModelObject { | ||
private String url; | ||
|
||
public Documentation() { | ||
} | ||
|
||
public String getUrl() { | ||
return url; | ||
} | ||
|
||
public void setUrl(String url) { | ||
this.url = url; | ||
} | ||
} |
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
Oops, something went wrong.