Skip to content

Instantly share code, notes, and snippets.

@ThomasBassa
ThomasBassa / TableViewOfInts.java
Created April 20, 2016 19:39
JavaFX TableView things
import java.util.Arrays;
import java.util.function.BiConsumer;
import java.util.function.Function;
import javafx.application.Application;
import javafx.beans.property.ReadOnlyObjectWrapper;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.RadioButton;
import javafx.scene.control.TextField;
import javafx.scene.control.ToggleGroup;
import javafx.scene.layout.GridPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
@ThomasBassa
ThomasBassa / MediaMetadataTest.java
Created April 8, 2016 02:49
A quick demo JavaFX app that displays media information and plays the audio.
import java.io.File;
import javafx.application.Application;
import javafx.beans.property.SimpleObjectProperty;
import javafx.collections.MapChangeListener;
import javafx.collections.ObservableMap;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Insets;
import javafx.geometry.Pos;