abstract class DefaultClassManager extends ClassManager
- Alphabetic
- By Inheritance
- DefaultClassManager
- ClassManager
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new DefaultClassManager()
Abstract Value Members
-
abstract
def
load(primManager: PrimitiveManager): Unit
Loads the primitives in the extension.
Loads the primitives in the extension. This is called once per model compilation.
- primManager
The manager to transport the primitives to NetLogo
- Definition Classes
- DefaultClassManager → ClassManager
- Annotations
- @throws( classOf[ExtensionException] )
Concrete Value Members
-
def
additionalJars: List[String]
- Definition Classes
- DefaultClassManager → ClassManager
-
def
clearAll(): Unit
Default does nothing.
Default does nothing.
- Definition Classes
- DefaultClassManager → ClassManager
-
def
exportWorld: StringBuilder
Default exports nothing, returns empty builder.
Default exports nothing, returns empty builder.
- returns
StringBuilder containing all the data to export. If the StringBuilder is empty no section is written.
- Definition Classes
- DefaultClassManager → ClassManager
-
def
importWorld(lines: List[Array[String]], reader: ExtensionManager, handler: ImportErrorHandler): Unit
Default loads nothing.
Default loads nothing.
- lines
A list of lines exported by this extension the lines are broken up into an array delimited by commas
- reader
An interface that allows the extension to read NetLogo objects
- handler
An interface that allows the extensions to report non-fatal errors during the import
- Definition Classes
- DefaultClassManager → ClassManager
- Annotations
- @throws( classOf[ExtensionException] )
-
def
readExtensionObject(em: ExtensionManager, typeName: String, value: String): ExtensionObject
Default defines no extension objects, thus, we cannot read any extension objects.
Default defines no extension objects, thus, we cannot read any extension objects.
- typeName
The type of ExtensionObject to be returned
- value
The string representation of the object
- Definition Classes
- DefaultClassManager → ClassManager
- Annotations
- @throws( classOf[ExtensionException] ) @throws( classOf[CompilerException] )
-
def
runOnce(em: ExtensionManager): Unit
Empty implementation.
Empty implementation.
- Definition Classes
- DefaultClassManager → ClassManager
- Annotations
- @throws( classOf[ExtensionException] )
-
def
unload(em: ExtensionManager): Unit
Empty implementation.
Empty implementation.
- Definition Classes
- DefaultClassManager → ClassManager
- Annotations
- @throws( classOf[ExtensionException] )