We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
file A.kt:
class A { @Convert(converter = BConverter::class, dbType = String::class) var b:B?=null } class B { class Converter... } typealias BConverter = B.Converter
generated ACursor.java:
... import apple.ios.watches.model.BConverter; ... private final BConverter bConverter = new BConverter(); ...
... import apple.ios.watches.model.B.Converter; ... private final Converter bConverter = new Converter(); ...
The text was updated successfully, but these errors were encountered:
Thanks for reporting!
This currently can not be fixed as the ObjectBox Java generator generates Java code and:
Java has no concept of "type aliases" and can't see them https://github.com/Kotlin/KEEP/blob/master/proposals/type-aliases.md#use-cases
Java has no concept of "type aliases" and can't see them
https://github.com/Kotlin/KEEP/blob/master/proposals/type-aliases.md#use-cases
For anyone else affected or interested, it helps us prioritize issues if you thumbs up the first post (GitHub can sort issues by thumbs ups)!
Sorry, something went wrong.
No branches or pull requests
Is there an existing issue?
Build info
Steps to reproduce
file A.kt:
Expected behavior
generated ACursor.java:
Actual behavior
generated ACursor.java:
Code
Code
Logs, stack traces
Logs
The text was updated successfully, but these errors were encountered: