Class SynchronizationCapabilities

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.lang.Boolean getDidSave()
      The client supports did save notifications.
      java.lang.Boolean getWillSave()
      The client supports sending will save notifications.
      java.lang.Boolean getWillSaveWaitUntil()
      The client supports sending a will save request and waits for a response providing text edits which will be applied to the document before it is saved.
      int hashCode()  
      void setDidSave​(java.lang.Boolean didSave)
      The client supports did save notifications.
      void setWillSave​(java.lang.Boolean willSave)
      The client supports sending will save notifications.
      void setWillSaveWaitUntil​(java.lang.Boolean willSaveWaitUntil)
      The client supports sending a will save request and waits for a response providing text edits which will be applied to the document before it is saved.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • SynchronizationCapabilities

        public SynchronizationCapabilities()
      • SynchronizationCapabilities

        public SynchronizationCapabilities​(java.lang.Boolean willSave,
                                           java.lang.Boolean willSaveWaitUntil,
                                           java.lang.Boolean didSave)
      • SynchronizationCapabilities

        public SynchronizationCapabilities​(java.lang.Boolean willSave,
                                           java.lang.Boolean willSaveWaitUntil,
                                           java.lang.Boolean didSave,
                                           java.lang.Boolean dynamicRegistration)
    • Method Detail

      • getWillSave

        public java.lang.Boolean getWillSave()
        The client supports sending will save notifications.
      • setWillSave

        public void setWillSave​(java.lang.Boolean willSave)
        The client supports sending will save notifications.
      • getWillSaveWaitUntil

        public java.lang.Boolean getWillSaveWaitUntil()
        The client supports sending a will save request and waits for a response providing text edits which will be applied to the document before it is saved.
      • setWillSaveWaitUntil

        public void setWillSaveWaitUntil​(java.lang.Boolean willSaveWaitUntil)
        The client supports sending a will save request and waits for a response providing text edits which will be applied to the document before it is saved.
      • getDidSave

        public java.lang.Boolean getDidSave()
        The client supports did save notifications.
      • setDidSave

        public void setDidSave​(java.lang.Boolean didSave)
        The client supports did save notifications.