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

graphql.language.AbstractNode Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.language;


public abstract class AbstractNode implements Node {

    private SourceLocation sourceLocation;


    public void setSourceLocation(SourceLocation sourceLocation) {
        this.sourceLocation = sourceLocation;
    }

    @Override
    public SourceLocation getSourceLocation() {
        return sourceLocation;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy