Packages

  • package root
    Definition Classes
    root
  • package scala
    Definition Classes
    root
  • package tools
    Definition Classes
    scala
  • package nsc
    Definition Classes
    tools
  • package interpreter

    The main REPL related classes and values are as follows.

    The main REPL related classes and values are as follows. In addition to standard compiler classes Global and Settings, there are:

    History: an interface for session history. Completion: an interface for tab completion. ILoop (formerly InterpreterLoop): The umbrella class for a session. IMain (formerly Interpreter): Handles the evolving state of the session and handles submitting code to the compiler and handling the output. InteractiveReader: how ILoop obtains input. History: an interface for session history. Completion: an interface for tab completion. Power: a repository for more advanced/experimental features.

    ILoop contains { in: InteractiveReader, intp: IMain, settings: Settings, power: Power } InteractiveReader contains { history: History, completion: Completion } IMain contains { global: Global }

    Definition Classes
    nsc
  • package jline
    Definition Classes
    interpreter
  • FileBackedHistory
  • InteractiveReader
  • JLineDelimiter
  • JLineHistory

trait FileBackedHistory extends JLineHistory with PersistentHistory

TODO: file locking.

Linear Supertypes
PersistentHistory, JLineHistory, History, History, java.lang.Iterable[Entry], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FileBackedHistory
  2. PersistentHistory
  3. JLineHistory
  4. History
  5. History
  6. Iterable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def add(line: CharSequence): Unit
    Definition Classes
    JLineHistory → History
  2. abstract def asStrings: List[String]
    Definition Classes
    History
  3. abstract def clear(): Unit
    Definition Classes
    JLineHistory → History
  4. abstract def current(): CharSequence
    Definition Classes
    JLineHistory → History
  5. abstract def entries(): ListIterator[Entry]
    Definition Classes
    JLineHistory → History
  6. abstract def entries(index: Int): ListIterator[Entry]
    Definition Classes
    JLineHistory → History
  7. abstract def get(index: Int): CharSequence
    Definition Classes
    JLineHistory → History
  8. abstract def index: Int
    Definition Classes
    JLineHistoryHistory → History
  9. abstract def isEmpty(): Boolean
    Definition Classes
    JLineHistory → History
  10. abstract def iterator(): java.util.Iterator[Entry]
    Definition Classes
    JLineHistory → History → Iterable
  11. abstract def maxSize: Int
  12. abstract def moveTo(index: Int): Boolean
    Definition Classes
    JLineHistory → History
  13. abstract def moveToEnd(): Unit
    Definition Classes
    JLineHistory → History
  14. abstract def moveToFirst(): Boolean
    Definition Classes
    JLineHistory → History
  15. abstract def moveToLast(): Boolean
    Definition Classes
    JLineHistory → History
  16. abstract def next(): Boolean
    Definition Classes
    JLineHistory → History
  17. abstract def previous(): Boolean
    Definition Classes
    JLineHistory → History
  18. abstract def remove(arg0: Int): CharSequence
    Definition Classes
    History
  19. abstract def removeFirst(): CharSequence
    Definition Classes
    History
  20. abstract def removeLast(): CharSequence
    Definition Classes
    History
  21. abstract def replace(item: CharSequence): Unit
    Definition Classes
    JLineHistory → History
  22. abstract def set(arg0: Int, arg1: CharSequence): Unit
    Definition Classes
    History
  23. abstract def size: Int
    Definition Classes
    JLineHistoryHistory → History

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. def addLineToFile(item: CharSequence): Unit
  5. def append(lines: String*): Unit

    Append one or more lines to the history file.

    Append one or more lines to the history file.

    Attributes
    protected
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def asStrings(from: Int, to: Int): List[String]
    Definition Classes
    History
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def flush(): Unit
    Definition Classes
    FileBackedHistory → PersistentHistory
  13. def forEach(arg0: Consumer[_ >: Entry]): Unit
    Definition Classes
    Iterable
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def historicize(text: String): Boolean
    Definition Classes
    JLineHistoryHistory
  17. lazy val historyFile: File
    Attributes
    protected
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def load(): Unit
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def purge(): Unit
    Definition Classes
    FileBackedHistory → PersistentHistory
  24. def spliterator(): Spliterator[Entry]
    Definition Classes
    Iterable
  25. def sync(): Unit

    Overwrites the history file with the current memory.

    Overwrites the history file with the current memory.

    Attributes
    protected
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  31. def withoutSaving[T](op: ⇒ T): T

Inherited from PersistentHistory

Inherited from JLineHistory

Inherited from History

Inherited from History

Inherited from java.lang.Iterable[Entry]

Inherited from AnyRef

Inherited from Any

Ungrouped