This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.
I have an AST model: @Model(className = "AST", properties = { @Property(name = "children", type = AST.class, array = true), @Property(name = "kind", type = SyntaxKind.class), @Property(name = "type", type = Type.class), }) class ASTCntrl { } and it works OK, even if it references AST recursively. However, if I change: @Property(name = "type", type = AST.class), I get stack overflow after calling "new AST()" as the constructor tries to initializes type = new AST().
Will be part of 1.3 version: http://hg.netbeans.org/html4j/rev/3ef632633f36