This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
294 additions
and 2 deletions.
- +5 −0 src/java.desktop/share/classes/javax/swing/AbstractButton.java
- +5 −0 src/java.desktop/share/classes/javax/swing/AbstractCellEditor.java
- +4 −0 src/java.desktop/share/classes/javax/swing/AbstractListModel.java
- +4 −0 src/java.desktop/share/classes/javax/swing/AbstractSpinnerModel.java
- +5 −0 src/java.desktop/share/classes/javax/swing/DefaultDesktopManager.java
- +4 −0 src/java.desktop/share/classes/javax/swing/DefaultListCellRenderer.java
- +5 −0 src/java.desktop/share/classes/javax/swing/DefaultListModel.java
- +5 −0 src/java.desktop/share/classes/javax/swing/DefaultListSelectionModel.java
- +5 −0 src/java.desktop/share/classes/javax/swing/DefaultSingleSelectionModel.java
- +5 −0 src/java.desktop/share/classes/javax/swing/FocusManager.java
- +5 −0 src/java.desktop/share/classes/javax/swing/InputVerifier.java
- +4 −0 src/java.desktop/share/classes/javax/swing/InternalFrameFocusTraversalPolicy.java
- +10 −0 src/java.desktop/share/classes/javax/swing/JFormattedTextField.java
- +4 −0 src/java.desktop/share/classes/javax/swing/LookAndFeel.java
- +5 −0 src/java.desktop/share/classes/javax/swing/MenuSelectionManager.java
- +4 −0 src/java.desktop/share/classes/javax/swing/PopupFactory.java
- +5 −0 src/java.desktop/share/classes/javax/swing/RowFilter.java
- +10 −1 src/java.desktop/share/classes/javax/swing/ScrollPaneLayout.java
- +5 −0 src/java.desktop/share/classes/javax/swing/UIManager.java
- +5 −0 src/java.desktop/share/classes/javax/swing/ViewportLayout.java
- +5 −0 src/java.desktop/share/classes/javax/swing/border/AbstractBorder.java
- +5 −0 src/java.desktop/share/classes/javax/swing/colorchooser/AbstractColorChooserPanel.java
- +5 −0 src/java.desktop/share/classes/javax/swing/event/EventListenerList.java
- +5 −0 src/java.desktop/share/classes/javax/swing/event/InternalFrameAdapter.java
- +4 −0 src/java.desktop/share/classes/javax/swing/event/MouseInputAdapter.java
- +5 −0 src/java.desktop/share/classes/javax/swing/filechooser/FileFilter.java
- +5 −0 src/java.desktop/share/classes/javax/swing/filechooser/FileView.java
- +5 −0 src/java.desktop/share/classes/javax/swing/table/AbstractTableModel.java
- +4 −0 src/java.desktop/share/classes/javax/swing/table/DefaultTableCellRenderer.java
- +5 −0 src/java.desktop/share/classes/javax/swing/table/TableStringConverter.java
- +4 −1 src/java.desktop/share/classes/javax/swing/text/DefaultTextUI.java
- +10 −0 src/java.desktop/share/classes/javax/swing/text/DocumentFilter.java
- +5 −0 src/java.desktop/share/classes/javax/swing/text/FlowView.java
- +5 −0 src/java.desktop/share/classes/javax/swing/text/GlyphView.java
- +10 −0 src/java.desktop/share/classes/javax/swing/text/LayeredHighlighter.java
- +10 −0 src/java.desktop/share/classes/javax/swing/text/NavigationFilter.java
- +5 −0 src/java.desktop/share/classes/javax/swing/text/Utilities.java
- +5 −0 src/java.desktop/share/classes/javax/swing/text/html/HTML.java
- +47 −0 src/java.desktop/share/classes/javax/swing/text/html/HTMLDocument.java
- +19 −0 src/java.desktop/share/classes/javax/swing/text/html/HTMLEditorKit.java
- +9 −0 src/java.desktop/share/classes/javax/swing/tree/AbstractLayoutCache.java
- +4 −0 src/java.desktop/share/classes/javax/swing/undo/CannotRedoException.java
- +4 −0 src/java.desktop/share/classes/javax/swing/undo/CannotUndoException.java
- +5 −0 src/jdk.unsupported.desktop/share/classes/jdk/swing/interop/SwingInterOpUtils.java
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -151,6 +151,10 @@ | ||
*/ | ||
public abstract class LookAndFeel | ||
{ | ||
/** | ||
* Constructor for subclasses to call. | ||
*/ | ||
protected LookAndFeel() {} | ||
|
||
/** | ||
* Convenience method for setting a component's foreground | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -39,4 +39,8 @@ | ||
*/ | ||
public abstract class MouseInputAdapter extends MouseAdapter | ||
implements MouseInputListener { | ||
/** | ||
* Constructor for subclasses to call. | ||
*/ | ||
protected MouseInputAdapter() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -37,6 +37,9 @@ | ||
*/ | ||
@Deprecated | ||
public abstract class DefaultTextUI extends BasicTextUI { | ||
/** | ||
* Constructor for subclasses to call. | ||
*/ | ||
protected DefaultTextUI() {} | ||
|
||
} |
Oops, something went wrong.