summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLillian Angel <langel@redhat.com>2006-06-16 16:10:22 +0000
committerLillian Angel <langel@redhat.com>2006-06-16 16:10:22 +0000
commitd461708bbbf3c82056dabcb7e2b4d165d4b1c63e (patch)
treec34f2db4c5e471d38a59c355e5dfc6b228211376
parent10ecb76a0a62b0a55459a078758b9db2adcf4b75 (diff)
downloadclasspath-d461708bbbf3c82056dabcb7e2b4d165d4b1c63e.tar.gz
2006-06-16 Lillian Angel <langel@redhat.com>
* 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.
-rw-r--r--ChangeLog15
-rw-r--r--java/awt/FileDialog.java6
-rw-r--r--java/awt/Font.java2
-rw-r--r--javax/swing/plaf/basic/BasicScrollBarUI.java6
-rw-r--r--javax/swing/plaf/basic/BasicSliderUI.java2
5 files changed, 31 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7e46da890..32596f1a8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,21 @@
2006-06-16 Lillian Angel <langel@redhat.com>
* 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.
+
+2006-06-16 Lillian Angel <langel@redhat.com>
+
+ * java/awt/FileDialog.java
(FileDialog): Implemented.
(FileDialog): Implemented.
(FileDialog): Implemented.
diff --git a/java/awt/FileDialog.java b/java/awt/FileDialog.java
index 60f993d32..f02d06be2 100644
--- a/java/awt/FileDialog.java
+++ b/java/awt/FileDialog.java
@@ -106,6 +106,8 @@ private int mode;
* 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 @@ private int mode;
*
* @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 @@ private int mode;
* <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)
{
diff --git a/java/awt/Font.java b/java/awt/Font.java
index e6d5012e9..7e0306dc0 100644
--- a/java/awt/Font.java
+++ b/java/awt/Font.java
@@ -118,6 +118,8 @@ public class Font implements Serializable
/**
* Indicates to <code>createFont</code> that the supplied font data
* is in Type1 format.
+ *
+ * @since 1.5
*/
public static final int TYPE1_FONT = 1;
diff --git a/javax/swing/plaf/basic/BasicScrollBarUI.java b/javax/swing/plaf/basic/BasicScrollBarUI.java
index 1ff50e388..78e5168fc 100644
--- a/javax/swing/plaf/basic/BasicScrollBarUI.java
+++ b/javax/swing/plaf/basic/BasicScrollBarUI.java
@@ -1411,6 +1411,8 @@ public class BasicScrollBarUI extends ScrollBarUI implements LayoutManager,
* 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 @@ public class BasicScrollBarUI extends ScrollBarUI implements LayoutManager,
* 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 @@ public class BasicScrollBarUI extends ScrollBarUI implements LayoutManager,
*
* @return true if the user can position the thumb with a mouse
* click.
+ *
+ * @since 1.5
*/
public boolean getSupportsAbsolutePositioning()
{
diff --git a/javax/swing/plaf/basic/BasicSliderUI.java b/javax/swing/plaf/basic/BasicSliderUI.java
index c63b0ecb9..3811eebdf 100644
--- a/javax/swing/plaf/basic/BasicSliderUI.java
+++ b/javax/swing/plaf/basic/BasicSliderUI.java
@@ -613,6 +613,8 @@ public class BasicSliderUI extends SliderUI
* Returns true if the user is dragging the slider.
*
* @return true if the slider is being dragged.
+ *
+ * @since 1.5
*/
protected boolean isDragging()
{