2005-05-23  Roman Kennke  <[EMAIL PROTECTED]>

       * javax/swing/JFileChooser.java:
       Fixed the values of several public constant fields.

/Roman

Index: javax/swing/SwingUtilities.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/SwingUtilities.java,v
retrieving revision 1.26
diff -u -r1.26 SwingUtilities.java
--- javax/swing/SwingUtilities.java     20 May 2005 12:10:21 -0000      1.26
+++ javax/swing/SwingUtilities.java     23 May 2005 11:10:32 -0000
@@ -352,6 +352,25 @@
   }
 
   /**
+   * Returns the first ancestor of <code>comp</code> that is a [EMAIL 
PROTECTED] Window}
+   * or <code>null</code> if <code>comp</code> is not contained in a
+   * [EMAIL PROTECTED] Window}.
+   *
+   * This is equivalent to calling
+   * <code>getAncestorOfClass(Window, comp)</code> or
+   * <code>windowForComponent(comp)</code>.
+   *
+   * @param comp the component for which we are searching the ancestor Window
+   *
+   * @return the first ancestor Window of <code>comp</code> or
+   *     <code>null</code> if <code>comp</code> is not contained in a Window
+   */
+  public Window getWindowAncestor(Component comp)
+  {
+    return (Window) getAncestorOfClass(Window.class, comp);
+  }
+
+  /**
    * Equivalent to calling <code>getAncestorOfClass(Window, comp)</code>.
    *
    * @param comp The component to search for an ancestor window 
_______________________________________________
Classpath-patches mailing list
Classpath-patches@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-patches

Reply via email to