Index: schema2beans/src/org/netbeans/modules/schema2beansdev/BeanClass.java --- schema2beans/src/org/netbeans/modules/schema2beansdev/BeanClass.java +++ schema2beans/src/org/netbeans/modules/schema2beansdev/BeanClass.java @@ -215,6 +215,17 @@ if (this.beanElement.isRoot && shouldThrowException()) { thrownExceptions = "org.netbeans.modules.schema2beans.Schema2BeansException"; } + + //ENRICO + jw.beginConstructor(className, "Vector comparators, Version runtimeVersion", thrownExceptions, JavaWriter.PUBLIC); + gen("super( comparators, runtimeVersion);");cr(); + gen("initPropertyTables(0);");cr(); + gen("this.initialize(Common.USE_DEFAULT_VALUES);");cr(); + + end(); cr(); + //END ENRICO + + jw.beginConstructor(className, "", thrownExceptions, jw.PUBLIC); gen("this("); if (this.beanElement.isRoot)