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:
Michael Koch 2003-10-12 13:20:50 +00:00 committed by Michael Koch
parent f5677b1560
commit 134fee658d
22 changed files with 174 additions and 149 deletions

View file

@ -44,7 +44,7 @@ import java.awt.Insets;
/**
* An interface for decorative or spacing borders around a Component.
* An public interface for decorative or spacing borders around a Component.
*
* <p>To reduce memory consumption, several Components may share a
* single Border instance. {@link javax.swing.BorderFactory} is a
@ -77,7 +77,7 @@ public interface Border
* @param width the width of the available area for painting the border.
* @param height the height of the available area for painting the border.
*/
public void paintBorder(Component c, Graphics g,
void paintBorder(Component c, Graphics g,
int x, int y, int width, int height);
@ -90,7 +90,7 @@ public interface Border
* <code>top</code> and <code>bottom</code> fields indicate the
* width of the border at the respective edge.
*/
public Insets getBorderInsets(Component c);
Insets getBorderInsets(Component c);
/**
@ -101,5 +101,5 @@ public interface Border
* <code>false</code> if some pixels of the background
* can shine through the border.
*/
public boolean isBorderOpaque();
boolean isBorderOpaque();
}