-
Bug
-
Resolution: Not an Issue
-
P4
-
8, 9
-
None
Unclosed html tag <p> in Javadoc for JComponent.reshape(int x, int y, int w, int h):
Corresponding JComponent.java fragment:
/**
* @deprecated As of JDK 5,
* replaced by <code>Component.setBounds(int, int, int, int)</code>.
* <p>
* Moves and resizes this component.
*
* @param x the new horizontal location
* @param y the new vertical location
* @param w the new width
* @param h the new height
* @see java.awt.Component#setBounds
*/
@Deprecated
public void reshape(int x, int y, int w, int h) {
super.reshape(x, y, w, h);
}
Corresponding JComponent.java fragment:
/**
* @deprecated As of JDK 5,
* replaced by <code>Component.setBounds(int, int, int, int)</code>.
* <p>
* Moves and resizes this component.
*
* @param x the new horizontal location
* @param y the new vertical location
* @param w the new width
* @param h the new height
* @see java.awt.Component#setBounds
*/
@Deprecated
public void reshape(int x, int y, int w, int h) {
super.reshape(x, y, w, h);
}
- relates to
-
JDK-6320021 Unclosed html tags in Javadoc for JComponent
-
- Resolved
-