From c1ef0662493dd83fe23f7235fa085f2d4e054b3c Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 11 Jan 2001 17:49:47 +0000 Subject: Cursor.java (Cursor(String)): Set type to custom. * java/awt/Cursor.java (Cursor(String)): Set type to custom. (Cursor(int), getPredefinedCursor): Throw exception if argument invalid. From-SVN: r38911 --- libjava/java/awt/Cursor.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'libjava/java') diff --git a/libjava/java/awt/Cursor.java b/libjava/java/awt/Cursor.java index e964a12..80f28e6 100644 --- a/libjava/java/awt/Cursor.java +++ b/libjava/java/awt/Cursor.java @@ -36,6 +36,8 @@ public class Cursor implements java.io.Serializable public Cursor(int type) { + if (type < 0 || type >= PREDEFINED_COUNT) + throw new IllegalArgumentException ("invalid cursor " + type); this.type = type; // FIXME: lookup and set name? } @@ -46,13 +48,13 @@ public class Cursor implements java.io.Serializable protected Cursor(String name) { this.name = name; - // FIXME + this.type = CUSTOM_CURSOR; } public static Cursor getPredefinedCursor(int type) { - if (type >= PREDEFINED_COUNT) - return null; + if (type < 0 || type >= PREDEFINED_COUNT) + throw new IllegalArgumentException ("invalid cursor " + type); if (predefined[type] == null) predefined[type] = new Cursor(type); return predefined[type]; -- cgit v1.1