home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / swing / Action.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  1018 b   |  31 lines

  1. package javax.swing;
  2.  
  3. import java.awt.event.ActionListener;
  4. import java.beans.PropertyChangeListener;
  5.  
  6. public interface Action extends ActionListener {
  7.    String DEFAULT = "Default";
  8.    String NAME = "Name";
  9.    String SHORT_DESCRIPTION = "ShortDescription";
  10.    String LONG_DESCRIPTION = "LongDescription";
  11.    String SMALL_ICON = "SmallIcon";
  12.    String ACTION_COMMAND_KEY = "ActionCommandKey";
  13.    String ACCELERATOR_KEY = "AcceleratorKey";
  14.    String MNEMONIC_KEY = "MnemonicKey";
  15.    String SELECTED_KEY = "SwingSelectedKey";
  16.    String DISPLAYED_MNEMONIC_INDEX_KEY = "SwingDisplayedMnemonicIndexKey";
  17.    String LARGE_ICON_KEY = "SwingLargeIconKey";
  18.  
  19.    Object getValue(String var1);
  20.  
  21.    void putValue(String var1, Object var2);
  22.  
  23.    void setEnabled(boolean var1);
  24.  
  25.    boolean isEnabled();
  26.  
  27.    void addPropertyChangeListener(PropertyChangeListener var1);
  28.  
  29.    void removePropertyChangeListener(PropertyChangeListener var1);
  30. }
  31.