Packages

c

org.mulesoft.als.server.textsync

TextDocumentManager

class TextDocumentManager extends TextDocumentSyncConsumer

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TextDocumentManager
  2. TextDocumentSyncConsumer
  3. InitializableModule
  4. Initializable
  5. ConfigHandler
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TextDocumentManager(logger: Logger, platform: Platform)

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 applyConfig(config: Option[SynchronizationClientCapabilities]): Either[TextDocumentSyncKind, TextDocumentSyncOptions]
    Definition Classes
    TextDocumentManagerConfigHandler
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def determineLanguage(url: String, text: String): String
  8. def determineSyntax(url: String, text: String): String
  9. def didChange(params: DidChangeTextDocumentParams): Unit

    The document change notification is sent from the client to the server to signal changes to a text document.

    The document change notification is sent from the client to the server to signal changes to a text document.

    Registration Options: TextDocumentChangeRegistrationOptions

    Definition Classes
    TextDocumentManagerTextDocumentSyncConsumer
  10. def didClose(params: DidCloseTextDocumentParams): Unit

    The document close notification is sent from the client to the server when the document got closed in the client.

    The document close notification is sent from the client to the server when the document got closed in the client. The document's truth now exists where the document's uri points to (e.g. if the document's uri is a file uri the truth now exists on disk).

    Registration Options: TextDocumentRegistrationOptions

    Definition Classes
    TextDocumentManagerTextDocumentSyncConsumer
  11. def didOpen(params: DidOpenTextDocumentParams): Unit

    The document open notification is sent from the client to the server to signal newly opened text documents.

    The document open notification is sent from the client to the server to signal newly opened text documents. The document's truth is now managed by the client and the server must not try to read the document's truth using the document's uri.

    Registration Options: TextDocumentRegistrationOptions

    Definition Classes
    TextDocumentManagerTextDocumentSyncConsumer
  12. var documentChangeExecutor: Option[IDocumentChangeExecutor]
  13. var documentChangeListeners: Set[(ChangedDocument) ⇒ Unit]
  14. var documentCloseListeners: Set[(String) ⇒ Unit]
  15. var documentOpenListeners: Set[(OpenedDocument) ⇒ Unit]
  16. def documentWasChanged(document: ChangedDocument): Unit
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  21. def getDocumentChangeExecutor: Option[IDocumentChangeExecutor]
  22. def getTextDocument(uri: String): Option[TextDocument]
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  24. def initialize(): Future[Unit]
    Definition Classes
    TextDocumentManagerInitializable
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  29. def onChangeDocument(listener: (ChangedDocument) ⇒ Unit, unsubscribe: Boolean = false): Unit
  30. def onChangePosition(uri: String, position: Int): Unit
  31. def onCloseDocument(uri: String): Unit
  32. def onClosedDocument(listener: (String) ⇒ Unit, unsubscribe: Boolean = false): Unit
  33. def onOpenDocument(document: OpenedDocument): Unit
  34. def onOpenedDocument(listener: (OpenedDocument) ⇒ Unit, unsubscribe: Boolean = false): Unit
  35. def setDocumentChangeExecutor(executor: IDocumentChangeExecutor): Unit
  36. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  37. def toString(): String
    Definition Classes
    AnyRef → Any
  38. val type: TextDocumentSyncConfigType.type
    Definition Classes
    TextDocumentManagerConfigHandler
  39. var uriToEditor: Map[String, TextDocument]
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Ungrouped