Home
Categories
Dictionary
Download
Project Details
Changes Log
Tutorials
FAQ
License

Troubleshooting


You might have errors such as:
      
         Unable to register my.plugins.MyPlugin plugin
         (java.lang.NullPointerException) 
Or:
      
         Unable to initialize after GUI creation in Plugin MyPlugin
         (java.lang.NullPointerException)   
Or:
      
         Unable to reset settings in Plugin MyPlugin
         (java.lang.NullPointerException)   
It might be that you defined the MenuFactory after you register the plugins. For example this code is incorrect:
      registerPlugins(); 
      mfactory = new MenuFactory(splashdialog);           
You should rather do:
      mfactory = new MenuFactory(splashdialog);
      registerPlugins();      

Categories: general

Copyright 2006-2023 Herve Girod. All Rights Reserved. Documentation and source under the LGPL v2 and Apache 2.0 licences