/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package fx.bugs.verification; import java.util.ArrayList; import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.paint.LinearGradientBuilder; import javafx.scene.paint.Stop; import javafx.scene.shape.Rectangle; import javafx.stage.Stage; /** * * @author Peter Song * @date Aug 31, 2011 11:43:56 AM */ public class TestEmptyStrokeList extends Application{ @Override public void start(Stage stage) throws Exception { Rectangle r = new Rectangle(200, 200); r.setFill(LinearGradientBuilder.create().stops(new ArrayList()).build()); Scene s = new Scene(new Group(r), 220, 220); stage.setScene(s); stage.show(); } public static void main(String[] args) { Application.launch(args); } }