t

org.nlogo.nvm

FileManager

trait FileManager extends AnyRef

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

Abstract Value Members

  1. abstract def attachPrefix(filename: String): String
    Annotations
    @throws( ... )
  2. abstract def closeAllFiles(): Unit
    Annotations
    @throws( classOf[java.io.IOException] )
  3. abstract def closeCurrentFile(): Unit
    Annotations
    @throws( classOf[java.io.IOException] )
  4. abstract def currentFile: Option[File]
  5. abstract def deleteFile(filename: String): Unit
    Annotations
    @throws( classOf[java.io.IOException] )
  6. abstract def ensureMode(openMode: FileMode): Unit
    Annotations
    @throws( classOf[java.io.IOException] )
  7. abstract def eof: Boolean
    Annotations
    @throws( classOf[java.io.IOException] )
  8. abstract def fileExists(filePath: String): Boolean
    Annotations
    @throws( classOf[java.io.IOException] )
  9. abstract def findOpenFile(fileName: String): Option[File]
  10. abstract def flushCurrentFile(): Unit
    Annotations
    @throws( classOf[java.io.IOException] )
  11. abstract def getErrorInfo: String
    Annotations
    @throws( classOf[java.io.IOException] )
  12. abstract def getFile(newFileName: String): File
  13. abstract def handleModelChange(): Unit
  14. abstract def hasCurrentFile: Boolean
  15. abstract def openFile(newFileName: String): Unit
    Annotations
    @throws( classOf[java.io.IOException] )
  16. abstract def prefix: String
  17. abstract def read(world: World): AnyRef
    Annotations
    @throws( classOf[java.io.IOException] )
  18. abstract def readChars(num: Int): String
    Annotations
    @throws( classOf[java.io.IOException] )
  19. abstract def readLine(): String
    Annotations
    @throws( classOf[java.io.IOException] )
  20. abstract def setPrefix(newPrefix: URL): Unit
  21. abstract def setPrefix(newPrefix: String): Unit
  22. abstract def writeOutputObject(oo: OutputObject): Unit