2005-04-25 David Gilbert <david.gilbert@object-refinery.com>

* java/awt/Transparency.java
	(getTransparency): fixed API docs.

From-SVN: r98735
This commit is contained in:
David Gilbert 2005-04-25 19:51:00 +00:00 committed by Michael Koch
parent ee141b8822
commit 23a58ffe2b
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2005-04-25 David Gilbert <david.gilbert@object-refinery.com>
* java/awt/Transparency.java
(getTransparency): fixed API docs.
2005-04-25 Archie Cobbs <archie@dellroad.org>
* java/lang/Throwable.java: simplify initializing cause in constructor

View file

@ -1,5 +1,5 @@
/* Transparency.java -- common transparency modes in graphics
Copyright (C) 2000, 2002 Free Software Foundation
Copyright (C) 2000, 2002, 2005 Free Software Foundation
This file is part of GNU Classpath.
@ -61,7 +61,7 @@ public interface Transparency
/**
* Return the transparency type.
*
* @return One of {@see #OPAQUE}, {@see #BITMASK}, or {@see #TRANSLUCENT}.
* @return One of {@link #OPAQUE}, {@link #BITMASK}, or {@link #TRANSLUCENT}.
*/
int getTransparency();
} // interface Transparency