/* * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. */ package test.scenegraph.app; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import javafx.application.Application; import javafx.collections.FXCollections; import javafx.collections.ListChangeListener; import javafx.collections.ListChangeListener.Change; import javafx.collections.ObservableList; import javafx.event.ActionEvent; import javafx.event.Event; import javafx.event.EventHandler; import javafx.event.EventType; import javafx.scene.*; import javafx.scene.control.*; import javafx.scene.layout.BorderPane; import javafx.scene.layout.HBox; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import javafx.scene.shape.Circle; import javafx.scene.shape.Rectangle; import javafx.scene.transform.Translate; import javafx.stage.Stage; import test.javaclient.shared.InteroperabilityApp; import test.javaclient.shared.Utils; /** * * @author Aleksandr Sakharuk */ public class DepthTestApp extends InteroperabilityApp { public static void main(String[] args) { Utils.launch(DepthTestApp.class, args); } @Override protected Scene getScene() { return new DepthTestScene(); } }