Class ModelTextDocuments<T>

    • Constructor Detail

      • ModelTextDocuments

        public ModelTextDocuments​(BiFunction<TextDocument,​org.eclipse.lsp4j.jsonrpc.CancelChecker,​T> parse)
    • Method Detail

      • getExistingModel

        public T getExistingModel​(org.eclipse.lsp4j.TextDocumentIdentifier documentIdentifier)
        Returns the model of the given text document Uri and null otherwise.
        Parameters:
        uri - the text document uri.
        Returns:
        the model of the given text document Uri and null otherwise.
      • getExistingModel

        public T getExistingModel​(String uri)
        Returns the model of the given text document Uri and null otherwise.
        Parameters:
        uri - the text document uri.
        Returns:
        the model of the given text document Uri and null otherwise.
      • getModel

        public T getModel​(org.eclipse.lsp4j.TextDocumentIdentifier documentIdentifier)
        Returns the model of the given text document Uri and null otherwise.
        Parameters:
        uri - the text document uri.
        Returns:
        the model of the given text document Uri and null otherwise.
      • getModel

        public T getModel​(String uri)
        Returns the model of the given text document Uri and null otherwise.
        Parameters:
        uri - the text document uri.
        Returns:
        the model of the given text document Uri and null otherwise.
      • computeModelAsync

        public <R> CompletableFuture<R> computeModelAsync​(org.eclipse.lsp4j.TextDocumentIdentifier documentIdentifier,
                                                          BiFunction<T,​org.eclipse.lsp4j.jsonrpc.CancelChecker,​R> code)
        Get or parse the model and apply the code function which expects the model.
        Type Parameters:
        R -
        Parameters:
        documentIdentifier - the document indentifier.
        code - a bi function that accepts the parsedmodel and CancelChecker and returns the to be computed value
        Returns:
        the DOM Document for a given uri in a future and then apply the given function.
      • computeModelAsyncCompose

        public <R> CompletableFuture<R> computeModelAsyncCompose​(org.eclipse.lsp4j.TextDocumentIdentifier documentIdentifier,
                                                                 BiFunction<T,​org.eclipse.lsp4j.jsonrpc.CancelChecker,​CompletableFuture<R>> code)
        Get or parse the model and apply the code function which expects the model.
        Type Parameters:
        R -
        Parameters:
        documentIdentifier - the document identifier.
        code - a bi function that accepts the parsed model and CancelChecker and returns as future the to be computed value
        Returns:
        the model for a given uri in a future and then apply the given function.