views:

383

answers:

1

I am trying to keep Netbeans from printing statement like this

// <editor-fold defaultstate="collapsed" desc=" UML Marker "> 
// #[regen=yes,id=DCE.B7E25FE1-C10B-ED91-77...
// </editor-fold>

without deleting them from the code.

+1  A: 

The editor-fold you posted is added when you generate code from a UML diagram created in Netbeans. This UML markers are used for source code synchronization, between the UML and your Java class. So one option would be not to use the UML source code generation features.

The UML code generation uses templates to generate the code. You can manage the template being used under Tools -> Options -> UML -> Domain Templates.

These templates are customizable see the NetBeans UML Custom Code Generation documentation.

Mark Robinson