This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" } | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package github.gist.testfx | |
import javafx.scene.Parent | |
import org.loadui.testfx.GuiTest | |
import spock.lang.Specification | |
abstract class GuiSpecification extends Specification { | |
GuiTest fx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<templateSet group="groovy-javafx"> | |
<template name="fxprop" value="// $NAME$: $TYPE$ ($PROP_TYPE$Property). private $PROP_TYPE$Property $PROP_NAME$Property = new Simple$PROP_TYPE$Property(this, "$PROP_NAME$") $PROP_TYPE$Property $PROP_NAME$Property() { return this.$PROP_NAME$Property } $TYPE$ get$METHOD_NAME$() { return this.$PROP_NAME$Property.get() } void set$METHOD_NAME$($TYPE$ value) { this.$PROP_NAME$Property.set(value) } " toReformat="false" toShortenFQNames="true"> | |
<variable name="NAME" expression="" defaultValue=""foo"" alwaysStopAt="true" /> | |
<variable name="TYPE" expression="" defaultValue=""int"" 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 |