org.nlogo.api

ExtensionManager

trait ExtensionManager extends AnyRef

ExtensionManager provides some methods that can be used in runOnce

Source
ExtensionManager.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. ExtensionManager
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Abstract Value Members

  1. def addToLibraryPath (classManager: AnyRef, directory: String): Unit

    Attributes
    abstract
  2. 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.

    Attributes
    abstract
  3. def dumpExtensionPrimitives (): String

    Attributes
    abstract
  4. def dumpExtensions : String

    Attributes
    abstract
  5. 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.

    Attributes
    abstract
  6. def getExtensionNames : List[String]

    Attributes
    abstract
  7. def getFile (path: String): File

    Attributes
    abstract
    Annotations
    @throws( classOf[ExtensionException] )
  8. def getJarPaths : List[String]

    Attributes
    abstract
  9. def getSource (filename: String): String

    Attributes
    abstract
    Annotations
    @throws( classOf[java.io.IOException] )
  10. 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.

    jarPath

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

    errors

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

    Attributes
    abstract
    Annotations
    @throws( classOf[CompilerException] )
  11. def profilingEnabled : Boolean

    Attributes
    abstract
  12. def readExtensionObject (extname: String, typeName: String, value: String): ExtensionObject

    Attributes
    abstract
    Annotations
    @throws( classOf[CompilerException] )
  13. def readFromString (src: String): AnyRef

    Attributes
    abstract
    Annotations
    @throws( classOf[CompilerException] )
  14. 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
    abstract
  15. def reset (): Unit

    Instructs any loaded extensions to unload.

    Instructs any loaded extensions to unload. Should be called previous to a new model load.

    Attributes
    abstract
  16. def resolvePath (path: String): String

    Attributes
    abstract
  17. def resolvePathAsURL (path: String): String

    Attributes
    abstract
  18. def retrieveObject : AnyRef

    returns

    the stored object

    Attributes
    abstract
  19. 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.

    Attributes
    abstract
  20. 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

    Attributes
    abstract

Concrete Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  9. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  12. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  13. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  14. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  15. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  16. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  17. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  18. def toString (): String

    Definition Classes
    AnyRef → Any
  19. def wait (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  20. def wait (arg0: Long, arg1: Int): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  21. def wait (arg0: Long): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any