Source code: org/mitre/cvw/UserClient.java
1 /*
2 * Copyright (c) 1996-2000. The MITRE Corporation (http://www.mitre.org/).
3 * All rights reserved.
4 * CVW comes with ABSOLUTELY NO WARRANTY. See license for details.
5 */
6
7 package org.mitre.cvw;
8
9 import java.awt.Frame;
10 import java.awt.Event;
11 import java.awt.event.KeyEvent;
12 import java.util.Vector;
13
14 /**
15 * UserClient is the interface that allows the ImageApp
16 * object to access either the ProxyWindow or the CVWCoordinator
17 * depending on which JFrame the ImageApp instance lives. <p>.
18 *
19 * @version 1.0, April 28 1998
20 * @author Deb Ercolini
21 */
22 public interface UserClient {
23 /**
24 * FUNCT DESC
25 */
26 abstract public void userMenu(CVWUser user, String funct);
27 abstract public void userClick(String name);
28 }
29
30