Class/Object

org.nlogo.workspace

ExtensionManager

Related Docs: object ExtensionManager | package workspace

Permalink

class ExtensionManager extends nvm.ExtensionManager

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

Instance Constructors

  1. new ExtensionManager(workspace: ExtendableWorkspace, loader: ExtensionLoader)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def anyExtensionsLoaded: Boolean

    Permalink

    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
    ExtensionManagerExtensionManager
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clearAll(): Unit

    Permalink
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def dumpExtensionPrimitives(): String

    Permalink

    Returns a String describing all the loaded extensions.

    Returns a String describing all the loaded extensions.

    Definition Classes
    ExtensionManagerExtensionManagerExtensionManager
  9. def dumpExtensions: String

    Permalink

    Returns a String describing all the loaded extensions.

    Returns a String describing all the loaded extensions.

    Definition Classes
    ExtensionManagerExtensionManagerExtensionManager
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def exportWorld(writer: PrintWriter): Unit

    Permalink
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def finishFullCompilation(): Unit

    Permalink

    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
    ExtensionManagerExtensionManager
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. def importExtension(extName: String, errors: ErrorSource): Unit

    Permalink

    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
    ExtensionManagerExtensionManager
    Annotations
    @throws( classOf[CompilerException] )
  18. def importExtensionData(name: String, data: List[Array[String]], handler: ImportErrorHandler): Unit

    Permalink
    Annotations
    @throws( ... )
  19. def isExtensionName(name: String): Boolean

    Permalink
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. def loadedExtensions: Iterable[ClassManager]

    Permalink

    uses java.lang.Iterable for easy access from Java

    uses java.lang.Iterable for easy access from Java

    Definition Classes
    ExtensionManagerExtensionManager
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. def readExtensionObject(extName: String, typeName: String, value: String): ExtensionObject

    Permalink
    Definition Classes
    ExtensionManagerExtensionManagerExtensionManager
    Annotations
    @throws( classOf[CompilerException] )
  26. def readFromString(source: String): AnyRef

    Permalink
    Definition Classes
    ExtensionManagerExtensionManager
    Annotations
    @throws( classOf[CompilerException] )
  27. def replaceIdentifier(name: String): Primitive

    Permalink

    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
    ExtensionManagerExtensionManager
  28. def reset(): Unit

    Permalink

    Instructs any loaded extensions to unload.

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

    Definition Classes
    ExtensionManagerExtensionManagerExtensionManager
  29. def retrieveObject: AnyRef

    Permalink

    returns

    the stored object

    Definition Classes
    ExtensionManagerExtensionManager
  30. def startFullCompilation(): Unit

    Permalink

    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
    ExtensionManagerExtensionManager
  31. def storeObject(obj: AnyRef): Unit

    Permalink

    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
    ExtensionManagerExtensionManager
  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  33. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. val workspace: ExtendableWorkspace

    Permalink

Inherited from nvm.ExtensionManager

Inherited from api.ExtensionManager

Inherited from core.ExtensionManager

Inherited from AnyRef

Inherited from Any

Ungrouped