source: josm/trunk/src/org/openstreetmap/josm/data/projection/proj/ProjFactory.java

Last change on this file was 10600, checked in by Don-vip, 8 years ago

see #11390 - sonar - squid:S1609 - Java 8: @FunctionalInterface annotation should be used to flag Single Abstract Method interfaces

  • Property svn:eol-style set to native
File size: 384 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.projection.proj;
3
4/**
5 * Factory class that provides a Proj instance.
6 * @since 5227 (creation)
7 * @since 10600 (functional interface)
8 */
9@FunctionalInterface
10public interface ProjFactory {
11 /**
12 * Creates a Proj instance.
13 * @return a Proj instance
14 */
15 Proj createInstance();
16}
Note: See TracBrowser for help on using the repository browser.