diff options
Diffstat (limited to 'java/awt/image/DataBuffer.java')
-rw-r--r-- | java/awt/image/DataBuffer.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/java/awt/image/DataBuffer.java b/java/awt/image/DataBuffer.java index 6f0215b10..9e4f71418 100644 --- a/java/awt/image/DataBuffer.java +++ b/java/awt/image/DataBuffer.java @@ -1,4 +1,4 @@ -/* Copyright (C) 2000, 2002 Free Software Foundation +/* Copyright (C) 2000, 2002, 2005 Free Software Foundation This file is part of GNU Classpath. @@ -14,8 +14,8 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the -Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA -02111-1307 USA. +Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +02110-1301 USA. Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and @@ -46,43 +46,43 @@ package java.awt.image; public abstract class DataBuffer { /** - * A constant representng a data type that uses <code>byte</code> primitives + * A constant representing a data type that uses <code>byte</code> primitives * as the storage unit. */ public static final int TYPE_BYTE = 0; /** - * A constant representng a data type that uses <code>short</code> + * A constant representing a data type that uses <code>short</code> * primitives as the storage unit. */ public static final int TYPE_USHORT = 1; /** - * A constant representng a data type that uses <code>short</code> + * A constant representing a data type that uses <code>short</code> * primitives as the storage unit. */ public static final int TYPE_SHORT = 2; /** - * A constant representng a data type that uses <code>int</code> + * A constant representing a data type that uses <code>int</code> * primitives as the storage unit. */ public static final int TYPE_INT = 3; /** - * A constant representng a data type that uses <code>float</code> + * A constant representing a data type that uses <code>float</code> * primitives as the storage unit. */ public static final int TYPE_FLOAT = 4; /** - * A constant representng a data type that uses <code>double</code> + * A constant representing a data type that uses <code>double</code> * primitives as the storage unit. */ public static final int TYPE_DOUBLE = 5; /** - * A constant representng an undefined data type. + * A constant representing an undefined data type. */ public static final int TYPE_UNDEFINED = 32; |