All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javacs.lsp.Hover Maven / Gradle / Ivy

package org.javacs.lsp;

import java.util.List;

public class Hover {
  public List contents;
  public Range range;

  public Hover() {}

  public Hover(List contents) {
    this.contents = contents;
  }

  public Hover(List contents, Range range) {
    this.contents = contents;
    this.range = range;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy