Class SemanticTokensEdit


  • public class SemanticTokensEdit
    extends java.lang.Object
    Since 3.16.0
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.util.List<java.lang.Integer> getData()
      The elements to insert.
      int getDeleteCount()
      The count of elements to remove.
      int getStart()
      The start offset of the edit.
      int hashCode()  
      void setData​(java.util.List<java.lang.Integer> data)
      The elements to insert.
      void setDeleteCount​(int deleteCount)
      The count of elements to remove.
      void setStart​(int start)
      The start offset of the edit.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • SemanticTokensEdit

        public SemanticTokensEdit()
      • SemanticTokensEdit

        public SemanticTokensEdit​(int start,
                                  int deleteCount,
                                  java.util.List<java.lang.Integer> data)
    • Method Detail

      • getStart

        public int getStart()
        The start offset of the edit.
      • setStart

        public void setStart​(int start)
        The start offset of the edit.
      • getDeleteCount

        public int getDeleteCount()
        The count of elements to remove.
      • setDeleteCount

        public void setDeleteCount​(int deleteCount)
        The count of elements to remove.
      • getData

        public java.util.List<java.lang.Integer> getData()
        The elements to insert.
      • setData

        public void setData​(java.util.List<java.lang.Integer> data)
        The elements to insert.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object