diff options
Diffstat (limited to 'libjava/classpath/javax/swing/border')
6 files changed, 10 insertions, 10 deletions
diff --git a/libjava/classpath/javax/swing/border/AbstractBorder.java b/libjava/classpath/javax/swing/border/AbstractBorder.java index d755b6779d8..951debd5207 100644 --- a/libjava/classpath/javax/swing/border/AbstractBorder.java +++ b/libjava/classpath/javax/swing/border/AbstractBorder.java @@ -118,7 +118,7 @@ public abstract class AbstractBorder * * @return the same object that was passed for <code>insets</code>. * - * @see #getBorderInsets() + * @see #getBorderInsets(Component) */ public Insets getBorderInsets (Component c, Insets insets) { diff --git a/libjava/classpath/javax/swing/border/BevelBorder.java b/libjava/classpath/javax/swing/border/BevelBorder.java index e755fdcc94c..fcdc1c64675 100644 --- a/libjava/classpath/javax/swing/border/BevelBorder.java +++ b/libjava/classpath/javax/swing/border/BevelBorder.java @@ -172,7 +172,7 @@ public class BevelBorder * @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 @@ public class BevelBorder * * @return the same object that was passed for <code>insets</code>. * - * @see #getBorderInsets() + * @see #getBorderInsets(Component) */ public Insets getBorderInsets(Component c, Insets insets) { diff --git a/libjava/classpath/javax/swing/border/EtchedBorder.java b/libjava/classpath/javax/swing/border/EtchedBorder.java index ea2a61d9e67..0bd76ff0fb6 100644 --- a/libjava/classpath/javax/swing/border/EtchedBorder.java +++ b/libjava/classpath/javax/swing/border/EtchedBorder.java @@ -246,7 +246,7 @@ public class EtchedBorder * * @return the same object that was passed for <code>insets</code>. * - * @see #getBorderInsets() + * @see #getBorderInsets(Component) */ public Insets getBorderInsets(Component c, Insets insets) { diff --git a/libjava/classpath/javax/swing/border/LineBorder.java b/libjava/classpath/javax/swing/border/LineBorder.java index 00c16342c96..c34e38c5789 100644 --- a/libjava/classpath/javax/swing/border/LineBorder.java +++ b/libjava/classpath/javax/swing/border/LineBorder.java @@ -287,7 +287,7 @@ public class LineBorder * * @return the same object that was passed for <code>insets</code>. * - * @see #getBorderInsets() + * @see #getBorderInsets(Component) */ public Insets getBorderInsets(Component c, Insets insets) { diff --git a/libjava/classpath/javax/swing/border/SoftBevelBorder.java b/libjava/classpath/javax/swing/border/SoftBevelBorder.java index fa718e35bac..379ecb65a35 100644 --- a/libjava/classpath/javax/swing/border/SoftBevelBorder.java +++ b/libjava/classpath/javax/swing/border/SoftBevelBorder.java @@ -120,7 +120,7 @@ public class SoftBevelBorder * @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 @@ public class SoftBevelBorder * * @return the same object that was passed for <code>insets</code>. * - * @see #getBorderInsets() + * @see #getBorderInsets(Component) */ public Insets getBorderInsets(Component c, Insets insets) { diff --git a/libjava/classpath/javax/swing/border/TitledBorder.java b/libjava/classpath/javax/swing/border/TitledBorder.java index 30e4bcd6947..ceae2b1c9e3 100644 --- a/libjava/classpath/javax/swing/border/TitledBorder.java +++ b/libjava/classpath/javax/swing/border/TitledBorder.java @@ -675,7 +675,7 @@ public class TitledBorder * * @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 @@ public class TitledBorder /** * Determines the insets of the nested component when it has a * TitledBorder as its border. Used by {@link - * 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 @@ public class TitledBorder /** * Calculates the minimum size needed for displaying the border - * and its title. Used by {@link TitledBorder#getMiminumSize()}. + * and its title. Used by {@link TitledBorder#getMinimumSize(Component)}. */ public Dimension getMinimumSize() { |

