Mark Ford
Mark Ford
It would be helpful to have a format for a decision table that could be converted to GRL. The standard Drools decision table format is one to consider. This is...
@newm4n Here's the basic outline of the simple decision table format I'm using. Please note that this is not a general solution since it doesn't include any of the semantics...
@newm4n The Drools documentation for their format is very good. See: https://docs.jboss.org/drools/release/6.5.0.Final/drools-docs/html/ch06.html#d0e5713 I think it addresses each one of your concerns. > One user's decision table structure will be different...
The name of the generated immutable in my example above is `ImmutableChild`. Note that this could result in duplicate class names which is tracked here: https://github.com/immutables/immutables/issues/272 I did a little...
I should have some time later in the week to finish this up in my fork. In addition to the existing tests for immutables passing, I have the following test...
I have this working for javac but there's something different about the eclipse compiler configuration that's eluding me. I've pushed my changes but haven't opened a PR until I can...
The diff between the build directories for the javac and eclipse_jdt tests in their respective `target/tmp` locations shows that the generated mapstruct mappers are only present in the javac tests....
Still no luck with the eclipse_jdt build. I've pushed my latest effort. It's working for my test cases which include the inner class for this issue as well as some...
I think the includeType was a patch because some schemas have a massive amount of methods and in one case a user reported a problem with too many overloaded methods...
Revisiting this after updating the code a little. The current behavior is to generate a single Visitor interface with a visit method for each concrete bean. I can see adding...