
org.dstadler.ctw.utils.BaseTile Maven / Gradle / Ivy
package org.dstadler.ctw.utils;
/**
* Small interface to allow to handle different
* types of tiles via common utility code.
*
* @param
*/
public interface BaseTile {
LatLonRectangle getRectangle();
BaseTile up();
BaseTile down();
BaseTile right();
BaseTile left();
String string();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy