001 // License: GPL. For details, see LICENSE file.
002 package org.openstreetmap.josm.data.projection.proj;
003
004 /**
005 * Factory class that provides a Proj instance.
006 */
007 public interface ProjFactory {
008 Proj createInstance();
009 }