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

org.hl7.fhir.utilities.json.model.JsonComment Maven / Gradle / Ivy

There is a newer version: 6.4.1
Show newest version
package org.hl7.fhir.utilities.json.model;

public class JsonComment {
  private JsonLocationData start;
  private JsonLocationData end;
  private String content;
  
  public JsonComment(String content, JsonLocationData start, JsonLocationData end) {
    super();
    this.content = content;
    this.start = start;
    this.end = end;
  }

  public JsonLocationData getStart() {
    return start;
  }

  public JsonLocationData getEnd() {
    return end;
  }

  public String getContent() {
    return content;
  }
  
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy