I am developing a NetBeans module. What performance criteria should it satisfy?

Apache NetBeans Wiki Index

Note: These pages are being reviewed.

All NetBeans modules should behave responsibly with regard to performance. They must not affect startup time negatively, they must not increase memory footprint significantly, and they must be responsive at all times.

  • startup - module initialization should be as lazy as possible, not to increase startup time

  • memory footprint - heap space allocated by module’s data structures should be freed as soon as not needed; excessive caching of data is not good

  • UI responsiveness - a module’s actions, menus and windows should satisfy the UI responsiveness guidelines as stated in UI_Responsiveness


Applies to: NetBeans 6.5 and above

Platforms: All