Skip to content

Instantly share code, notes, and snippets.

@madhephaestus
Last active September 8, 2016 20:11
Show Gist options
  • Save madhephaestus/a3bf40807728ed83dd99 to your computer and use it in GitHub Desktop.
Save madhephaestus/a3bf40807728ed83dd99 to your computer and use it in GitHub Desktop.
BowlerStudio Tabs
import javafx.scene.text.Text;
// Create a tab
Tab myTab = new Tab();
//set the title of the new tab
myTab.setText("Whoh a tab!");
//add content to the tab
myTab.setContent(new Text(10, 50, "Oh my, how cool!"));
return myTab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment