Skip to content

Instantly share code, notes, and snippets.

View hastebrot's full-sized avatar

Benjamin Gudehus hastebrot

  • Freiheit.com
  • Hamburg, Germany
  • 03:54 (UTC +02:00)
View GitHub Profile
apply plugin: "java"
group = "example"
version = "0.0.1"
repositories {
maven { name = "maven central"; url = "http://repo1.maven.org/maven2" }
maven { name = "osgeo"; url = "http://download.osgeo.org/webdav/geotools/" }
}
package github.gist.testfx
import javafx.scene.Parent
import org.loadui.testfx.GuiTest
import spock.lang.Specification
abstract class GuiSpecification extends Specification {
GuiTest fx
// loadui/loadui-project/loadui-fx-interface/src/test/java/com/eviware/loadui/ui/fx/control
@Category(TestFX.class)
public class SampleAppTest {
private static final SettableFuture<Stage> stageFuture = SettableFuture.create();
private static Stage stage;
private static GuiTest controller;
public static class SampleApp extends Application {
import java.lang.reflect.Method
import java.util.concurrent.TimeUnit
import javafx.application.Application
import javafx.scene.Scene
import javafx.scene.control.Label
import javafx.scene.layout.BorderPane
import javafx.stage.Stage
import com.google.common.util.concurrent.SettableFuture
import net.sf.cglib.proxy.Callback
package org.loadui.testfx.framework.junit;
import java.util.concurrent.TimeUnit;
import javafx.application.Application;
import javafx.stage.Stage;
import org.loadui.testfx.framework.app.impl.AppSetupImpl;
import org.loadui.testfx.framework.app.impl.DefaultAppLauncher;
import org.loadui.testfx.framework.robot.FxRobot;
import org.loadui.testfx.utils.StageFuture;
import javafx.application.Application;
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.ReadOnlyObjectProperty;
import javafx.beans.property.SimpleObjectProperty;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.EventHandler;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.Pane;
import javafx.stage.Stage;
import java.io.IOException;
/**
* Main application class.
import javafx.beans.property.ObjectProperty
import javafx.beans.property.SimpleObjectProperty
import javafx.beans.value.ChangeListener
import javafx.scene.Node
import javafx.scene.control.Control
import javafx.scene.control.Skin
import javafx.scene.layout.StackPane
import com.sun.javafx.scene.control.behavior.BehaviorBase
import com.sun.javafx.scene.control.behavior.KeyBinding
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<StackPane alignment="TOP_LEFT" xmlns="http://javafx.com/javafx/8"
xmlns:fx="http://javafx.com/fxml/1">
<children>
@hastebrot
hastebrot / groovy-javafx.xml
Last active December 1, 2017 11:01
IntelliJ IDEA Live Template for JavaFX in Groovy
<?xml version="1.0" encoding="UTF-8"?>
<templateSet group="groovy-javafx">
<template name="fxprop" value="// $NAME$: $TYPE$ ($PROP_TYPE$Property).&#10;private $PROP_TYPE$Property $PROP_NAME$Property =&#10; new Simple$PROP_TYPE$Property(this, &quot;$PROP_NAME$&quot;)&#10;$PROP_TYPE$Property $PROP_NAME$Property() { return this.$PROP_NAME$Property }&#10;&#10;$TYPE$ get$METHOD_NAME$() { return this.$PROP_NAME$Property.get() }&#10;void set$METHOD_NAME$($TYPE$ value) { this.$PROP_NAME$Property.set(value) }&#10;" toReformat="false" toShortenFQNames="true">
<variable name="NAME" expression="" defaultValue="&quot;foo&quot;" alwaysStopAt="true" />
<variable name="TYPE" expression="" defaultValue="&quot;int&quot;" alwaysStopAt="true" />
<variable name="PROP_TYPE" expression="capitalize(TYPE)" defaultValue="" alwaysStopAt="true" />
<variable name="METHOD_NAME" expression="capitalize(NAME)" defaultValue="" alwaysStopAt="false" />
<variable name="PROP_NAME" expression="decapitalize(NAME)" defaultVa