DummyExtensionManager

org.nlogo.core.DummyExtensionManager

Attributes

Source
DummyExtensionManager.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Concrete methods

Returns true if any extensions have been imported in the current model.

Returns true if any extensions have been imported in the current model.

Attributes

Definition Classes
Source
DummyExtensionManager.scala
override def finishFullCompilation(): Unit

Instructs any extensions which haven't been re-imported during the current compile to shut down. Should be called during each full re-compile.

Instructs any extensions which haven't been re-imported during the current compile to shut down. Should be called during each full re-compile.

See the top of org.nlogo.workspace.ExtensionManager for full details.

Attributes

Definition Classes
Source
DummyExtensionManager.scala
override def importExtension(jarPath: String, errors: ErrorSource): Unit

Loads the extension contained in the jar at jarPath.

Loads the extension contained in the jar at jarPath.

Value parameters

errors

the ErrorSource to use when a CompilerException needs to be thrown.

jarPath

the path to the extension jar. May be relative to the current model directory.

Attributes

Definition Classes
Source
DummyExtensionManager.scala
override def readExtensionObject(extensionName: String, typeName: String, value: String): ExtensionObject

Attributes

Definition Classes
Source
DummyExtensionManager.scala
override def replaceIdentifier(name: String): Primitive

Returns the identifier "name" by its imported implementation, if any, or null if not.

Returns the identifier "name" by its imported implementation, if any, or null if not.

Attributes

Definition Classes
Source
DummyExtensionManager.scala
override def startFullCompilation(): Unit

During compilation, we reach the extensions [ ... ] block. When that happens, the compiler tells the ExtensionManager that it needs to forget what extensions are in the extensions [ ... ] block, by calling this method.

During compilation, we reach the extensions [ ... ] block. When that happens, the compiler tells the ExtensionManager that it needs to forget what extensions are in the extensions [ ... ] block, by calling this method.

The compiler will then call the importExtension method for each extension in the block. Among other things, this lets the ExtensionManager know each extension that is "live", or currently in the block, so that its primitives are available for use elsewhere in the model.

See the top of org.nlogo.workspace.ExtensionManager for full details.

Attributes

Definition Classes
Source
DummyExtensionManager.scala