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 JLineHistory extends History with History

A straight scalafication of the jline interface which mixes in the sparse jline-independent one too.

Linear Supertypes
History, History, java.lang.Iterable[Entry], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JLineHistory
  2. History
  3. History
  4. Iterable
  5. AnyRef
  6. 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 moveTo(index: Int): Boolean
    Definition Classes
    JLineHistory → History
  12. abstract def moveToEnd(): Unit
    Definition Classes
    JLineHistory → History
  13. abstract def moveToFirst(): Boolean
    Definition Classes
    JLineHistory → History
  14. abstract def moveToLast(): Boolean
    Definition Classes
    JLineHistory → History
  15. abstract def next(): Boolean
    Definition Classes
    JLineHistory → History
  16. abstract def previous(): Boolean
    Definition Classes
    JLineHistory → History
  17. abstract def remove(arg0: Int): CharSequence
    Definition Classes
    History
  18. abstract def removeFirst(): CharSequence
    Definition Classes
    History
  19. abstract def removeLast(): CharSequence
    Definition Classes
    History
  20. abstract def replace(item: CharSequence): Unit
    Definition Classes
    JLineHistory → History
  21. abstract def set(arg0: Int, arg1: CharSequence): Unit
    Definition Classes
    History
  22. 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def asStrings(from: Int, to: Int): List[String]
    Definition Classes
    History
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def forEach(arg0: Consumer[_ >: Entry]): Unit
    Definition Classes
    Iterable
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def historicize(text: String): Boolean
    Definition Classes
    JLineHistoryHistory
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. def spliterator(): Spliterator[Entry]
    Definition Classes
    Iterable
  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from History

Inherited from History

Inherited from java.lang.Iterable[Entry]

Inherited from AnyRef

Inherited from Any

Ungrouped