import javafx.application.Application; import javafx.application.Platform; import javafx.scene.paint.PhongMaterial; import javafx.stage.Stage; /* * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. */ /** * * @author akouznet */ public class ShortBug extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage stage) throws Exception { new PhongMaterial().toString(); Platform.exit(); } }