001package org.hl7.fhir.utilities.json.model;
002
003public class JsonComment {
004  private JsonLocationData start;
005  private JsonLocationData end;
006  private String content;
007  
008  public JsonComment(String content, JsonLocationData start, JsonLocationData end) {
009    super();
010    this.content = content;
011    this.start = start;
012    this.end = end;
013  }
014
015  public JsonLocationData getStart() {
016    return start;
017  }
018
019  public JsonLocationData getEnd() {
020    return end;
021  }
022
023  public String getContent() {
024    return content;
025  }
026  
027  
028}