The main class for the complete NetLogo application.
Through NetLogo 4.1 (since 2.0 or so), we used a custom wiki-type format, with custom code for converting it to HTML for display.
Through NetLogo 4.1 (since 2.0 or so), we used a custom wiki-type format, with custom code for converting it to HTML for display. Now we use Markdown, but old models must be supported, so we convert the old markup to Markdown.
Loads plugins.
Loads plugins. Plugins are instantiated using PicoContainer so that arbitrary constructor parameters can be injected. (Currently a plugin is always an extra tab, but we plan to generalize so e.g. BehaviorSpace will be a plugin too, maybe HubNet, etc.) - ST 6/8/11
Detect if an exported world will contain any tasks.
Detect if an exported world will contain any tasks. If it will, warn the user, since the file won't re-import.
The main class for the complete NetLogo application.
All methods in this class, including the constructor, must be called from the AWT event queue thread, unless otherwise specified.
See the "Controlling" section of the NetLogo User Manual for example code.