rigd-loxia / builder-generator

Yet another builder generator. Primary style of this generator will be fluent wither, although other styles will be supported in the future. There is support for builder chaining.
Apache License 2.0
2 stars 2 forks source link

using classes in subpackages causes incorrect package usage. #47

Closed Zegveld closed 11 months ago

Zegveld commented 11 months ago

if you have for example:

package my.package;

@Builder
class MyClass {
    my.package.sub.OtherClass field;
    // getters & setters
}

the generated builder code will use sub.OtherClass instead of my.package.sub.OtherClass.