// ********************************************************************** // // // // BBN Technologies // 10 Moulton Street // Cambridge, MA 02138 // (617) 873-8000 // // Copyright (C) BBNT Solutions LLC. All rights reserved. // // // ********************************************************************** // // $Source: /cvs/openmap/openmap/src/openmap/com/bbn/openmap/layer/location/db/LocationData.java,v $ // $RCSfile: LocationData.java,v $ // $Revision: 1.4 $ // $Date: 2004/10/14 18:18:18 $ // $Author: dietrick $ // // ********************************************************************** package com.bbn.openmap.layer.location.generic; import com.bbn.openmap.omGraphics.OMGraphic; import com.bbn.openmap.layer.location.Location; import java.awt.Image; /** * This class is responsible for producing LocationData */ public interface LocationDataFactory { public static int IDX_LATNAME = 0; public static int IDX_LONNAME = 1; public String[] getLatLonNameArr(); public LocationDataRecord makeLocationData(); public Location makeLocation(float latitude, float longitude, String name, Image locationMarker); public Location makeLocation(float latitude, float longitude, String name, String locationMarker); }