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

com.sourcegraph.scip_semanticdb.SymbolRelationship Maven / Gradle / Ivy

package com.sourcegraph.scip_semanticdb;

public class SymbolRelationship {
  public final String from;
  public final String to;

  public SymbolRelationship(String from, String to) {
    this.from = from;
    this.to = to;
  }

  public String getFrom() {
    return from;
  }

  public String getTo() {
    return to;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy