001package org.openstreetmap.gui.jmapviewer.interfaces;
002
003//License: GPL.
004
005import java.util.EventListener;
006
007import org.openstreetmap.gui.jmapviewer.events.JMVCommandEvent;
008
009/**
010 * Must be implemented for processing commands while user
011 * interacts with map viewer.
012 *
013 * @author Jason Huntley
014 *
015 */
016public interface JMapViewerEventListener extends EventListener {
017    public void processCommand(JMVCommandEvent command);
018}