Juha Komulainen

Results 9 issues of Juha Komulainen

Currently there no special assistance for calling stored procedures, but this could probably be made simpler.

enhancement

When an annotation is directly specified for a property defined in Kotlin constructor, Apina does not find it. For example: ```kotlin class Foo(val bar: String, @JsonIgnore val baz: String) ```...

Support the naming strategies implemented natively by Jackson. If, for example, the class is annotated with `@JsonNaming(PropertyNamingStrategy.SnakeCaseStrategy.class)`, Apina should know that `fooBar` will be `foo_bar` on the wire.

enhancement

Sometimes it's simplest to let custom code make arbitrary modifications to the model if there are some custom mappings etc. It could be useful to let the gradle-plugin just take...

enhancement

Consider the following: ```kotlin class Foo(val b: Bar) @JvmInline value class Bar(val x: Int) { init { require(x > 0) } } ``` Since _Bar_ is an inline value class,...

enhancement

Both `#` and `!` can be used for comments in property-files. Furthermore, comment marker need not be the first character of a line, but the first non-whitespace character. See [Properties.load()](https://docs.oracle.com/javase/8/docs/api/java/util/Properties.html#load-java.io.Reader-)...

I have an existing time in the picker, then open the picker and input invalid hour: ![Screenshot 2021-01-29 at 12 45 54](https://user-images.githubusercontent.com/3473/106265639-02ceed80-6230-11eb-8fc3-02b65a851b02.png) Nothing is indicated as being invalid and _Set_...