add auto complete (code assist) for object maps in silk4j
It will be awesome if auto complete is supported for object map. For example, if we have App.Menu.File in the object map. It will be nice to automatically populate Menu when we type App. in the eclipse.

valid request – currently not planned.
1 comment
-
Thomas Weller commented
I have implemented something similar as a pre-build-step. It takes all object maps and generates an accessor class. Of course, that doesn't support refactorings, but at least I got rid of all the string constants (locator names) spread all over the code. That also eliminates runtime errors and is sooo convenient to implement. Using automatic type-casting (<Type>find(...)), the code is much shorter than before.