01: // OBSOLETE
02: // Just to keep to old rife gui code running
03:
04: /*
05: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com>
06: * Distributed under the terms of either:
07: * - the common development and distribution license (CDDL), v1.0; or
08: * - the GNU Lesser General Public License, v2.1 or later
09: * $Id: DynamicMenuAction.java 3634 2007-01-08 21:42:24Z gbevin $
10: */
11: package com.uwyn.rife.gui.old;
12:
13: import javax.swing.JMenuItem;
14:
15: public interface DynamicMenuAction {
16: public void execute(JMenuItem menuItem);
17: }
|