public void initialize()

in src/main/java/org/apache/cayenne/modeler/layout/SplashLayout.java [87:100]


    public void initialize()
    {
        // Load the recent projects.
        final ObservableList<String> projects =
            FXCollections.observableArrayList(ModelerPreferences.getLastProjFiles());

        // Set the recent projects and pre-select the first entry.
        recentProjectsListView.setItems(projects);
        recentProjectsListView.getSelectionModel().select(0);

        // Set the graphics for the new/open button.
        newProjectButton.setGraphic(GlyphsDude.createIcon(FontAwesomeIcon.PLUS_SQUARE, "16px"));
        openProjectButton.setGraphic(GlyphsDude.createIcon(FontAwesomeIcon.FOLDER_OPEN, "16px"));
    }