-
Bug
-
Resolution: Fixed
-
P3
-
15, 16, 17
-
b16
https://docs.oracle.com/en/java/javase/15/docs/api/java.desktop/javax/swing/JComponent.html#updateUI()
is the following
===============
Resets the UI property to a value from the current look and feel. JComponent subclasses must override this method like this:
public void updateUI() {
setUI((SliderUI)UIManager.getUI(this);
}
===============
It's unclear from the spec that the original implementation of the method does nothing. This deserves to be mentioned explicitly.
- csr for
-
JDK-8263845 Specification of JComponent::updateUI should document that the default implementation does nothing
- Closed
- is cloned by
-
JDK-8263481 Specification of JComponent::setDefaultLocale doesn't mention that passing 'null' restores VM's default locale
- Resolved
-
JDK-8263766 Confusing specification of JEditorPaneAccessibleHypertextSupport constructor
- Resolved
-
JDK-8263768 JFormattedTextField.AbstractFormatter.getDocumentFilter()/getNavigationFilter() spec doesn't mention what the default impls return and what does it mean
- Resolved
-
JDK-8263907 Specification of CellRendererPane::paintComponent(..Rectangle) should clearly mention which method it delegates the call to
- Resolved