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

net.sourceforge.plantuml.braille.Coords Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.braille;

public class Coords {

	private final int x;
	private final int y;

	public Coords(int x, int y) {
		this.x = x;
		this.y = y;
	}

	@Override
	public boolean equals(Object obj) {
		final Coords other = (Coords) obj;
		return this.x == other.x && this.y == other.y;
	}

	@Override
	public int hashCode() {
		return x + y * 8192;
	}

	@Override
	public String toString() {
		return "( " + x + " ; " + y + " )";
	}

	public int getX() {
		return x;
	}

	public int getY() {
		return y;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy