home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / swing / text / Keymap.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  826 b   |  33 lines

  1. package javax.swing.text;
  2.  
  3. import javax.swing.Action;
  4. import javax.swing.KeyStroke;
  5.  
  6. public interface Keymap {
  7.    String getName();
  8.  
  9.    Action getDefaultAction();
  10.  
  11.    void setDefaultAction(Action var1);
  12.  
  13.    Action getAction(KeyStroke var1);
  14.  
  15.    KeyStroke[] getBoundKeyStrokes();
  16.  
  17.    Action[] getBoundActions();
  18.  
  19.    KeyStroke[] getKeyStrokesForAction(Action var1);
  20.  
  21.    boolean isLocallyDefined(KeyStroke var1);
  22.  
  23.    void addActionForKeyStroke(KeyStroke var1, Action var2);
  24.  
  25.    void removeKeyStrokeBinding(KeyStroke var1);
  26.  
  27.    void removeBindings();
  28.  
  29.    Keymap getResolveParent();
  30.  
  31.    void setResolveParent(Keymap var1);
  32. }
  33.