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.

View | Details | Raw Unified | Return to bug 132368
Collapse All | Expand All

(-)schema2beans/src/org/netbeans/modules/schema2beansdev/BeanClass.java (+11 lines)
Lines 215-220 Link Here
215
        if (this.beanElement.isRoot && shouldThrowException()) {
215
        if (this.beanElement.isRoot && shouldThrowException()) {
216
            thrownExceptions = "org.netbeans.modules.schema2beans.Schema2BeansException";
216
            thrownExceptions = "org.netbeans.modules.schema2beans.Schema2BeansException";
217
        }
217
        }
218
219
        //ENRICO
220
      jw.beginConstructor(className, "Vector comparators, Version runtimeVersion", thrownExceptions, JavaWriter.PUBLIC);
221
	gen("super( comparators, runtimeVersion);");cr();
222
	gen("initPropertyTables(0);");cr();
223
    gen("this.initialize(Common.USE_DEFAULT_VALUES);");cr();
224
	
225
	end(); cr();
226
    //END ENRICO
227
228
218
        jw.beginConstructor(className, "", thrownExceptions, jw.PUBLIC);
229
        jw.beginConstructor(className, "", thrownExceptions, jw.PUBLIC);
219
	gen("this(");
230
	gen("this(");
220
	if (this.beanElement.isRoot)
231
	if (this.beanElement.isRoot)

Return to bug 132368