--- old/src/java.desktop/share/classes/javax/swing/plaf/InsetsUIResource.java 2015-04-07 15:49:52.810546043 -0700 +++ new/src/java.desktop/share/classes/javax/swing/plaf/InsetsUIResource.java 2015-04-07 15:49:52.650546039 -0700 @@ -29,7 +29,7 @@ import javax.swing.plaf.UIResource; -/* +/** * A subclass of Insets that implements UIResource. UI * classes that use Insets values for default properties * should use this class. @@ -50,6 +50,13 @@ @SuppressWarnings("serial") // Same-version serialization only public class InsetsUIResource extends Insets implements UIResource { + /** + * Constructs an {@code InsetsUIResource}. + * @param top the inset from the top + * @param left the inset from the left + * @param bottom the inset from the bottom + * @param right the inset from the right + */ public InsetsUIResource(int top, int left, int bottom, int right) { super(top, left, bottom, right); }