Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/mitre/cvw/CmdEntryClient.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.util.Vector;
10  import javax.swing.JRootPane;
11  
12  /**
13   * CmdEntryClient is the interface that allows the CmdEntry 
14   * object to access either the ProxyWindow or the CVWCoordinator 
15   * depending on which JFrame the CmdMudEntry instance lives. <p>.
16   *
17   * @version 1.0, April 28 1998
18   * @author  Deb Ercolini
19   */
20  public interface CmdEntryClient {
21      abstract public void sendCommand(int cmd); 
22      abstract public Vector getCmdChoiceMenuItems();
23      abstract public JRootPane getRootPane();
24      abstract public void setEmacsCmds(boolean b);
25      abstract public RoomScrollback getRoomScrollback();
26      abstract public void addCmdEntry(int cmd, String per);
27  }
28  
29