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(platform: Platform, logger: Logger)

Type Members

  1. case class UriToEditor() extends Product with Serializable

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

Ungrouped