Packages

trait ExtensionManager extends core.ExtensionManager

ExtensionManager provides some methods that can be used in runOnce

Source
ExtensionManager.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExtensionManager
  2. ExtensionManager
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract 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
  2. abstract def dumpExtensionPrimitives(): String
  3. abstract def dumpExtensions: String
  4. abstract 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
  5. abstract 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.

    Definition Classes
    ExtensionManager
  6. abstract def loadedExtensions: Iterable[ClassManager]

    uses java.lang.Iterable for easy access from Java

  7. abstract def readExtensionObject(extname: String, typeName: String, value: String): ExtensionObject
    Definition Classes
    ExtensionManagerExtensionManager
  8. abstract def readFromString(src: String): AnyRef
  9. abstract 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
  10. abstract def reset(): Unit

    Instructs any loaded extensions to unload.

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

  11. abstract def retrieveObject: AnyRef

    returns

    the stored object

  12. abstract 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
  13. abstract 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

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  14. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  15. def toString(): String
    Definition Classes
    AnyRef → Any
  16. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from core.ExtensionManager

Inherited from AnyRef

Inherited from Any

Ungrouped