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