1 /*
2 * getMap is using to assiciate a JPanel with a key (each clickable zone will be defined by this key)
3 */
4 package org.lsst.ccs.utilities.zonesui;
5
6 import javax.swing.JPanel;
7
8 /**
9 *
10 * @author Pascal Durieu
11 */
12 public interface InteractionProducer {
13 JPanel getInteraction (String key);
14 }