classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] FYI: API doc fixes for javax.swing.border.* package


From: David Gilbert
Subject: [cp-patches] FYI: API doc fixes for javax.swing.border.* package
Date: Thu, 21 Jul 2005 17:13:33 +0000
User-agent: Mozilla Thunderbird 1.0.2 (X11/20050426)

I committed this patch:

2005-07-21  David Gilbert  <address@hidden>

        * javax/swing/border/AbstractBorder.java: API doc fixes,
        * javax/swing/border/BevelBorder.java: likewise,
        * javax/swing/border/EtchedBorder.java: likewise,
        * javax/swing/border/LineBorder.java: likewise,
        * javax/swing/border/SoftBevelBorder.java: likewise,
        * javax/swing/border/TitledBorder.java: likewise.

Regards,

Dave Gilbert

Index: javax/swing/border/AbstractBorder.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/border/AbstractBorder.java,v
retrieving revision 1.8
diff -u -r1.8 AbstractBorder.java
--- javax/swing/border/AbstractBorder.java      2 Jul 2005 20:32:49 -0000       
1.8
+++ javax/swing/border/AbstractBorder.java      21 Jul 2005 16:06:45 -0000
@@ -118,7 +118,7 @@
    *
    * @return the same object that was passed for <code>insets</code>.
    *
-   * @see #getBorderInsets()
+   * @see #getBorderInsets(Component)
    */
   public Insets getBorderInsets (Component c, Insets insets) 
   {
Index: javax/swing/border/BevelBorder.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/border/BevelBorder.java,v
retrieving revision 1.7
diff -u -r1.7 BevelBorder.java
--- javax/swing/border/BevelBorder.java 2 Jul 2005 20:32:49 -0000       1.7
+++ javax/swing/border/BevelBorder.java 21 Jul 2005 16:06:45 -0000
@@ -172,7 +172,7 @@
    * @throws NullPointerException if <code>highlight</code> or
    *         <code>shadow</code> is <code>null</code>.
    *
-   * @see java.awt.Color.brighter()
+   * @see java.awt.Color#brighter()
    */
   public BevelBorder(int bevelType, Color highlight, Color shadow)
   {
@@ -289,7 +289,7 @@
    *
    * @return the same object that was passed for <code>insets</code>.
    *
-   * @see #getBorderInsets()
+   * @see #getBorderInsets(Component)
    */
   public Insets getBorderInsets(Component c, Insets insets)
   {
Index: javax/swing/border/EtchedBorder.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/border/EtchedBorder.java,v
retrieving revision 1.7
diff -u -r1.7 EtchedBorder.java
--- javax/swing/border/EtchedBorder.java        2 Jul 2005 20:32:49 -0000       
1.7
+++ javax/swing/border/EtchedBorder.java        21 Jul 2005 16:06:46 -0000
@@ -246,7 +246,7 @@
    *
    * @return the same object that was passed for <code>insets</code>.
    *
-   * @see #getBorderInsets()
+   * @see #getBorderInsets(Component)
    */
   public Insets getBorderInsets(Component c, Insets insets)
   {
Index: javax/swing/border/LineBorder.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/border/LineBorder.java,v
retrieving revision 1.8
diff -u -r1.8 LineBorder.java
--- javax/swing/border/LineBorder.java  2 Jul 2005 20:32:49 -0000       1.8
+++ javax/swing/border/LineBorder.java  21 Jul 2005 16:06:46 -0000
@@ -287,7 +287,7 @@
    *
    * @return the same object that was passed for <code>insets</code>.
    *
-   * @see #getBorderInsets()
+   * @see #getBorderInsets(Component)
    */
   public Insets getBorderInsets(Component c, Insets insets)
   {
Index: javax/swing/border/SoftBevelBorder.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/border/SoftBevelBorder.java,v
retrieving revision 1.4
diff -u -r1.4 SoftBevelBorder.java
--- javax/swing/border/SoftBevelBorder.java     2 Jul 2005 20:32:49 -0000       
1.4
+++ javax/swing/border/SoftBevelBorder.java     21 Jul 2005 16:06:47 -0000
@@ -120,7 +120,7 @@
    * @throws NullPointerException if <code>highlight</code> or
    *         <code>shadow</code> is <code>null</code>.
    *
-   * @see java.awt.Color.brighter()
+   * @see java.awt.Color#brighter()
    */
   public SoftBevelBorder(int bevelType, Color highlight, Color shadow)
   {
@@ -235,7 +235,7 @@
    *
    * @return the same object that was passed for <code>insets</code>.
    *
-   * @see #getBorderInsets()
+   * @see #getBorderInsets(Component)
    */
   public Insets getBorderInsets(Component c, Insets insets)
   {
Index: javax/swing/border/TitledBorder.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/border/TitledBorder.java,v
retrieving revision 1.8
diff -u -r1.8 TitledBorder.java
--- javax/swing/border/TitledBorder.java        2 Jul 2005 20:32:49 -0000       
1.8
+++ javax/swing/border/TitledBorder.java        21 Jul 2005 16:06:48 -0000
@@ -675,7 +675,7 @@
    *
    * @return the same object that was passed for <code>insets</code>.
    *
-   * @see #getBorderInsets()
+   * @see #getBorderInsets(Component)
    */
   public Insets getBorderInsets(Component c, Insets insets)
   {
@@ -1117,7 +1117,7 @@
     /**
      * Determines the insets of the nested component when it has a
      * TitledBorder as its border. Used by address@hidden
-     * TitledBorder#getBorderInsets()}.
+     * TitledBorder#getBorderInsets(Component, Insets)}.
      *
      * @param i an Insets object for storing the results into, or
      *        <code>null</code> to cause the creation of a
@@ -1140,7 +1140,7 @@
 
     /**
      * Calculates the minimum size needed for displaying the border
-     * and its title. Used by address@hidden TitledBorder#getMiminumSize()}.
+     * and its title. Used by address@hidden 
TitledBorder#getMinimumSize(Component)}.
      */
     public Dimension getMinimumSize()
     {

reply via email to

[Prev in Thread] Current Thread [Next in Thread]