1 // Copyright 2003-2005, FreeHEP.
2 package hep.wired.services;
3
4 import java.awt.event.*;
5 import javax.swing.*;
6
7 import org.freehep.application.Application;
8 import org.freehep.xml.io.XMLIO;
9
10 import hep.wired.util.WiredRegistry;
11
12 /***
13 * @author Mark Donszelmann
14 * @version $Id: DelegatingInteractionHandler.java 682 2005-03-14 02:24:52Z duns $
15 */
16 public interface DelegatingInteractionHandler extends InteractionHandler {
17
18 public InteractionHandler getInteractionHandler();
19
20 }