Closed Lattyware closed 9 years ago
I have a Foo object that has a member Bar object. They both have Baz inner classes, and instances of those inner classes within themselves. E.g:
Foo
Bar
Baz
class Foo { class Baz { public int a; } public Baz baz; public Bar bar; }
class Bar { class Baz { public int b; } public Baz baz; }
When the doclet runs, it produces incorrect output, conflating the two Baz classes and keeping only Foo.Baz, without Bar.Baz showing up at all:
Foo.Baz
Bar.Baz
{ "baz": { "a": 0 }, "bar": { "baz": { "a": 0 } } }
@Lattyware I have now committed support for nested model classes, if you have time let me know if it works for you
closing as I believe this has been resolved
I have a
Foo
object that has a memberBar
object. They both haveBaz
inner classes, and instances of those inner classes within themselves. E.g:When the doclet runs, it produces incorrect output, conflating the two
Baz
classes and keeping onlyFoo.Baz
, withoutBar.Baz
showing up at all: