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

graphql.language.Comment Maven / Gradle / Ivy

package graphql.language;

public class Comment {
    public final String content;
    public final SourceLocation sourceLocation;

    public Comment(String content, SourceLocation sourceLocation) {
        this.content = content;
        this.sourceLocation = sourceLocation;
    }

    public String getContent() {
        return content;
    }

    public SourceLocation getSourceLocation() {
        return sourceLocation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy