class ExtensionManager extends nvm.ExtensionManager
- Source
- ExtensionManager.scala
- Alphabetic
- By Inheritance
- ExtensionManager
- ExtensionManager
- ExtensionManager
- ExtensionManager
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ExtensionManager(workspace: ExtendableWorkspace, loader: ExtensionLoader)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
anyExtensionsLoaded: Boolean
Returns true if any extensions have been imported in the current model.
Returns true if any extensions have been imported in the current model.
- Definition Classes
- ExtensionManager → ExtensionManager
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
cachedType(name: String): Option[TokenType]
Returns cached type for a given primitive name.
Returns cached type for a given primitive name. Will be either TokenType.Command or a TokenType.Reporter
This is cached so that it can be run without interrupting the extension lifecycle hooks. It is cleared when clearAll is run.
- Definition Classes
- ExtensionManager → ExtensionManager
- def clearAll(): Unit
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @IntrinsicCandidate()
-
def
dumpExtensionPrimitives(): String
Returns a String describing all the loaded extensions.
Returns a String describing all the loaded extensions.
- Definition Classes
- ExtensionManager → ExtensionManager → ExtensionManager
-
def
dumpExtensions: String
Returns a String describing all the loaded extensions.
Returns a String describing all the loaded extensions.
- Definition Classes
- ExtensionManager → ExtensionManager → ExtensionManager
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def exportWorld(writer: PrintWriter): Unit
-
def
extensionCommandNames: Set[String]
Return cached lists of the names of extension primitives (commands and reporters respectively)
Return cached lists of the names of extension primitives (commands and reporters respectively)
These are cached so that they can be run without interrupting the extension lifecycle hooks.
- Definition Classes
- ExtensionManager → ExtensionManager
-
def
extensionReporterNames: Set[String]
- Definition Classes
- ExtensionManager → ExtensionManager
-
def
finishFullCompilation(): Unit
Instructs any extensions which haven't been re-imported during the current compile to shut down.
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.
- Definition Classes
- ExtensionManager → ExtensionManager
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
-
def
importExtension(extName: String, errors: ErrorSource): Unit
Loads the extension contained in the jar at jarPath.
Loads the extension contained in the jar at jarPath.
- errors
the ErrorSource to use when a CompilerException needs to be thrown.
- Definition Classes
- ExtensionManager → ExtensionManager
- Annotations
- @throws( classOf[CompilerException] )
-
def
importExtensionData(name: String, data: List[Array[String]], handler: ImportErrorHandler): Unit
- Annotations
- @throws( ... )
- def isExtensionName(name: String): Boolean
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
loadedExtensions: Iterable[ClassManager]
uses java.lang.Iterable for easy access from Java
uses java.lang.Iterable for easy access from Java
- Definition Classes
- ExtensionManager → ExtensionManager
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
-
def
readExtensionObject(extName: String, typeName: String, value: String): ExtensionObject
- Definition Classes
- ExtensionManager → ExtensionManager → ExtensionManager
- Annotations
- @throws( classOf[CompilerException] )
-
def
readFromString(source: String): AnyRef
- Definition Classes
- ExtensionManager → ExtensionManager
- Annotations
- @throws( classOf[CompilerException] )
-
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.
- Definition Classes
- ExtensionManager → ExtensionManager
-
def
reset(): Unit
Instructs any loaded extensions to unload.
Instructs any loaded extensions to unload. Should be called previous to a new model load.
- Definition Classes
- ExtensionManager → ExtensionManager → ExtensionManager
-
def
retrieveObject: AnyRef
- returns
the stored object
- Definition Classes
- ExtensionManager → ExtensionManager
-
def
startFullCompilation(): Unit
During compilation, we reach the extensions [ ...
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.
- Definition Classes
- ExtensionManager → ExtensionManager
-
def
storeObject(obj: AnyRef): Unit
Stores an object for the extension that can be retrieved in runOnce if the extension is loaded again.
Stores an object for the extension that can be retrieved in runOnce if the extension is loaded again. This is useful if the extension has initialization it needs to perform that should only happen once, even if the extension is loaded multiple times.
- obj
the object to be stored
- Definition Classes
- ExtensionManager → ExtensionManager
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- val workspace: ExtendableWorkspace