EotT123
EotT123
@rsmckinney I wasn't sure where to put some tests. Feel free to add them in the correct location.
PR which implements this: https://github.com/manifold-systems/manifold/pull/576
Thanks for your answer. I was also thinking about the exponential growth, and the fact that calling `getId()` isn't so bad. However, calling `getId()` is not always possible when the...
That might be a better solution. Then there even might not be the need to pass the objects by reference, only by id? I'm a bit intrigued how you managed...
Thanks for the explanation. I was thinking about something like it, but I was wondering if I maybe was missing something. All seems logical now. Thanks. Probably the following would...
This seems a bit more complex than the proposed solution. However, I'm going to try to make this work. Nice to see that so much is possible! Thanks for pointing...
No problem at all. I didn't intend to create a PR just yet, but I enjoy diving deeper into the code. I'm just scratching the surface and currently have only...
I'm almost there I think. I can annotate a class to generate the needed methods: When processing the annotation, a new java source file is generated in `target/generated-sources/annotations`: Which gets...
@rsmckinney After further testing, I can conclude that it **_is_** working. Compilation is successful. However, IntelliJ cannot resolve the methods, nor is there any content assist. My guess is that...
Thanks for the answer! I've changed it to what you suggested (also using the `AbstractExtensionProducer` way, which I wasn't using in the previous post, as I couldn't get it working)....