-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some more auto-completions #7
Comments
I implemented the auto-completion for |
@sradi, sorry for the late reply. Could you create a pull request also if its in an early stage? Then we have a place where we can discuss it and it isn't at risk of being forgotten ;) You can then still push further commits for incorporating any review comments if needed. Thanks a lot for your contribution, looking forward to merge your first commit :) |
Btw. @agudian fixed a bug fix for completion of bean properties, so your change probably needs a rebase. |
I'd like to start work on auto-completion for |
@sradi, first of all, thanks a lot for your contribution! I’m not sure whether the JDT search engine performs well in context of content assist, especially if the index is not yet built. But you should give it a try and test the performance. Another idea would be an iteration over all compilation units of the project and do some AST parsing afterwards. |
I've moved out some parts of the todo-list to separate issues. |
Hey @sradi just came across this issue. Would you still be interested in working on this? |
Hi @gunnarmorling , I just had a closer look into my work-in-progress from a couple of months ago. My first intent was to finish this issue. But at a second glance, the code completion feature doesn't seem trivial to implement for non-String values (in this case: |
@Mapper#componentModel()
there could be shown the list of supported values@Mapper#config()
there could be shown a filtered list only containing actual config classesIn- handled in Code completion: add completion for InheritConfiguration/InheritInverseConfiguration methods #22@InheritConfiguration#name()
/@InheritInverseConfiguration#name()
there could be shown a filtered list of existing method names- handled in Code completion: add proposals for @Mapping#dependsOn #23@Mapper#dependsOn()
should suggest only properties of the target beanThe text was updated successfully, but these errors were encountered: