t

org.nlogo.nvm

ExtensionManager

trait ExtensionManager extends api.ExtensionManager

Source
ExtensionManager.scala
Linear Supertypes
api.ExtensionManager, core.ExtensionManager, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExtensionManager
  2. ExtensionManager
  3. ExtensionManager
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def anyExtensionsLoaded: Boolean
    Definition Classes
    ExtensionManager
  2. abstract 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.

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

  6. abstract def extensionReporterNames: Set[String]
  7. abstract def finishFullCompilation(): Unit
    Definition Classes
    ExtensionManager
  8. abstract def importExtension(jarPath: String, errors: ErrorSource): Unit
    Definition Classes
    ExtensionManager
  9. abstract 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
  10. abstract def readExtensionObject(extname: String, typeName: String, value: String): ExtensionObject
    Definition Classes
    ExtensionManager → ExtensionManager
  11. abstract def readFromString(src: String): AnyRef
    Definition Classes
    ExtensionManager
  12. abstract def replaceIdentifier(name: String): Primitive
    Definition Classes
    ExtensionManager
  13. 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.

    Definition Classes
    ExtensionManagerExtensionManager
  14. abstract def retrieveObject: AnyRef

    returns

    the stored object

    Definition Classes
    ExtensionManager
  15. abstract def startFullCompilation(): Unit
    Definition Classes
    ExtensionManager
  16. 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

    Definition Classes
    ExtensionManager

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from api.ExtensionManager

Inherited from core.ExtensionManager

Inherited from AnyRef

Inherited from Any

Ungrouped