001 package org.openstreetmap.gui.jmapviewer.interfaces; 002 003 //License: GPL. 004 005 import java.util.EventListener; 006 007 import 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 */ 016 public interface JMapViewerEventListener extends EventListener { 017 public void processCommand(JMVCommandEvent command); 018 }