org.nlogo.workspace

ExtensionManager

class ExtensionManager extends ExtensionManager

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

Instance Constructors

  1. new ExtensionManager(workspace: AbstractWorkspace)

Value Members

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

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

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

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

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

    Definition Classes
    Any
  6. def addToLibraryPath(classManager: Any, directory: String): Unit

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

    Definition Classes
    Any
  9. def clearAll(): Unit

  10. def clone(): AnyRef

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

    Definition Classes
    ExtensionManagerExtensionManager
  12. def dumpExtensions(): String

    Definition Classes
    ExtensionManagerExtensionManager
  13. final def eq(arg0: AnyRef): Boolean

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

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

  16. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  17. 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
    ExtensionManagerExtensionManager
  18. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  19. def getExtensionNames(): List[String]

    Definition Classes
    ExtensionManagerExtensionManager
  20. def getFile(path: String): File

    Definition Classes
    ExtensionManagerExtensionManager
  21. def getFullPath(path: String): String

  22. def getJarPaths(): List[String]

    Definition Classes
    ExtensionManagerExtensionManager
  23. def getSource(filename: String): String

    Definition Classes
    ExtensionManagerExtensionManager
  24. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  25. 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
    ExtensionManagerExtensionManager
  26. def importExtensionData(name: String, data: List[Array[String]], handler: ImportErrorHandler): Unit

  27. def isExtensionName(name: String): Boolean

  28. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  29. def loadedExtensions(): Iterable[ClassManager]

    uses java.

    uses java.lang.Iterable for easy access from Java

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

    Definition Classes
    AnyRef
  31. final def notify(): Unit

    Definition Classes
    AnyRef
  32. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  33. def profilingEnabled(): Boolean

    Definition Classes
    ExtensionManagerExtensionManager
  34. def readExtensionObject(extName: String, typeName: String, value: String): ExtensionObject

    Definition Classes
    ExtensionManagerExtensionManager
  35. def readFromString(source: String): AnyRef

    Definition Classes
    ExtensionManagerExtensionManager
  36. 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
    ExtensionManagerExtensionManager
  37. 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
  38. def resolvePath(path: String): String

    Definition Classes
    ExtensionManagerExtensionManager
  39. def resolvePathAsURL(path: String): String

    Definition Classes
    ExtensionManagerExtensionManager
  40. def retrieveObject(): AnyRef

    returns

    the stored object

    Definition Classes
    ExtensionManagerExtensionManager
  41. 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
    ExtensionManagerExtensionManager
  42. def storeObject(obj: Any): 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
    ExtensionManagerExtensionManager
  43. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  44. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  48. def workspace(): AbstractWorkspace

Inherited from ExtensionManager

Inherited from AnyRef

Inherited from Any