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

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

package org.javacs.lsp;

import com.google.gson.annotations.JsonAdapter;
import org.javacs.lsp.adapters.JsonElementTypeAdapter;

public class CodeLens {
  public Range range;
  public Command command;
  @JsonAdapter(JsonElementTypeAdapter.Factory.class)
  public Object data;

  public CodeLens() {}

  public CodeLens(Range range, Command command, Object data) {
    this.range = range;
    this.command = command;
    this.data = data;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy