source: josm/trunk/src/org/openstreetmap/josm/data/IQuadBucketType.java

Last change on this file was 17459, checked in by Don-vip, 3 years ago

fix #20363 - Extract necessary method for QuadBuckets into separate interface (patch by taylor.smock, modified)

  • Property svn:eol-style set to native
File size: 481 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data;
3
4import org.openstreetmap.josm.data.osm.BBox;
5import org.openstreetmap.josm.data.osm.QuadBuckets;
6
7/**
8 * The minimum necessary interface to use {@link QuadBuckets}.
9 * @author Taylor Smock
10 * @since 17459
11 */
12@FunctionalInterface
13public interface IQuadBucketType {
14 /**
15 * Fetches the bounding box of the primitive.
16 * @return Bounding box of the object
17 */
18 BBox getBBox();
19}
Note: See TracBrowser for help on using the repository browser.