Skip to content
This repository was archived by the owner on Jun 28, 2020. It is now read-only.

What is TransferGrid?

Ricardo edited this page Nov 17, 2017 · 4 revisions

TransferGrid

Do you want to do turn this mess:

public class ExampleObject extends ExampleParentObject {

    private String functionName = "testFunction";
    private int number = 20;
    private String choiceForYou = "you";
       private final String choiceOne = "you";
       private final String choiceTwo = "are";
       private final String choiceThree = "nice";

    private String textAreaForNotes;
    private ExampleEnum option = ExampleEnum.FULL;
    private ExampleDataObject data;
    private String uneditableForYou = "blocked";

Into this...:

...without endless amounts of GUI coding and in a generic way that works for all your Objects? I might have the right thing for you!

Presenting a library that turns, without much additional work, any object into a JavaFX GridPane with additional (optional ofcourse) editable Fields. This library is supposed to save time whilst constructing a GUI to interact with your objects.

This library can handle it all (or atleast all use cases I had until now...). Now, after this shortish write down, lets continue on to the next page.

Clone this wiki locally