On Fri, 2006-06-16 at 09:59 -0600, Tom Tromey wrote:
> >>>>> "Lillian" == Lillian Angel <[EMAIL PROTECTED]> writes:
> 
> Lillian>         * java/awt/FileDialog.java
> Lillian>         (FileDialog): Implemented.
> Lillian>         (FileDialog): Implemented.
> Lillian>         (FileDialog): Implemented.
> 
> Lillian> +  /**
> Lillian> +   * Initialized a new instance of <code>FileDialog</code> with the
> Lillian> +   * specified parent and title.  This dialog will be for opening a 
> file.
> Lillian> +   *
> Lillian> +   * @param parent The parent dialog for this.
> Lillian> +   * @param title The title for this dialog.
> Lillian> +   */
> Lillian> +  public FileDialog(Dialog parent, String title)
> Lillian> +  {
> Lillian> +    this(parent, title, LOAD);
> Lillian> +  }
> 
> 
> New things from 1.5 should be marked '@since 1.5' in their javadoc.

Fixed

2006-06-16  Lillian Angel  <[EMAIL PROTECTED]>

        * java/awt/FileDialog.java
        (FileDialog): Added @since tag to API docs.
        (FileDialog): Likewise.
        (FileDialog): Likewise.
        * java/awt/Font.java:
        Added @since tag to TYPE1_FONT field docs.
        * javax/swing/plaf/basic/BasicScrollBarUI.java:
        (isThumbRollover): Likewise.
        (setThumbRollover): Likewise.
        (getSupportsAbsolutePositioning): Likewise.
        * javax/swing/plaf/basic/BasicSliderUI.java:
        (isDragging): Likewise.



> 
> Tom
Index: java/awt/FileDialog.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/awt/FileDialog.java,v
retrieving revision 1.15
diff -u -r1.15 FileDialog.java
--- java/awt/FileDialog.java	16 Jun 2006 15:41:39 -0000	1.15
+++ java/awt/FileDialog.java	16 Jun 2006 16:06:58 -0000
@@ -106,6 +106,8 @@
    * parent. This dialog will have no title and will be for loading a file.
    * 
    * @param parent The parent dialog for this.
+   * 
+   * @since 1.5
    */
   public FileDialog(Dialog parent)
   {
@@ -118,6 +120,8 @@
    *
    * @param parent The parent dialog for this.
    * @param title The title for this dialog.
+   * 
+   * @since 1.5
    */
   public FileDialog(Dialog parent, String title)
   {
@@ -134,6 +138,8 @@
    *          <code>SAVE</code>.
    * @throws IllegalArgumentException - if illegal mode, if
    *           GraphicsEnvironment.isHeadless or if parent is null.
+   *           
+   * @since 1.5
    */
   public FileDialog(Dialog parent, String title, int mode)
   {
Index: java/awt/Font.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/awt/Font.java,v
retrieving revision 1.35
diff -u -r1.35 Font.java
--- java/awt/Font.java	16 Jun 2006 15:41:40 -0000	1.35
+++ java/awt/Font.java	16 Jun 2006 16:06:58 -0000
@@ -118,6 +118,8 @@
   /**
    * Indicates to <code>createFont</code> that the supplied font data
    * is in Type1 format.
+   * 
+   * @since 1.5
    */
   public static final int TYPE1_FONT = 1;
 
Index: javax/swing/plaf/basic/BasicScrollBarUI.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/plaf/basic/BasicScrollBarUI.java,v
retrieving revision 1.36
diff -u -r1.36 BasicScrollBarUI.java
--- javax/swing/plaf/basic/BasicScrollBarUI.java	16 Jun 2006 15:14:56 -0000	1.36
+++ javax/swing/plaf/basic/BasicScrollBarUI.java	16 Jun 2006 16:06:58 -0000
@@ -1411,6 +1411,8 @@
    * Returns true if the mouse is over the thumb.
    * 
    * @return true if the mouse is over the thumb.
+   * 
+   * @since 1.5
    */
   public boolean isThumbRollover()
   {
@@ -1422,6 +1424,8 @@
    * whether or not the mouse is over the thumb.
    * 
    * @param active - true if the mouse is over the thumb.
+   * 
+   * @since 1.5
    */
   protected void setThumbRollover(boolean active)
   {
@@ -1434,6 +1438,8 @@
    * 
    * @return true if the user can position the thumb with a mouse
    * click.
+   * 
+   * @since 1.5
    */
   public boolean getSupportsAbsolutePositioning()
   {
Index: javax/swing/plaf/basic/BasicSliderUI.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/plaf/basic/BasicSliderUI.java,v
retrieving revision 1.33
diff -u -r1.33 BasicSliderUI.java
--- javax/swing/plaf/basic/BasicSliderUI.java	16 Jun 2006 15:14:56 -0000	1.33
+++ javax/swing/plaf/basic/BasicSliderUI.java	16 Jun 2006 16:06:58 -0000
@@ -613,6 +613,8 @@
    * Returns true if the user is dragging the slider.
    * 
    * @return true if the slider is being dragged.
+   * 
+   * @since 1.5
    */
   protected boolean isDragging()
   {

Reply via email to