Changeset 1391 for branches/GNU/src/gcc/libjava/java/awt/Cursor.java
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/awt/Cursor.java (modified) (4 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/awt/Cursor.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 45 45 public class Cursor implements java.io.Serializable 46 46 { 47 48 47 49 /** 48 50 * Constant for the system default cursor type … … 132 134 * 133 135 * @param type The cursor type. 136 137 134 138 */ 135 139 public Cursor(int type) … … 137 141 if (type < 0 || type >= PREDEFINED_COUNT) 138 142 throw new IllegalArgumentException ("invalid cursor " + type); 143 139 144 this.type = type; 140 145 // FIXME: lookup and set name? … … 170 175 } 171 176 177 178 179 180 181 182 183 184 172 185 public static Cursor getSystemCustomCursor(String name) 173 186 throws AWTException 174 187 { 188 189 190 175 191 // FIXME 176 192 return null; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
