Hallvard Trætteberg

Results 58 comments of Hallvard Trætteberg

The documentation doesn't really explain the meaning, it just says "delayed initialization list". Is it about delaying (static) initialisation of classes? In this case it's triggered by a call to...

Here's the stack trace: ``` [SUB] Caused by: java.lang.IllegalArgumentException: Unable to coerce Meta+N to class javafx.scene.input.KeyCombination. [SUB] at com.sun.javafx.fxml.BeanAdapter.coerce(BeanAdapter.java:496) [SUB] at com.sun.javafx.fxml.BeanAdapter.put(BeanAdapter.java:258) [SUB] at com.sun.javafx.fxml.BeanAdapter.put(BeanAdapter.java:54) [SUB] at javafx.fxml.FXMLLoader$Element.applyProperty(FXMLLoader.java:520) [SUB] at...

In BeanAdapter the following line tries to find a valueOf method that can be used: `valueOfMethod = type.getDeclaredMethod(VALUE_OF_METHOD_NAME, valueType);` valueType will here be `String` and type `javafx.scene.input.KeyCombination`. `javafx.scene.input.KeyCombination` has a...

There's some advantage to using a textual format, rather than an API. E.g. you could provide you own template that tablesaw could "inject" data into.

I looked at vega again, and now they seem to have introduced a more easy-to-use version called vega-lite, that is (internally) transformed to the full version: https://vega.github.io/vega-lite/ Anyway, I agree...

In general I agree, but here I don't. First, there's really no difference between JSON and HTML in this respect. Second, the data is typically simple, so quoting is less...

The issue with the schema is if you want to create it by hand and use the overloaded toDataFrame method. Then you may want to add a type corresponding to...

The case was using Smile directly, but in the context of Tablesaw, so the method was used without toDataFrame.

Related to this is the possibility to have a hierarchy within a tour, e.g. I have a tour for a multi-module maven project and have added directory steps for each...

The plug-in relies on the plantuml library for the actual rendering, I suppose it is an issue with it. The plug-in doesn't use the newest one, perhaps that's the problem.