Action.java, [...]: Removed redundant modifiers.
2003-10-12 Michael Koch <konqueror@gmx.de> * javax/swing/Action.java, javax/swing/BoundedRangeModel.java, javax/swing/CellEditor.java, javax/swing/ComboBoxEditor.java, javax/swing/ComboBoxModel.java, javax/swing/DesktopManager.java, javax/swing/JComboBox.java, javax/swing/ListCellRenderer.java, javax/swing/ListSelectionModel.java, javax/swing/MenuElement.java, javax/swing/MutableComboBoxModel.java, javax/swing/Renderer.java, javax/swing/RootPaneContainer.java, javax/swing/ScrollPaneConstants.java, javax/swing/SingleSelectionModel.java, javax/swing/SpinnerModel.java, javax/swing/SwingConstants.java, javax/swing/UIDefaults.java, javax/swing/WindowConstants.java, javax/swing/border/Border.java, javax/swing/colorchooser/ColorSelectionModel.java: Removed redundant modifiers. From-SVN: r72394
This commit is contained in:
parent
f5677b1560
commit
134fee658d
22 changed files with 174 additions and 149 deletions
|
@ -56,42 +56,42 @@ public interface Action extends ActionListener {
|
|||
/**
|
||||
* DEFAULT
|
||||
*/
|
||||
public static final String DEFAULT = "Default";
|
||||
String DEFAULT = "Default";
|
||||
|
||||
/**
|
||||
* LONG_DESCRIPTION
|
||||
*/
|
||||
public static final String LONG_DESCRIPTION = "LongDescription";
|
||||
String LONG_DESCRIPTION = "LongDescription";
|
||||
|
||||
/**
|
||||
* NAME
|
||||
*/
|
||||
public static final String NAME = "Name";
|
||||
String NAME = "Name";
|
||||
|
||||
/**
|
||||
* SHORT_DESCRIPTION
|
||||
*/
|
||||
public static final String SHORT_DESCRIPTION = "ShortDescription";
|
||||
String SHORT_DESCRIPTION = "ShortDescription";
|
||||
|
||||
/**
|
||||
* SMALL_ICON
|
||||
*/
|
||||
public static final String SMALL_ICON = "SmallIcon";
|
||||
String SMALL_ICON = "SmallIcon";
|
||||
|
||||
/**
|
||||
* ACCELERATOR_KEY
|
||||
*/
|
||||
public static final String ACCELERATOR_KEY = "AcceleratorKey";
|
||||
String ACCELERATOR_KEY = "AcceleratorKey";
|
||||
|
||||
/**
|
||||
* ACTION_COMMAND_KEY
|
||||
*/
|
||||
public static final String ACTION_COMMAND_KEY = "ActionCommandKey";
|
||||
String ACTION_COMMAND_KEY = "ActionCommandKey";
|
||||
|
||||
/**
|
||||
* MNEMONIC_KEY
|
||||
*/
|
||||
public static final String MNEMONIC_KEY = "MnemonicKey";
|
||||
String MNEMONIC_KEY = "MnemonicKey";
|
||||
|
||||
|
||||
//-------------------------------------------------------------
|
||||
|
@ -103,38 +103,38 @@ public interface Action extends ActionListener {
|
|||
* @param key TODO
|
||||
* @returns TODO
|
||||
*/
|
||||
public Object getValue(String key);
|
||||
Object getValue(String key);
|
||||
|
||||
/**
|
||||
* setValue
|
||||
* @param key TODO
|
||||
* @param value TODO
|
||||
*/
|
||||
public void putValue(String key, Object value);
|
||||
void putValue(String key, Object value);
|
||||
|
||||
/**
|
||||
* isEnabled
|
||||
* @returns TODO
|
||||
*/
|
||||
public boolean isEnabled();
|
||||
boolean isEnabled();
|
||||
|
||||
/**
|
||||
* setEnabled
|
||||
* @param b TODO
|
||||
*/
|
||||
public void setEnabled(boolean b);
|
||||
void setEnabled(boolean b);
|
||||
|
||||
/**
|
||||
* addPropertyChangeListener
|
||||
* @param listener TODO
|
||||
*/
|
||||
public void addPropertyChangeListener(PropertyChangeListener listener);
|
||||
void addPropertyChangeListener(PropertyChangeListener listener);
|
||||
|
||||
/**
|
||||
* removePropertyChangeListener
|
||||
* @param listener TODO
|
||||
*/
|
||||
public void removePropertyChangeListener(PropertyChangeListener listener);
|
||||
void removePropertyChangeListener(PropertyChangeListener listener);
|
||||
|
||||
|
||||
} // Action
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue