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

com.graphql_java_generator.client.response.Location Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
/**
 * 
 */
package com.graphql_java_generator.client.response;

/**
 * @author etienne-sf
 */
public class Location {

	public int line;
	public int column;
	public String sourceName;

	@Override
	public String toString() {
		return "line=" + line + ", column=" + column + (sourceName == null ? "" : " of " + sourceName);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy