home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JRUNTIME.Z / CHANGES < prev    next >
Text File  |  1998-05-08  |  98KB  |  2,632 lines

  1.                          
  2.                             CHANGES
  3.  
  4.                     Java(tm) Development Kit
  5.                          JDK(tm) 1.1.6
  6.                          
  7. -----------------------------------------------------------------------
  8. CONTENTS
  9. -----------------------------------------------------------------------
  10. This document describes the changes between the various JDK 
  11. releases of the Java Platform 1.1.  It is divided into several 
  12. sections:
  13.  
  14.     - Changes from JDK 1.1.5 to JDK 1.1.6
  15.     - Changes from JDK 1.1.4 to JDK 1.1.5
  16.     - Changes from JDK 1.1.3 to JDK 1.1.4
  17.     - Changes from JDK 1.1.2 to JDK 1.1.3
  18.     - Changes from JDK 1.1.1 to JDK 1.1.2
  19.     - Changes from JDK 1.1_Final to JDK 1.1.1_Final
  20.     - Changes from JDK 1.1beta3  to JDK 1.1_Final
  21.     - Changes from JDK 1.1beta2  to JDK 1.1beta3
  22.     - Changes from the original JDK 1.1beta to JDK 1.1beta2
  23.  
  24.     ---------------------------------------------------------
  25.     NOTE: To find the Java version number, execute:
  26.           java -version
  27.     ---------------------------------------------------------
  28.     NOTE: A list of important known bugs is at 
  29.           http://java.sun.com/jdc/bugParade/index.html
  30.     ---------------------------------------------------------
  31.  
  32. =======================================================================
  33. Changes from JDK 1.1.5 to JDK 1.1.6
  34. -----------------------------------------------------------------------
  35.  
  36. JDK 1.1.6 is a maintenance release. The following list summarizes some 
  37. significant changes in JDK 1.1.6.
  38.  
  39. ______________
  40. VERSION NUMBER - The version number for this release is "JDK1.1.6".
  41.  
  42. ________________________________________________
  43. PERFORMANCE AND INTERNATIONALIZATION ENHANCEMENTS - JDK 1.1.6
  44. incorporates a significant amount of work designed to improve overall
  45. performance and support for internationalization.
  46.  
  47. _______________________________
  48. SERIALIZATION PROTOCOL VERSIONS
  49.  
  50. Programs based on JDK 1.1.6 can read serialization streams written in
  51. PROTOCOL_VERSION_2. This feature ensures object stream compatibility
  52. between JDK 1.2 and JDK 1.1. No changes were made the API, and no
  53. source code changes are required.
  54.  
  55. Because the API is frozen, the ability to write PROTOCOL_VERSION_2
  56. streams will not be added to JDK software version 1.1. This feature is
  57. available in JDK software version 1.2 Beta3, or later versions.
  58.  
  59. ____________
  60. JIT COMPILER - The Win32 version of JDK 1.1.6 includes a Just In Time
  61. bytecode compiler, or JIT. This is a production-quality version of the
  62. JIT previously provided in the Win32 Performance Pack.
  63.  
  64. Both launcher tools (java and jre) now use the JIT by default. The java
  65. launcher tool has a new option, -nojit, which disables the JIT. This
  66. option was implemented for jre in a previous release.
  67.  
  68. _____________________
  69. SOLARIS AWT EVENT BUG - In earler versions of the JDK, multithreading
  70. programs running on Solaris might experience errors, including program
  71. crashes, if events were dispatched to AWT controls that had already
  72. been removed from the screen. This bug is fixed in JDK 1.1.6. [Bug
  73. 4041235]
  74.  
  75. ____________________________________
  76. DRAG GENERATES INCORRECT MOUSE_ENTER - In earlier versions of the JDK,
  77. draging the mouse pointer across a control could generate a MOUSE_ENTER
  78. event with incorrect coordinates. This bug is fixed in JDK 1.1.6. [Bug
  79. 4092421]
  80.  
  81. _________________________
  82. INCORRECT UNICODE DISPLAY - In earlier versions of the JDK, the Unicode
  83. sequence "\u301c" was not mapped to the correct character. This bug is
  84. fixed in JDK 1.1.6. [Bug 4023097]
  85.  
  86. ______________________
  87. WINDOWS 95 MEMORY LEAK - In earlier versions of the JDK, programs
  88. running on Windows 95 would fail to deallocate a buffer allocated by
  89. java.awt.TextComponent.getText(). This bug is fixed in JDK 1.1.6. [Bug
  90. 4068639]
  91.  
  92. __________________________
  93. THREAD-RELATED MEMORY LEAK - In JDK 1.1.5, information about a thread
  94. was not discarded when the thread died. This resulted in severe memory
  95. leaks in programs that created and destroyed large numbers of threads.
  96. This bug is fixed in JDK 1.1.6. [Bug 4102107]
  97.  
  98. _________________________
  99. RMI SERVER FAILS TO RETRY - In earlier versions of the JDK, an RMI
  100. accept thread would silently die if an accept failed and no
  101. RMIFailureHandler is installed. The correct behavior in this situation
  102. is to attempt re-creation of the socket. This bug is fixed in JDK
  103. 1.1.6. [Bug 4096750]
  104.  
  105. ____________________________________
  106. UNNECESSARY RESOURCE BUNDLE MESSAGES - In earlier versions of the JDK,
  107. a resource bundle search produced an error message for every
  108. unsuccessful attempt to open a bundle. This could produce a large
  109. number of error messages, even in a successful search. This behavior is
  110. moderated in JDK 1.1.6. [Bug 4050902]
  111.  
  112. ___________________
  113. UNNECESSARY REPAINT - In earlier versions of the JDK, programs running
  114. on Win32 systems with 256-color displays would sometimes repain
  115. unnecessarily after closing a modal dialog. This bug is fixed in JDK
  116. 1.1.6. [Bug 4088416]
  117.  
  118. ________________
  119. SLOW LIST UPDATE - In earlier versions of the JDK, programs running on
  120. Windows 95 would update list boxes very slowly. This bug has been fixed
  121. in JDK 1.1.6 [Bug 4079288]
  122.  
  123.  
  124. =======================================================================
  125. Changes from JDK 1.1.4 to JDK 1.1.5
  126. -----------------------------------------------------------------------
  127.  
  128. JDK 1.1.5 is a maintenance release. The following list summarizes some 
  129. significant changes in JDK 1.1.5.
  130.  
  131. ______________
  132. VERSION NUMBER - The version number for this release is "JDK1.1.5".
  133.  
  134. _________________
  135. AWT SCROLLBAR BUG - In some situations, the scrollbar would not 
  136. stop scrolling on earlier versions of JDK 1.1 for Solaris-SPARC. This 
  137. problem has been fixed in JDK 1.1.5. [Bug 4048060]
  138.  
  139. ______________
  140. AWT CHOICE BUG - In earlier versions of the JDK, Choice.removeAll() 
  141. followed by Choice.addItem would result in a core dump in some 
  142. situations. This problem has been fixed in JDK 1.1.5. [Bug 4064823]
  143.  
  144. __________
  145. SOCKET BUG - On win95, under certain circumstances such as heavy 
  146. network load, closing sockets could cause the connection to be reset, 
  147. disturbing the connection's peer. This bug has been fixed in JDK 1.1.5.
  148. [Bug 4069782]
  149.  
  150. ________________ 
  151. APPLETVIEWER BUG - In earlier JDKs, the appletviewer would hang while 
  152. running under jdb. This bug has been fixed in JDK 1.1.5. [Bug 4061955]
  153.  
  154. ________________
  155. MODAL DIALOG BUG - Hiding and then showing modal dialogs resulted in 
  156. crash-causing race conditions in earlier JDKs. This bug has been fixed 
  157. in JDK 1.1.5. [Bug 4068620]
  158.  
  159. _____________________________
  160. AWT LIGHTWEIGHT COMPONENT BUG - In a FOCUS_GAINED handler for a 
  161. lightweight component, a call to requestFocus() to shift the focus to 
  162. another view would fail. This bug has been fixed in JDK 1.1.5. 
  163. [Bug 4070597]
  164.  
  165. _________________________________
  166. ARRAY INITIALIZATION OPTIMIZATION - Beginning with JDK 1.1.5, the 
  167. compiler does not generate inline code to fill the values of newly 
  168. created arrays, because such arrays are already filled with the 
  169. default values. This optimization saves half a megabyte in the 
  170. compressed classes.zip file.  [Bugs 4017848, 4080908]
  171.  
  172. _______________
  173. AWT REPAINT BUG - When several repaints are issued together in 
  174. previous JDKs, some repaints would not be carried out. This problem 
  175. has been fixed in JDK 1.1.5.  [Bug 4073091]
  176.  
  177. _______________
  178. AWT THREADS BUG - Repeatedly adding and removing components using 
  179. threads sometimes caused the VM to crash in earlier JDKs. This bug 
  180. has been fixed in JDK 1.1.5.  [Bug 4073623] 
  181.  
  182. ________________
  183. JAVA.NET.URL BUG - In JDK 1.1.4, the method setURLStreamHandlerFactory 
  184. in java.net.url did not clear the handlers cache. This meant that any 
  185. URL constructed prior to calling that method would use an old handler. 
  186. This bug has been fixed in JDK 1.1.5.  [Bug 4074245]
  187.  
  188. _________________________
  189. GETRESOURCE DIRECTORY BUG - JDK 1.1.4 introduced a bug in which a 
  190. directory path (e.g. myImages/) would be used to obtain a URL via 
  191. getResource().  This bug was only present on the win32 platform, and 
  192. was present in some conditions when using Beans.instantiate(). This bug 
  193. has been fixed in JDK 1.1.5 [Bug 4080478]
  194.  
  195. _______________
  196. GETRESOURCE BUG - In JDK 1.1.4, the URL returned by getResource() was 
  197. incorrect. This problem has been fixed in JDK 1.1.5 [Bug 4026780].  
  198. For details on getResource() and getResourceAsStream() see the document 
  199. at http://java.sun.com/products/jdk/1.1/docs/guide/misc/resources.html.
  200.  
  201. _____________
  202. AWT EVENT BUG - In JDK 1.1.4, when the mouse was moved from a 
  203. lightweight component directly to a non-lightweight component, a 
  204. MouseMove event was not generated to the host container. This bug has 
  205. been fixed in JDK 1.1.5.  [Bug 4065565]
  206.  
  207. _____________
  208. AWT PANEL BUG - In JDK 1.1.4, components derived from Panel had an 
  209. extra pixel in their border. Among other things, this could cause 
  210. problems with calculation of BorderLayout element heights. This 
  211. bug has been fixed in JDK 1.1.5.  [Bugs 4062779, 4064468]
  212.  
  213. _______________
  214. AWT MENUBAR BUG - On Solaris versions of JDK 1.1.4, the MenuBar was 
  215. not always correctly resized when MenuBar labels changed length. This 
  216. problem has been fixed in JDK 1.1.5.  [Bug 4071628]
  217.  
  218. _______________
  219. AWT MENUBAR BUG - On Windows versions of JDK 1.1.4, a MenuBar did 
  220. not correctly resize itself when all items were removed from it and 
  221. new items added to it. This bug has been fixed in JDK 1.1.5. 
  222. [Bug 4071438]
  223.  
  224. _____________
  225. AWT EVENT BUG - On Windows versions of JDK 1.1.4, spurious mouse press 
  226. events were sometimes generated during mouse exit events. This bug has 
  227. been fixed in JDK 1.1.5.  [Bug 4038721]
  228.  
  229. ________________
  230. AWT PRINTJOB BUG - In earlier JDKs, java.awt.PrintJob.getPageResolution 
  231. and java.awt.PrintJob.GetPageDimension would return incorrect values in 
  232. some circumstances. This bug has been fixed in JDK 1.1.5. [Bug 4049865]
  233.  
  234.  
  235. =======================================================================
  236. Changes from JDK 1.1.3 to JDK 1.1.4
  237. -----------------------------------------------------------------------
  238.  
  239. JDK 1.1.4 is a maintenance release. The following list summarizes some 
  240. significant changes in JDK 1.1.4.
  241. ______________
  242. VERSION NUMBER - The version number for this release is "JDK1.1.4".
  243.  
  244. ____________________
  245. JAVA TEXT BOUNDS BUG - The DateFormat.parse() unexpectedly threw a 
  246. StringIndexOutOfBoundsException rather than the expected 
  247. FormatException.  This bug has been fixed in JDK 1.1.4.  [Bug 4031620]
  248.  
  249. _________________
  250. AWT COMPONENT BUG - In the Windows version of JDK 1.1.3, incorrect 
  251. character codes from non-101 keyboards where being received, causing 
  252. the incorrect generation of a KeyPressed/Release event.  This bug has 
  253. been fixed in JDK 1.1.4.  [Bugs 4051910, 4053800]
  254.  
  255. __________________
  256. AWT POPUP MENU BUG - Removing menus from PopupMenus on Solaris versions 
  257. of JDK 1.1.2 and JDK 1.1.3 caused a core dump. This problem has been 
  258. corrected in JDK 1.1.4.  [Bug 4054479]
  259.  
  260. __________
  261. AWT IM BUG - In the Solaris version on the JDK 1.1.1, the IM status 
  262. region was created inside of the AWT window and broke the layout of the 
  263. window.  This bug has been fixed in JDK 1.1.4.  [Bug 4041569]
  264.  
  265. ____________
  266. AWT MENU BUG - In the Solaris version of the JDK 1.1.2 & JDK 1.1.3 a 
  267. core dump would result when removing MenuItems from submenus on 
  268. PopuMenus.  This bug has been fixed in JDK 1.1.4.  [Bug 4054479]
  269.  
  270. ____________________
  271. AWT MODAL DIALOG BUG - Calls to the hide() method in the Win32 version 
  272. of JDK 1.1.3 does not always hide the modal dialog.  This is a 
  273. regression from JDK 1.1.1.  This bug has been fixed in JDK 1.1.4 
  274. [Bug 4068651]
  275.  
  276. ______________
  277. AWT CURSOR BUG - In JDK 1.1.3, Frame.setCursor sometimes didn't update 
  278. the cursor until the user moved the mouse. This bug has been fixed 
  279. in JDK 1.1.4.  [Bug 4040388]
  280.  
  281. ___________________
  282. AWT KEYBOARD EVENTS - Caps lock and Shift keyboard events did not 
  283. work properly on Win32 versions of JDK 1.1.3. This problem has been 
  284. fixed in JDK 1.1.4. [Bug 4067542]
  285.  
  286. _________________________
  287. AWT WINDOW ACTIVATION BUG - In JDK 1.1.3, invisible windows could not 
  288. be activated, which caused applets to hang. This bug has been fixed 
  289. in JDK 1.1.4.  [Bug 4068536]
  290.  
  291. _____________________
  292. AWT COLOR SUPPORT BUG - Previous versions of JDK 1.1 did not correctly 
  293. handle 8-bit TrueColor. This problem has been corrected in JDK 1.1.4.
  294. [Bug 4061285]
  295.  
  296. _______
  297. JNI BUG - In JDK 1.1.4, the JNI_GetDefaultJavaVMInitArgs function has 
  298. been corrected to properly set the default system class path. In 
  299. previous versions of the JDK, the default system class path was set to 
  300. NULL.
  301.  
  302. ________________
  303. LOCALIZATION BUG - In the zh_TW.BIG5 locale, users could not input 
  304. Chinese characters into the text area. This problem has been fixed 
  305. in JDK 1.1.4.  [Bug 4053637]
  306.  
  307. ____________________
  308. java INTERPRETER BUG - In previous releases of JDK 1.1, the java 
  309. interpreter would allow the class file at /a/b/c.class to be invoked 
  310. from within the /a/b directory by the command "java c", even if the 
  311. class c was in package a.b.*. This behavior is incorrect and has been 
  312. fixed in JDK 1.1.4. In JDK 1.1.4, the fully qualified class name must 
  313. be specified. For example, to invoke the class a.b.c at /a/b/c.class, 
  314. the command "java a.b.c" could be issued from the parent directory of 
  315. directory /a.
  316.  
  317. _________________
  318. jdb DEBUGGER BUGS - Several Java debugger problems are fixed in JDK 
  319. 1.1.4. In previous JDKs, the debugger could not print a static member 
  320. whose type was a string. Setting a breakpoint in a native method would 
  321. cause the debugger to crash. These debugger problems have been fixed 
  322. in JDK 1.1.4.  [Bugs 4064129, 4062582]
  323.  
  324.  
  325. =======================================================================
  326. Changes from JDK 1.1.2 to JDK 1.1.3
  327. -----------------------------------------------------------------------
  328.  
  329. JDK 1.1.3 is a maintenance release to correct a localization problem in 
  330. the Solaris JDK 1.1.2. The following list summarizes changes in 
  331. JDK 1.1.3.
  332. ______________
  333. VERSION NUMBER - The version number for this release is "JDK1.1.3".
  334.  
  335. ________________
  336. LOCALIZATION BUG - In Solaris versions of JDK 1.1.2, the mechanism 
  337. for loading the ByteToCharConverter classes for non-8859_1 encodings 
  338. was broken. Characters in text areas of windows did not display 
  339. properly for non-English-language locales and non-Western European 
  340. locales. This problem did not exist in JDK 1.1.1. This bug has been 
  341. fixed in JDK 1.1.3.  [Bugs 4049223, 4055084]
  342.  
  343. ___________________________
  344. VERIFIER IMPLEMENTATION BUG - A bug in the JDK 1.1.2 verifier would 
  345. allow a type-unsafe applet to search and locate strings stored in the 
  346. browser's address space. This bug is not known to be present in 
  347. JDK 1.0.x. This bug has been fixed in JDK 1.1.3. [Bug 4059597]
  348.  
  349. ______________ 
  350. JAVA BEANS BUG - The method java.beans.BeanInfo.getMethodDescriptors() 
  351. did not return MethodDescriptors for all externally visible methods 
  352. in some situations. getMethodDescriptors() did not report methods 
  353. having no arguments when those methods were defined later in a class 
  354. than similarly named methods having arguments. This problem did not 
  355. exist in JDK 1.1.1. This bug has been fixed in JDK 1.1.3. [Bug 4056837]
  356.  
  357. _______________
  358. AWT REPAINT BUG - Synchronization problems with graphics in the 
  359. Win32 version of JDK 1.1.2 would cause graphics deadlocks or 
  360. crashes of the Java virtual machine in some situations. This problem 
  361. did not exist in JDK 1.1.1. This bug has been fixed in JDK 1.1.3.
  362. [Bugs 4049421, 4051303]
  363.  
  364. ________________
  365. java_g -prof BUG - The profiling option of the Java interpreter 
  366. did not work in the Win32 version of JDK 1.1.2. Using a command
  367. such as    C:\> java_g -prof MyClass     would cause the Java 
  368. virtual machine to crash. This problem did not exist in JDK 1.1.1. 
  369. This bug has been fixed in JDK 1.1.3. [Bug 4056944]
  370.  
  371. _______________________
  372. AWT FONTMETRICS SPEEDUP - Improvements have been made to AWT font 
  373. metrics in JDK 1.1.3, resulting in significant speedups for programs 
  374. such as HotJava that rely heavily on text rendering. 
  375. [Bug 4046795]
  376.  
  377. _________________
  378. AWT COMPONENT BUG - In the Windows version of JDK 1.1.2, a race 
  379. condition sometimes caused the HotJava browser to crash when disposing 
  380. components that were in the process of being shown. This bug has 
  381. been fixed in JDK 1.1.3.  [Bug 4051487]
  382.  
  383. ________________
  384. AWT GRAPHICS BUG - In the Windows version of JDK 1.1.2, multi-
  385. threaded access to Graphics objects sometimes resulted in dangling 
  386. pointers due to a race condition in awt_Graphics.cpp. This bug has 
  387. been fixed in JDK 1.1.3. [Bug 4049421]
  388.  
  389. ________________
  390. INPUT STREAM BUG - An InputStreamReader using the UTF8 encoding 
  391. produced an erroneous character stream with missing characters. 
  392. This bug has been fixed in JDK 1.1.3  [Bug 4059684]
  393.  
  394.  
  395. =======================================================================
  396. Changes from JDK 1.1.1 to JDK 1.1.2
  397. -----------------------------------------------------------------------
  398.  
  399. JDK 1.1.2 is a maintenance release. The following is a list of
  400. important bug fixes and other changes in JDK 1.1.2.
  401. ______________
  402. VERSION NUMBER - The version number for this release is "JDK1.1.2".
  403.  
  404. ____________
  405. VERIFIER BUG - The JDK 1.1.1 bytecode verifier did not check to 
  406. determine whether the number of arguments passed into a method is less 
  407. than the amount of memory allocated to local variables for that 
  408. method. There was no known security attack based on this bug. This bug 
  409. has been corrected in JDK 1.1.2.
  410.  
  411. ___________
  412. SIGNING BUG - In JDK 1.1.1, digitally signed code could be 
  413. manipulated to impersonate another digital signature from the list of 
  414. signers that are recorded in the Java runtime. This bug has been 
  415. fixed in JDK 1.1.2. [Bug 4048143]
  416.  
  417. _______
  418. DSA BUG - In JDK 1.1.1, the same default seed was used for every 
  419. invocation of DSA. This bug has been fixed in JDK 1.1.2. 
  420. [Bug 4050406]
  421.  
  422. ________________
  423. AWT MENU BUG FIX - Trying to add a pull-right cascade menu to a 
  424. PopupMenu in JDK 1.1.1 led to an exception. This problem did not 
  425. exist in JDK 1.1. This bug has been corrected in JDK 1.1.2.
  426. [Bug 4039089]
  427.  
  428. _________________________________
  429. AWT LIGHTWEIGHT COMPONENT BUG FIX - Mouse tracking events for 
  430. lightweight components were not being delivered in some situations. 
  431. This bug has been fixed in JDK 1.1.2.  [Bug 4038897]
  432.  
  433. ___________________
  434. AWT REPAINT BUG FIX - Some components were not being repainted 
  435. properly in some situations in JDK 1.1.1. This problem did not 
  436. exist in JDK 1.1. This bug has been fixed in JDK 1.1.2.
  437. [Bug 4040638]
  438.  
  439. __________________
  440. AWT DIALOG BUG FIX - Closing nested modal dialogs out of order would 
  441. cause parent to remain disabled in some cases. This bug has been fixed 
  442. in JDK1.1.2.  [Bug 4045610]
  443.  
  444. _________________
  445. AWT FOCUS BUG FIX - Setting default focus caused applets to hang in 
  446. some situations. This problem did not exist in JDK 1.1. This bug 
  447. has been fixed in JDK 1.1.2.  [Bug 4038896]
  448.  
  449. ____________________
  450. APPLETVIEWER BUG FIX - Trying to save an applet from the Appletviewer 
  451. led to an exception. This bug has been fixed in JDK 1.1.2.
  452. [Bug 4036537]
  453.  
  454. ________________
  455. DEBUGGER BUG FIX - The debugger "dump" command converted double 
  456. values to float values before displaying them. This bug has been fixed 
  457. in JDK 1.1.2.  [Bug 4046775]
  458.  
  459. _______________
  460. JAVADOC BUG FIX - The javadoc html output for interfaces repeated 
  461. the word "interface" in the signature. This bug has been fixed in 
  462. JDK 1.1.2.  [Bug 4041579]
  463.  
  464. __________________________
  465. JNI INVOCATION API CHANGES - To better support the JRE, the 
  466. Invocation API is extended in JDK 1.1.2 in a few minor ways. 
  467. The changes do not break any existing code. The JNI Native 
  468. Method Interface has not been changed. 
  469.  
  470. 1. The reserved0 field in the JDK1_1InitArgs structure has been
  471. renamed to "version." The JDK1_1InitArgs structure holds the
  472. initialization arguments to JNI_CreateJavaVM. Callers of 
  473. JNI_CreateJavaVM must set the version field to 0x00010001. 
  474. JNI_GetDefaultJavaVMInitArgs has been changed to return a "jint" 
  475. indicating whether the requested version is supported.
  476.  
  477. 2. The reserved1 field in the JDK1_1InitArgs structure has been
  478. renamed to "properties." This is a NULL-terminated array of 
  479. strings. Each string has the format:
  480.  
  481.             name=value
  482.  
  483. indicating a system property. (This facility corresponds to the -D
  484. option in the java command line.)
  485.  
  486. 3. In JDK 1.1.1, the thread calling DestroyJavaVM must be the only
  487. user thread in the VM. JDK 1.1.2 has lifted this restriction. If
  488. DestroyJavaVM is called when there is more than one user thread,
  489. the VM waits until the current thread is the only user thread, and
  490. then tries to destroy itself.
  491.  
  492. _________________________
  493. NEW jre COMMAND-LINE TOOL - The jre command-line tool is similar to 
  494. the java command-line tool, but is intended primarily for end users 
  495. who do not require the development-related options available with 
  496. the java tool. For more information on the jre tool, see 
  497. http://java.sun.com/products/jdk/1.1/docs/tooldocs/solaris/jre.html
  498. or http://java.sun.com/products/jdk/1.1/docs/tooldocs/win32/jre.html. 
  499. Source code for the jre tool can be found in the Windows JDK 1.1.2 
  500. directory tree in the jdk1.1.2\demo\jre\win32 folder. In the 
  501. Solaris JDK 1.1.2, jre source files can be found in the 
  502. jdk1.1.2/demo/jre/solaris directory.
  503.  
  504.  
  505. =======================================================================
  506. Changes from JDK 1.1_Final to JDK 1.1.1
  507. -----------------------------------------------------------------------
  508.  
  509. The following changes and bug fixes are in the JDK 1.1.1 final release.
  510. This is a maintenance release.
  511. ______________
  512. VERSION NUMBER - The version number for this release is "JDK1.1.1". 
  513.  
  514. _________
  515. BUG FIXES - This version contains the bug fixes listed at the 
  516.     web page mentioned above. 
  517.  
  518. ____________
  519. UTIL BUG FIX - Removed getMenu and getMenuBar methods from 
  520.     util.ResourceBundle class. [Bug 4036076]
  521.  
  522.     This bug fix is mentioned here because it fixes an API bug
  523.     in JDK 1.1.
  524.  
  525.     These two "convenience" methods were part of the beta release
  526.     and were mistakenly left in the final JDK 1.1 after we
  527.     discovered the design weakness they presented and decided to
  528.     remove them.  It is a bug that they were included in the 1.1
  529.     release, and you should not call these methods.   We have 
  530.     removed them in 1.1.1.  Being convenience methods, they are not 
  531.     essential, and alternate coding is simple.   
  532.  
  533.     To be more specific, the ResourceBundle class in JDK 1.1 
  534.     included the two methods:
  535.  
  536.     public final Menu getMenu(String key) 
  537.         throws MissingResourceException {
  538.              return (Menu) getObject(key);
  539.          }
  540.  
  541.      public final MenuBar getMenuBar(String key) 
  542.         throws MissingResourceException {
  543.              return (MenuBar) getObject(key);
  544.      }
  545.  
  546.     These "convenience" methods saved the user from having to
  547.     explicitly cast objects in a ResourceBundle that happened to 
  548.     be of type Menu or MenuBar, such as:
  549.     
  550.        (Menu)rb.getObject(key)
  551.     
  552.     The side effect was that by returning types Menu and MenuBar, this 
  553.     class referred to the awt package.  ResourceBundle is a relatively 
  554.     low level piece of the core however while AWT is a relatively high 
  555.     level piece. This dependency caused a number of problems.  Most 
  556.     notably it did not allow a Java runtime environment to be created 
  557.     that omitted the AWT package (such as in a server).
  558.     
  559.     Removing this dependency on AWT required removing these APIs 
  560.     completely from ResourceBundle.  This change, of course, breaks 
  561.     code that calls these methods.  The upside is that these two APIs 
  562.     were of very little marginal value.  They simply saved the user 
  563.     the effort of typing an explicit cast. Furthermore, since these
  564.     two methods were new at 1.1, they have not been available for
  565.     very long. 
  566.  
  567. _____________________
  568. AWT COMPONENT BUG FIX - Changed the field java.awt.Component.locale
  569.     from protected to private.  
  570.  
  571.     The locale field is accessible through getLocale() and 
  572.     setLocale() methods, and all code should be using those.  
  573.     This change is necessary to support future development of 
  574.     the lightweight framework.
  575.  
  576. ________________________
  577. AWT DATATRANSFER BUG FIX - Corrected the MIME type for DataFlavor.
  578.     [Bug 4037854]
  579.  
  580.     In JDK 1.1, java.awt.datatransfer.DataFlavor used the wrong MIME
  581.     type.  DataFlavor claimed that the MIME type for a java 
  582.     serialized object was: 
  583.  
  584.        application/x-javaserializedobject 
  585.  
  586.     This name is inconsistent with other existing names and common
  587.     conventions. The name has been corrected by adding hypens to it, 
  588.     as follows:
  589.  
  590.        application/x-java-serialized-object 
  591.  
  592.     This makes it consistent with: 
  593.  
  594.        application/java-vm 
  595.        application/x-java-vm 
  596.        application/x-java-archive 
  597.  
  598. ____________
  599. FONT CHANGES - Times, Helvetica, and Courier are now mapped to
  600.     Latin1 characters.
  601.  
  602.     Times, Helvetica, and Courier fonts are no longer mapped to 
  603.     non-Latin1 classes of fonts, such as Symbol or ZapfDingabats.
  604.     These three fonts are now mapped to Latin1 characters, just like
  605.     they were in version 1.0.
  606.  
  607.     If you want to have non-Latin1 characters, you must map fonts
  608.     such as Symbol and ZapfDingabats to the Java virtual fonts.  These
  609.     virtual font classes are Serif, Sans-serif, Monospaced, Dialog, 
  610.     and DialogInput.
  611.     
  612.  
  613. ===================================================================
  614. Changes from JDK 1.1beta3 to JDK 1.1_Final
  615. -------------------------------------------------------------------
  616.  
  617. The following changes and bug fixes are in the JDK 1.1 final release.
  618.  
  619. ______________
  620. VERSION NUMBER - The version number for this release is "JDK1.1_Final". 
  621.     Throughout the documentation we call it simply "JDK1.1"
  622.  
  623. ____________
  624. TEXT CHANGES - Extensive surface changes to Text package
  625.  
  626.     The following extensive changes in the Text package are the
  627.     result of a design review recently carried out to
  628.     simplify, rationalize and properly abstract the 
  629.     internationalization API.  We realized this would 
  630.     make a significant improvement in learning and using 
  631.     internationalization in Java.  
  632.  
  633.     The changes involve mostly surface changes, such as 
  634.     renaming and moving API, and changing the order of arguments,
  635.     to better conform with conventions established with the rest
  636.     of Java.
  637.  
  638. ____________
  639. TEXT CHANGES - CharacterIterator
  640.  
  641.     Removed getText method. CharacterIterators are intended to allow 
  642. character
  643.     at a time access to text without exposing how the text is actually 
  644. stored.
  645.     It is expected that some CharacterIterators will operate on text 
  646. that can
  647.     not easily or efficiently be stored as a String. Accessing the text 
  648. as a
  649.     whole should be the responsibility of the text object.
  650.  
  651.     Rename startIndex to getBeginIndex and rename endIndex to
  652.     getEndIndex. This is to follow established naming patterns for 
  653. getters and
  654.     setters as well as java.lang.String's convention for identifying 
  655. ranges in
  656.     text.
  657.  
  658. ____________
  659. TEXT CHANGES - ChoiceFormat
  660.  
  661.     Changed the constructor to take an array of Strings rather than an 
  662. array
  663.     of Objects.  String were the only type that made sense in this 
  664. context.
  665.  
  666.     Changed the setChoices method to take an array of Strings rather 
  667. than an
  668.     array of Objects.  String were the only type that made sense in 
  669. this
  670.     context.  
  671.  
  672.     Added applyPattern and toPattern methods similar to the methods on 
  673. other 
  674.     Format classes.
  675.  
  676.     Changed the format methods to take a FieldPosition rather than a
  677.     FormatStatus argument. See the change description for FormatStatus.
  678.     
  679.     Changed the parse method to take a ParsePosition rather than a 
  680. ParseStatus
  681.     argument. See the change description for ParseStatus.
  682.     
  683.     Added clone, hashCode and equals methods.  These are standard 
  684. overrides
  685.     and do not change the semantics.
  686.  
  687. ____________
  688. TEXT CHANGES - Collation
  689.  
  690.     Renamed class "Collator".  It was not clear from the old name 
  691. whether this
  692.     class actually did collation or simply represented a set of 
  693. collation
  694.     rules.  The new name makes it clear that the class performs string
  695.     comparisons.
  696.     
  697.     Removed the constants LESS, EQUAL and GREATER. Changed the compare 
  698. methods
  699.     to return the int value -1, 0 or 1 instead of LESS, EQUAL or 
  700. GREATER. This
  701.     follows the pattern used by the java.lang.String.compareTo method.
  702.     
  703.     Removed the greater and greaterOrEqual methods.  The same 
  704. information is
  705.     provided by the compare method.  Having only a compare and and 
  706. equals 
  707.     method mimics the comparison API provided by java.lang.String.
  708.     
  709.     Removed the compare(String, int, int, String, int, int) version of 
  710. the
  711.     compare method and the getSortKey(String, int, int) version of the
  712.     getSortKey method. A recent change to String.substring makes the 
  713. substring
  714.     operation efficient. Users can use String.substring to specify a 
  715. substring
  716.     rather than requiring methods to provide substring variants. 
  717. Slimming the
  718.     API makes it easier to learn.
  719.     
  720.     Changed the type of public constants from byte to int.  Changed the
  721.     getStrength and getDecomposition methods to return int instead of 
  722. byte.
  723.     Changed the setStrength and setDecomposition methods to accept int
  724.     arguments instead of byte.  Although the byte type provides a small 
  725. amount
  726.     of type safety, using ints for constants is more in keeping with 
  727. the rest
  728.     of the JDK.  The affected constants are:
  729.     
  730.      byte PRIMARY = 0;                 ==>    int PRIMARY = 0;                
  731.      byte SECONDARY = 1;               ==>    int SECONDARY = 1;              
  732.      byte TERTIARY = 2;                ==>    int TERTIARY = 2;               
  733.      byte IDENTICAL = 3;               ==>    int IDENTICAL = 3;              
  734.      byte NO_DECOMPOSITION = 0;        ==>    int NO_DECOMPOSITION = 0;       
  735.      byte CANONICAL_DECOMPOSITION = 1; ==>    int 
  736. CANONICAL_DECOMPOSITION = 1;
  737.      byte FULL_DECOMPOSITION = 2;      ==>    int FULL_DECOMPOSITION = 
  738. 2;     
  739.     
  740.     Removed the getDisplayName methods.  These returned the same result 
  741. as
  742.     the corresponding Locale.getDisplayName method calls.  Until we 
  743. have more
  744.     useful data, its better not to have these methods in the API.
  745.     
  746.     Provided a concrete equals method.  This allows sub-classes to 
  747. correctly
  748.     implement the equals method.
  749.     
  750.     Renamed getSortKey method to getCollationKey.  See the change 
  751. description
  752.     for getSortKey.
  753.     
  754.     Renamed getDefault methods to getInstance.  This follows new naming 
  755. pattern
  756.     for factory methods.
  757.  
  758. ____________
  759. TEXT CHANGES - CollatedString
  760.  
  761.     Removed this class.  Its purpose was to associate a String with its
  762.     CollationKey. CollationKey has been changed retain a reference to 
  763. the 
  764.     String it was generated from.  This allows us to reduce the size of 
  765. the 
  766.     API.
  767.  
  768. ____________
  769. TEXT CHANGES - CollationElementIterator
  770.  
  771.     Removed the public constructor. CollationElementIterators are 
  772. created by
  773.     RuleBasedCollator objects.  This was expressed by handing a
  774.     RuleBasedCollator object to the constructor.  This connection is 
  775. more
  776.     obvious if the CollationElementIterator can only be created by a 
  777. factory
  778.     method on RuleBasedCollator.
  779.  
  780.     Made the values returned by the next method directly comparable.  
  781. This is
  782.     not an API change but a semantic change for the next method.
  783.     
  784. ____________
  785. TEXT CHANGES - DateFormat
  786.  
  787.     Made the constructor protected.  DateFormat is an abstract class so 
  788. it
  789.     doesn't need a public constructor.
  790.     
  791.     Removed the getDisplayName methods.  These returned the same result 
  792. as
  793.     the corresponding Locale.getDisplayName method calls.  Until we 
  794. have more
  795.     useful data, its better not to have these methods in the API.
  796.     
  797.     Added a style called MEDIUM that does what DEFAULT does now. For 
  798. this
  799.     release, MEDIUM and DEFAULT have the same effect.  In future, the 
  800. meaning 
  801.     of DEFAULT will be determined from the locale data. This is a more 
  802.     logical organization of the style choices.
  803.     
  804.     Changed the format methods to take a FieldPosition rather than a
  805.     FormatStatus argument. See the change description for FormatStatus.
  806.     
  807.     Changed the parse and parseObject methods to take a ParsePosition 
  808. rather
  809.     than a ParseStatus argument. See the change description for 
  810. ParseStatus.
  811.     
  812.     Renamed the getTimeFormat methods to getTimeInstance.  Renamed the
  813.     getDateFormat methods to getDateInstance.  Renamed the 
  814. getDateTimeFormat
  815.     methods to getDateTimeInstance.  This follows new naming pattern
  816.     for factory methods.
  817.     
  818.     Added a getInstance() factory method that does the same thing as
  819.     getDateTimeFormat(SHORT,SHORT) previously did. This follows the 
  820. pattern 
  821.     for factories which provides for a getInstance() that returns a 
  822. default 
  823.     value to be always available.
  824.     
  825.     Renamed getValidationMode to isLenient.  Renamed setValidationMode 
  826. to
  827.     setLenient. These names are more descriptive.
  828.     
  829.     Change the type of public constants from byte to int.  Although the 
  830. byte
  831.     type provides a small amount of type safety, using ints for 
  832. constants is
  833.     more in keeping with the rest of the JDK. Also rename constants to 
  834. follow
  835.     the naming convention uses by JDK.  The results are:
  836.     
  837.      byte ERA_FIELD = 0;               ==> int ERA_FIELD = 0;
  838.      byte YEAR_FIELD = 1;              ==> int YEAR_FIELD = 1;
  839.      byte MONTH_FIELD = 2;             ==> int MONTH_FIELD = 2;
  840.      byte DATE_FIELD = 3;              ==> int DATE_FIELD = 3;
  841.      byte HOUROFDAY1_FIELD = 4;        ==> int HOUR_OF_DAY1_FIELD = 4;
  842.      byte HOUROFDAY0_FIELD = 5;        ==> int HOUR_OF_DAY0_FIELD = 5;
  843.      byte MINUTE_FIELD = 6;            ==> int MINUTE_FIELD = 6;
  844.      byte SECOND_FIELD = 7;            ==> int SECOND_FIELD = 7;
  845.      byte MILLISECOND_FIELD = 8;       ==> int MILLISECOND_FIELD = 8;
  846.      byte DAYOFWEEK_FIELD = 9;         ==> int DAY_OF_WEEK_FIELD = 9;
  847.      byte DAYOFYEAR_FIELD = 10;        ==> int DAY_OF_YEAR_FIELD = 10;
  848.      byte DAYOFWEEKINMONTH_FIELD = 11; ==> int 
  849. DAY_OF_WEEK_IN_MONTH_FIELD = 11;
  850.      byte WEEKOFYEAR_FIELD = 12;       ==> int WEEK_OF_YEAR_FIELD = 12;
  851.      byte WEEKOFMONTH_FIELD = 13;      ==> int WEEK_OF_MONTH_FIELD = 
  852. 13;
  853.      byte AMPM_FIELD = 14;             ==> int AM_PM_FIELD = 14;
  854.      byte HOUR1_FIELD = 15;            ==> int HOUR1_FIELD = 15;
  855.      byte HOUR0_FIELD = 16;            ==> int HOUR0_FIELD = 16;
  856.      byte TIMEZONE_FIELD = 17;         ==> int TIMEZONE_FIELD = 17;
  857.     
  858. ____________
  859. TEXT CHANGES - DateFormatData
  860.  
  861.     Renamed class to DateFormatSymbols.  This makes its purpose as a 
  862. set of
  863.     strings and symbols to be used in formatting clearer.
  864.     
  865.     Removed the millisPerHour protected field.  This was not an 
  866. appropriate
  867.     field in a collection of formatting symbols.
  868.     
  869.     Renamed getAmpms to getAmPmStrings.  Renamed setAmpms to 
  870. setAmPmStrings. 
  871.     The new names follow the capitalization standard and are clearer.
  872.     
  873.     Removed methods useLocalizedPattern and setPatternLocalized.  This
  874.     functionality can be obtained through the toLocalizedPattern and
  875.     applyLocalizedPattern methods of SimpleDateFormat. These methods 
  876. were not
  877.     appropriate in a collection of formatting symbols.
  878.     
  879. ____________
  880. TEXT CHANGES - DecimalFormat
  881.  
  882.     Renamed getThousandsInterval and setThousandsInterval methods to
  883.     getGroupingSize and setGroupingSize.  The new names are clearer.
  884.     
  885.     Renamed getFactor and setFactor methods to getMultiplier and 
  886. setMultiplier.
  887.     The new names are clearer.
  888.     
  889.     Changed the constructor that takes a NumberFormatData to use a
  890.     DecimalFormatSymbols object instead. See the change description for
  891.     NumberFormatData. 
  892.     
  893.     Added a constructor that takes just a String and figures out the 
  894. correct
  895.     DecimalFormatSymbols for the default locale.  This fills in the 
  896. telescope
  897.     pattern for constructors.
  898.     
  899.     Renamed getPattern method to toPattern. Also removed the boolean 
  900. argument
  901.     and instead added a toLocalizedPattern method. The new name better
  902.     reflects the fact that there is no "pattern" property, but rather a
  903.     pattern string is constructed that matches the current state of the
  904.     DecimalFormat object. Splitting the method into two allows many 
  905. users to
  906.     ignore the existence of toLocalizedPattern.
  907.     
  908.     Renamed setPattern method to applyPattern. Also removed the boolean 
  909.     argument and instead added an applyLocalizedPattern method. The new 
  910.     name better reflects the fact that there is no "pattern" property, 
  911.     but rather a pattern string is used to set the state of the 
  912. DecimalFormat 
  913.     object. Splitting the method into two allows many users to ignore 
  914. the 
  915.     existence of applyLocalizedPattern.
  916.     
  917.     Removed the "*" and "_" characters from the pattern syntax.  This 
  918. is not
  919.     strictly an api change but it is a semantic change.  These 
  920. characters were
  921.     of limited use the way they were implemented.
  922.     
  923.     Changed the format methods to take a FieldPosition rather than a
  924.     FormatStatus argument. See the change description for FormatStatus.
  925.     
  926.     Changed the parse method to take a ParsePosition rather than a
  927.     ParseStatus argument. See the change description for ParseStatus.
  928.     
  929.     Renamed getNumberFormatData to getDecimalFormatSymbols and changed 
  930. its
  931.     return type to DecimalFormatSymbols.  Renamed setNumberFormatData 
  932. to
  933.     setDecimalFormatSymbols and changed its argument type to
  934.     DecimalFormatSymbols.  See the change description for 
  935. NumberFormatData.
  936.     
  937. ____________
  938. TEXT CHANGES - Format
  939.     
  940.     Changed the format method to take a FieldPosition rather than a 
  941.     FormatStatus argument. See the change description for FormatStatus.
  942.     
  943.     Changed the parseObject method to take a ParsePosition rather than 
  944. a
  945.     ParseStatus argument. See the change description for ParseStatus.
  946.  
  947. ____________
  948. TEXT CHANGES - FormatException
  949.  
  950.     Renamed class to ParseException.  This better reflects its purpose.
  951.     
  952.     Removed the no argument constructor.  This constructor was not 
  953. useful.
  954.  
  955. ____________
  956. TEXT CHANGES - FormatStatus
  957.  
  958.     Renamed class to FieldPosition.  This better reflects its purpose 
  959. as an
  960.     object which describes where sub-fields are located in a formatted 
  961. string.
  962.     
  963.     Replaced public integer fields with getter methods.  Adjusted names 
  964. to
  965.     match pattern for indicating ranges in text.  The result:
  966.     
  967.      int alignField   ==> int getField()
  968.      int alignStart   ==> int getBeginIndex()
  969.      int alignEnd     ==> int getEndIndex()
  970.     
  971.     Replaced no argument constructor with a constructor that sets the 
  972. field.
  973.     A field value must always be set so this prevents invalid objects.  
  974.     It is also more convenient than doing it in two steps.
  975.     
  976. ____________
  977. TEXT CHANGES - MessageFormat
  978.  
  979.     Redesigned the syntax for message patterns to allow inlining of 
  980. other
  981.     pattern strings, such as date patterns, number patterns, choice 
  982. patterns
  983.     etc. This is not itself an API change but is a big semantic 
  984. difference.
  985.     This change allows complete message formats to be created in fewer 
  986. steps.
  987.  
  988.     Removed the constructor that took a String and a Format array.  
  989. This was
  990.     not needed with the new inline pattern syntax.
  991.  
  992.     Added a setFormat method which allows a single format to be set at 
  993. a time
  994.     rather than requiring all formats to be specified like the 
  995. setFormats
  996.     method. This is more convenient given the inline pattern syntax.
  997.  
  998.     Removed the format method that took a String, a Format array and an 
  999. Object
  1000.     array.  It was not necessary with the new inline pattern syntax.
  1001.  
  1002.     Changed the parse method that takes a single String argument to 
  1003. return an
  1004.     array of Objects rather than a single Object.  This makes more 
  1005. sense given
  1006.     the fact that a message may have many objects embedded in it.
  1007.     
  1008.     Changed the format methods to take a FieldPosition rather than a
  1009.     FormatStatus argument. See the change description for FormatStatus.
  1010.     
  1011.     Changed the parse method to take a ParsePosition rather than a 
  1012. ParseStatus
  1013.     argument. See the change description for ParseStatus.
  1014.     
  1015.     Renamed getPattern method to toPattern. The new name better 
  1016. reflects the
  1017.     fact that there is no "pattern" property. Rather a pattern string 
  1018. is
  1019.     constructed that matches the current state of the MessageFormat 
  1020. object.
  1021.     
  1022.     Renamed setPattern method to applyPattern. The new name better 
  1023. reflects
  1024.     the fact that there is no "pattern" property. Rather a pattern 
  1025. string is
  1026.     used to set the state of the MessageFormat object.
  1027.  
  1028.     Added setLocale and getLocale methods.
  1029.  
  1030. ____________
  1031. TEXT CHANGES - NumberFormat
  1032.  
  1033.     Renamed getDefaultCurrency to getCurrencyInstance.  Renamed
  1034.     getDefaultPercent to getPercentInstance.  Added a getNumberInstance
  1035.     factory.  Rename getDefault to getInstance.  This follows the 
  1036. naming
  1037.     pattern for factories.
  1038.     
  1039.     Removed getCurrencySymbol and getIntlCurrencySymbol methods. These 
  1040. will be
  1041.     added to a more appropriate class in a future release.
  1042.     
  1043.     In the methods called 
  1044. {get|set}{Minimum|Maximum}{Integer|Decimal}Count,
  1045.     rename the word Count to Digits and the word Decimal to Fraction.  
  1046. These
  1047.     names are clearer.
  1048.     
  1049.     Remove the methods isDecimalUsedWithInteger and
  1050.     setDecimalUsedWithInteger. These methods are now found in 
  1051. DecimalFormat
  1052.     under the names isDecimalSeparatorAlwaysShown
  1053.     setDecimalSeparatorAlwaysShown.
  1054.     
  1055.     Renamed setIntegerOnly to setParseIntegerOnly. Renamed 
  1056. isIntegerOnly to
  1057.     isParseIntegerOnly.
  1058.     
  1059.     Renamed {is|set}ThousandsUsed to {is|set}GroupingUsed.
  1060.     
  1061.     Removed the getDisplayName methods.  These returned the same result 
  1062. as
  1063.     the corresponding Locale.getDisplayName method calls.  Until we 
  1064. have more
  1065.     useful data, its better not to have these methods in the API.
  1066.     
  1067.     Renamed DECIMAL_FIELD to FRACTION_FIELD. Also changed its type from 
  1068. byte
  1069.     to int. This name is more general. Use of ints as constants is 
  1070. standard
  1071.     practice.
  1072.     
  1073.     Removed NUMERATOR_FIELD, DENOMINATOR_FIELD and EXPONENT_FIELD. This
  1074.     functionality was not supported in this release.
  1075.  
  1076. ____________
  1077. TEXT CHANGES - NumberFormatData
  1078.  
  1079.     Renamed class DecimalFormatSymbols. This makes its purpose as a set 
  1080. of
  1081.     strings and symbols to be used in formatting clearer.
  1082.     
  1083.     Added a default constructor which constructs an object suitable for 
  1084. the
  1085.     default locale.  Added a constructor which takes a locale.  These 
  1086. follow 
  1087.     the pattern set by DateFormatSymbols.
  1088.     
  1089.     Removed starDigit, spaceDigit and exponential fields.  This 
  1090. functionality 
  1091.     is not being supported by DecimalFormat.
  1092.     
  1093.     Changed public fields to getter/setter methods.  Adjusted the names 
  1094. of the
  1095.     methods for clarity.  The results are:
  1096.     
  1097.      char zeroDigit;         ==> getZeroDigit(), setZeroDigit()        
  1098.      char thousandsSign;     ==> getGroupingSeparator(), 
  1099. setGroupingSeparator()
  1100.      char decimalSign;       ==> getDecimalSeparator(), 
  1101. setDecimalSeparator()
  1102.      char millePercent;      ==> getPerMill(), setPerMill()               
  1103.      char percent;           ==> getPercent(), setPercent()               
  1104.      char digit;             ==> getDigit(), setDigit()               
  1105.      char separator;         ==> getPatternSeparator(), 
  1106. setPatternSeparator() 
  1107.      java.lang.String infinity; ==> getInfinity(), setInfinity()    
  1108.      java.lang.String nan;   ==> getNaN(), setNaN()
  1109.      char minusSign;         ==> getMinusSign(), setMinusSign()    
  1110.     
  1111.     Removed the static final char fields.  These were not appropriate 
  1112. for a
  1113.     collection of locale specific number formatting fields.  They were 
  1114. also 
  1115.     of little use outside the implementation of DecimalFormat. The 
  1116. removed 
  1117.     fields are:
  1118.     
  1119.      static final char patternZeroDigit = 48;
  1120.      static final char patternThousandsSign =
  1121.      static final char patternDecimalSign = 4
  1122.      static final char patternMillePercent = 
  1123.      static final char patternPercent = 37;  
  1124.      static final char patternDigit = 35;    
  1125.      static final char patternStarDigit = 42;
  1126.      static final char patternSpaceDigit = 95
  1127.      static final char patternSeparator = 59;
  1128.  
  1129. ____________
  1130. TEXT CHANGES - ParseStatus
  1131.  
  1132.     Renamed class ParsePosition.  This better reflects its purpose as 
  1133. an object
  1134.     which shows where parsing starts and stops.
  1135.     
  1136.     Removed no argument constructor. This was redundant and of no real
  1137.     convenience.
  1138.     
  1139.     Changed public field startAt to a getter/setter method pair.  Also
  1140.     adjusted names of the methods to suit the naming pattern for 
  1141. indicating
  1142.     characters in a String.  The results:
  1143.     
  1144.       startAt   ==> getIndex(), setIndex()
  1145.  
  1146. ____________
  1147. TEXT CHANGES - SimpleDateFormat
  1148.  
  1149.     Changed the format method to take a FieldPosition rather than a 
  1150.     FormatStatus argument. See the change description for FormatStatus.
  1151.     
  1152.     Changed the parse method to take a ParsePosition rather than a 
  1153. ParseStatus
  1154.     argument. See the change description for ParseStatus.
  1155.     
  1156.     Changed the constructor which took a DateFormatData object to use a
  1157.     DateFormatSymbols object instead.  See the change description for
  1158.     DateFormatData.
  1159.     
  1160.     Renamed getDateFormatData and setDateFormatData to 
  1161. getDateFormatSymbols 
  1162.     and setDateFormatSymbols. See the change description for 
  1163. DateFormatData.
  1164.     
  1165.     Renamed getPattern method to toPattern. Also removed the boolean 
  1166. argument 
  1167.     and instead added a toLocalizedPattern method. The new name better 
  1168.     reflects the fact that there is no "pattern" property, but rather a 
  1169.     pattern string is constructed that matches the current state of the 
  1170.     DecimalFormat object. Splitting the method into two allows many 
  1171. users 
  1172.     to ignore the existence of toLocalizedPattern.
  1173.     
  1174.     Renamed setPattern method to applyPattern. Also removed the boolean 
  1175.     argument and instead added an applyLocalizedPattern method. The new 
  1176.     name better reflects the fact that there is no "pattern" property, 
  1177. but 
  1178.     rather a pattern string is used to set the state of the 
  1179. DecimalFormat 
  1180.     object. Splitting the method into two allows many users to ignore 
  1181. the 
  1182.     existence of applyLocalizedPattern.
  1183.  
  1184.     Added a convenience no argument constructor.
  1185.  
  1186. ____________
  1187. TEXT CHANGES - SortKey
  1188.  
  1189.     Renamed class CollationKey.  This keeps the terminology consistent 
  1190. with
  1191.     the other collation classes.
  1192.     
  1193.     Added getSourceString method.  This returns the string that this 
  1194.     CollationKey represents. This allows the removal of the 
  1195. CollatedString 
  1196.     class.
  1197.     
  1198.     Added a toByteArray method that returns a byte[] containing the 
  1199. key. 
  1200.     
  1201.     Changed compareTo method to return int rather than byte.  This 
  1202. follows the
  1203.     pattern set by java.lang.String.compareTo.
  1204.     
  1205. ____________
  1206. TEXT CHANGES - StringCharacterIterator
  1207.  
  1208.     Added the following convenience constructor:
  1209.     
  1210.       public StringCharacterIterator(String text, int begin, int end, 
  1211. int pos) 
  1212.     
  1213.     Renamed startIndex method to getBeginIndex.  Renamed endIndex 
  1214. method to
  1215.     getEndIndex. These names are consistent with the pattern for 
  1216. indicating 
  1217.     ranges in strings.
  1218.     
  1219.     Removed the getText method.  See the change description for 
  1220.     CharacterIterator.
  1221.  
  1222. ____________
  1223. TEXT CHANGES - TableCollation
  1224.  
  1225.     Renamed class RuleBasedCollator.  It was not clear from the old 
  1226. name 
  1227.     whether this class actually did collation or simply represented a 
  1228. set 
  1229.     of collation rules.  The new name makes it clear that the class 
  1230. performs 
  1231.     string comparisons. It also avoids the impression that this class 
  1232.     collates tables.
  1233.     
  1234.     Renamed getSortKey method to getCollationKey.  See the change 
  1235. description 
  1236.     for SortKey. 
  1237.     
  1238.     Removed the getSortKey method that operated on a substring of a 
  1239. given 
  1240.     String.  A recent change to String.substring makes the substring 
  1241.     operation efficient. Users can use String.substring to specify a 
  1242.     substring rather than requiring methods to provide substring 
  1243. variants. 
  1244.     Slimming the API makes it easier to learn.
  1245.     
  1246.     Removed the compare method that operated on a substring of a given 
  1247. String. 
  1248.     A recent change to String.substring makes the substring operation
  1249.     efficient. Users can use String.substring to specify a substring 
  1250. rather 
  1251.     than requiring methods to provide substring variants. Slimming the 
  1252. API 
  1253.     makes it easier to learn.
  1254.     
  1255.     Changed compare to return an int value instead of a byte value.  
  1256. See 
  1257.     the change description for Collation.
  1258.     
  1259. ____________
  1260. TEXT CHANGES - TextBoundary
  1261.  
  1262.     Renamed class to BreakIterator.  This more clearly reflects its 
  1263. purpose.
  1264.     
  1265.     Renamed method nthFromCurrent to next(int). This is a less awkward 
  1266. name.
  1267.     
  1268.     Renamed method nextAfter to following.  This is a less awkward 
  1269. name.
  1270.     
  1271.     Changed the return type of getText to CharacterIterator.  Since
  1272.     BreakIterator works in terms of a CharacterIterator it didn't make 
  1273. sense
  1274.     to return a String.
  1275.     
  1276.     Renamed getWorkBreak methods to getWordInstance.  Renamed 
  1277. getLineBreak
  1278.     methods to getLineInstance. Renamed getCharacterBreak methods to
  1279.     getCharacterInstance. Renamed getSentenceBreak methods to
  1280.     getSentenceInstance.  This follows the naming pattern for factory 
  1281. methods.
  1282.  
  1283. ____________
  1284. UTIL CHANGES - Calendar
  1285.  
  1286.     Changed the type of the public constants from byte to int.  Changed 
  1287. the
  1288.     corresponding methods to accept and return ints instead of bytes.  
  1289. and
  1290.     getDecomposition methods to return int instead of byte.  Although 
  1291. the byte
  1292.     type provides a small amount of type safety, using ints for 
  1293. constants is 
  1294.     more in keeping with the rest of the JDK.  The results are:
  1295.   
  1296.      byte ERA = 0;                  ==>   int ERA = 0;                  
  1297.      byte YEAR = 1;                 ==>   int YEAR = 1;                 
  1298.      byte MONTH = 2;                ==>   int MONTH = 2;                
  1299.      byte WEEKOFYEAR = 3;           ==>   int WEEK_OF_YEAR = 3;         
  1300.      byte WEEKOFMONTH = 4;          ==>   int WEEK_OF_MONTH = 4;        
  1301.      byte DATE = 5;                 ==>   int DATE = 5;                 
  1302.      byte DAYOFMONTH = 5;           ==>   int DAY_OF_MONTH = 5;         
  1303.      byte DAYOFYEAR = 6;            ==>   int DAY_OF_YEAR = 6;          
  1304.      byte DAYOFWEEK = 7;            ==>   int DAY_OF_WEEK = 7;          
  1305.      byte DAYOFWEEKINMONTH = 8;     ==>   int DAY_OF_WEEK_IN_MONTH = 8; 
  1306.      byte AMPM = 9;                 ==>   int AM_PM = 9;                
  1307.      byte HOUR = 10;                ==>   int HOUR = 10;                
  1308.      byte HOUROFDAY = 11;           ==>   int HOUR_OF_DAY = 11;         
  1309.      byte MINUTE = 12;              ==>   int MINUTE = 12;              
  1310.      byte SECOND = 13;              ==>   int SECOND = 13;              
  1311.      byte MILLISECOND = 14;         ==>   int MILLISECOND = 14;         
  1312.      byte ZONEOFFSET = 15;          ==>   int ZONE_OFFSET = 15;         
  1313.      byte DSTOFFSET = 16;           ==>   int DST_OFFSET = 16;          
  1314.      byte FIELDCOUNT = 17;          ==>   int FIELD_COUNT = 17;         
  1315.                                            
  1316.      int get(byte);                 ==>   int get(int);
  1317.      set(byte,int);                 ==>   void set(int,int);
  1318.      void clear(byte);              ==>   void clear(int);
  1319.      void add(byte,int);            ==>   void add(int,int);     
  1320.      void roll(byte,boolean);       ==>   void roll(int,boolean);
  1321.      void setFirstDayOfWeek(byte);  ==>   void setFirstDayOfWeek(int);
  1322.      void setMinimalDaysInFirstWeek(byte);
  1323.                                     ==>   void 
  1324. setMinimalDaysInFirstWeek(int);
  1325.      int getMinimum(byte);          ==>   int getMinimum(int);         
  1326.      int getMaximum(byte);          ==>   int getMaximum(int);         
  1327.      int getGreatestMinimum(byte);  ==>   int getGreatestMinimum(int); 
  1328.      int getLeastMaximum(byte);     ==>   int getLeastMaximum(int);    
  1329.                                                
  1330.     
  1331.     Renamed getValidationMode to isLenient.  Renamed setValidationMode 
  1332. to
  1333.     setLenient. These names are more descriptive.
  1334.     
  1335.     Renamed the getDefault methods to getInstance.  This is in keeping 
  1336. with the
  1337.     pattern for naming factory methods.
  1338.  
  1339. ____________
  1340. UTIL CHANGES - GregorianCalendar
  1341.  
  1342.     Changed the type of the public constants from byte to int.  Changed 
  1343. the
  1344.     corresponding methods to accept and return ints instead of bytes.  
  1345. and
  1346.     getDecomposition methods to return int instead of byte.  Although 
  1347. the byte
  1348.     type provides a small amount of type safety, using ints for 
  1349. constants 
  1350.     is more in keeping with the rest of the JDK.  The results are:
  1351.      
  1352.      final byte AD = 0;           ==>      final int AD = 0; 
  1353.      final byte BC = 1;           ==>      final int BC = 1; 
  1354.     
  1355.      void add(byte,int);          ==>      void add(int,int);          
  1356.      void roll(byte,boolean);     ==>      void roll(int,boolean);       
  1357.      int getMinimum(byte);        ==>      int getMinimum(int);          
  1358.      int getMaximum(byte);        ==>      int getMaximum(int);          
  1359.      int getGreatestMinimum(byte);==>      int getGreatestMinimum(int);  
  1360.      int getLeastMaximum(byte);   ==>      int getLeastMaximum(int);     
  1361.                                      
  1362. ____________
  1363. UTIL CHANGES - ResourceBundle
  1364.  
  1365.     Renamed getResourceBundle methods to getBundle.  The name
  1366.     getResourceBundle was too long and overly redundant.  The new name 
  1367. is not
  1368.     in keeping with the naming pattern for factory methods.  This is 
  1369. because
  1370.     the name "getInstance" is being reserved for a future addition to 
  1371. the
  1372.     resource bundle classes.
  1373.     
  1374. __________
  1375. AWT CHANGE -  Compiling programs that use old AWT API now produces
  1376.               deprecation warnings
  1377.  
  1378.     In the beta versions of 1.1, the deprecated methods in the AWT were
  1379.     marked with simple "DEPRECATED" strings in the method's javadoc
  1380.     comment.  For the final release we have added the appropriate
  1381.     "@deprecated" tags to those methods so that you can use the
  1382.     appropriate compiler option to generate warnings that make it
  1383.     easier for you to convert your programs when you desire to do so.
  1384.  
  1385.     The document at the following URL describes how to convert to the
  1386.     1.1 AWT API.  It also links to a document that lists every 
  1387. deprecated
  1388.     method and its 1.1 substitute.
  1389.  
  1390.     
  1391. http://java.sun.com/products/JDK/1.1/docs/guide/awt/HowToUpgrade.html
  1392.  
  1393.     RATIONALE:
  1394.  
  1395.     The bulk of the AWT deprecations are a result of migrating the AWT
  1396.     towards JavaBeans compliance.  In particular, the two areas which
  1397.     required a significant number of deprecations were:
  1398.  
  1399.     - Properties (location, size, visibility, etc.)
  1400.       In order for introspection to be able to programmatically extract
  1401.       properties from AWT components, it was necessary to change the
  1402.       names of various methods to the JavaBeans getFoo/setFoo pattern.
  1403.     
  1404.     - New event model
  1405.       JavaBeans and the AWT have defined a new delegation-based event
  1406.       model for 1.1 which required significant changes to the event
  1407.       handling API.
  1408.     
  1409.     Finally, a small set of deprecated methods were changed to enhance
  1410.     the learnability and consistency of the toolkit API.
  1411.  
  1412. __________
  1413. AWT CHANGE -  Z-ordering changed back to 1.0.2 order
  1414.  
  1415.     For beta3, the Z-ordering for children in Container instances was
  1416.     defined in the documentation to be "back to front".  Because this
  1417.     was contrary to the default Z-ordering which existed in 1.0.2 (and
  1418.     the beta implementation), for FCS we have corrected the Z-ordering
  1419.     specification in containers to be "front to back".
  1420.  
  1421. __________
  1422. AWT CHANGE -  Changed names of newly-added APIs:
  1423.  
  1424.     The following APIs have been renamed ( from old name => to new name 
  1425. ):
  1426.  
  1427.      AverageScaleFilter    =>    AreaAveragingScaleFilter
  1428.      createScaledImage(...)    =>    getScaledInstance(...)
  1429.      SCALE_AVERAGE        =>    SCALE_AREA_AVERAGING
  1430.  
  1431.     RATIONALE:
  1432.     The method name was changed to "getScaledInstance(...)" to be
  1433.     consistent with the overall philosophy within the Java API where
  1434.     factories and derivative constructors should follow the naming
  1435.     convention of
  1436.  
  1437.         get<Flavor>Instance(...arguments...)
  1438.  
  1439.     The term "Average" was not descriptive of the algorithm applied by
  1440.     the default smooth scaling filter, so the name of this filter and
  1441.     its algorithm were changed to "AreaAveraging" to indicate what
  1442.     quantity was being averaged.
  1443.  
  1444. __________
  1445. AWT CHANGE - Changed dispatchEvent() method and added new method
  1446.              dispatchEventImpl()
  1447.  
  1448.     The codepath in dispatchEvent() really must be executed for event
  1449.     mechanics to work properly in the AWT (hence we made it 
  1450.     package-private).  We moved the implementation to a new
  1451.     package-private method (dispatchEventImpl()) and then 
  1452.     changed dispatchEvent() to be "public final" and have it
  1453.     call dispatchEventImpl() internally.
  1454.  
  1455.     RATIONALE:
  1456.     We have deprecated the 1.0 postEvent()/deliverEvent() methods,
  1457.     however the method that replaces those (dispatchEvent()) is
  1458.     currently package-private.  This left no options for folks
  1459.     porting to the new event model.
  1460.  
  1461. __________
  1462. AWT CHANGE - Changed capitalization of getId() to getID() in
  1463.     java.awt.AWTEvent
  1464.  
  1465.     Changed the method name to getID() and provided a deprecated 
  1466. version
  1467.     for compatibility with the beta versions.
  1468.  
  1469.     RATIONALE:
  1470.     java.awt.AWTEvent.getID() is named in a manner inconsistent with 
  1471.     the equivalent methods in other classes:
  1472.     java.awt.MediaTracker.getID()
  1473.     java.util.TimeZone.getID()
  1474.     sun.rmi.registry.RegistryImpl.getID()
  1475.     sun.rmi.transport.DGCImpl.getID()
  1476.  
  1477.     Developers have had trouble because they expected the naming to 
  1478.     be consistent.  This fixes bug 4027793.
  1479.  
  1480. __________
  1481. AWT CHANGE - Changed EventQueue to be non-system-specific
  1482.  
  1483.   The following changes were made to EventQueue:
  1484.   
  1485.   1)  Moved the static getEventQueue() method out of EventQueue
  1486.       and instead put it in Toolkit with the name 
  1487. "getSystemEventQueue()".
  1488.       Left the security check in that method, so that applets 
  1489.       cannot get access to the system queue instance (see also #3).
  1490.   
  1491.   2)  Added a public constructor to the EventQueue class such that
  1492.       multiple instances of it can be created.  This will allow 
  1493. programs
  1494.       to create and use the queue generically, as well as enable 
  1495. browser
  1496.       vendors to implement a queue/dispatch-thread-per-applet model.
  1497.   
  1498.   3)  Removed the overriding checkAwtEventQueueAccess() method in the 
  1499.       AppletSecurityManager such that it will always default to
  1500.       invoking lang.SecurityManager.checkAwtEventQueueAccess()
  1501.       and will *always* throw a security exception if an applet tries
  1502.       to get a handle on the system event queue.
  1503.   
  1504.   4)  Modified the EventQueue documentation so that it's clear that
  1505.       the class is very generic.  All references to a "system
  1506.       EventQueue" have been eliminated.
  1507.  
  1508.     RATIONALE:
  1509.     This allows the implementation of one dispatch thread per applet.
  1510.     It also provides design flexibility for the future.
  1511.  
  1512. __________
  1513. AWT CHANGE - Removed EventSource class
  1514.  
  1515.     Removed this class because it has no relation to the new event 
  1516. model. 
  1517.  
  1518. __________
  1519. AWT CHANGE - Changed API for delivery of window-open and 
  1520.              window-closed events
  1521.  
  1522.     Moved the window event API (addWindowListener,removeWindowListener,
  1523.     etc.) from Dialog and Frame to Window (their superclass) so
  1524.     that the code is there in one place.  
  1525.  
  1526.     RATIONALE:
  1527.     Centralizing the code eliminates duplication and makes it easier 
  1528.     to maintain.
  1529.  
  1530. __________
  1531. AWT CHANGE - Changed return type from Transferable.getTransferData
  1532.  
  1533.     Transferable.getTransferData returns class BufferedInputStream.
  1534.  
  1535. __________
  1536. AWT CHANGE - MenuShortcut class no longer extends java.awt.Event.
  1537.  
  1538. __________
  1539. AWT CHANGE - Changed button modifier mask values in InputEvent:
  1540.         BUTTON2_MASK is now equivalent to ALT_MASK 
  1541.             BUTTON3_MASK is now equivalent to META_MASK
  1542.  
  1543.     RATIONALE:
  1544.     A couple of mask constants were incorrectly defined in the
  1545.     InputEvent class.  These event masks are new in JDK1.1.
  1546.     
  1547.     This change will ensure that programs that depend on seeing the
  1548.     BUTTON1_MASK and BUTTON2_MASK will continue to work properly on
  1549.     platforms that have 1 and 2 button mice (because Alt/Meta can be
  1550.     used to generate these masks on those systems).
  1551.  
  1552.     This fixes bug 4029159: Button2/Button3 masks should have same 
  1553.     value as Alt/Meta in InputEvent
  1554.     
  1555. __________
  1556. AWT CHANGE - Change to serialization of AWT components
  1557.  
  1558.     Made a systematic change to the way JDK1.1 AWT does serialization.
  1559.  
  1560.     RATIONALE:
  1561.     This change corrects bug #4027305, and provides more carefully 
  1562.     thought-out and rational behaviour for AWT serialization in 
  1563. general. 
  1564.  
  1565.     These changes enable customers to use serialization to store
  1566.     Java Beans (in general) and to enable AWT implementations 
  1567.     to correctly interoperate between vendors.
  1568.  
  1569.     Implications for developers:
  1570.   
  1571.       - Saving graphs of AWT objects will now work, even if an object
  1572.         has more than one listener.
  1573.   
  1574.       - If an AWT object has listeners that are marked serializable, 
  1575. they
  1576.         will be saved and restored automatically, such as beans 
  1577.         interconnected with and saved to a file with the BeanBox. 
  1578.         Note that the BeanBox always code-generates serializable 
  1579.         listener implementations.
  1580.       
  1581.       - If an AWT object has listeners that aren't marked serializable
  1582.         they will be dropped at writeObject() time.
  1583.   
  1584.       - Developers will need, as always, to consider the implications 
  1585. of
  1586.         making an object serializable.  One idiom to watch out for is 
  1587.         this:
  1588.   
  1589.         import java.awt.*;
  1590.         import java.awt.event.*;
  1591.         import java.io.Serializable;
  1592.   
  1593.         class MyApp implements ActionListener, Serializable
  1594.         {
  1595.           BigObjectThatShouldNotBeSeralizedWithAButton bigOne;
  1596.           Button aButton = new Button();
  1597.   
  1598.           MyApp()
  1599.           {
  1600.              // Oops, now aButton has a listener with a 
  1601.              // reference to bigOne!
  1602.              aButton.addActionListener(this);    
  1603.           }
  1604.   
  1605.           public void actionPerformed(ActionEvent e)
  1606.           {
  1607.             System.out.println("Hello There");
  1608.           }
  1609.         }
  1610.   
  1611.     In this example, serializing aButton by itself will cause MyApp and
  1612.     everything it refers to to be serialized as well.  The problem
  1613.     is that the listener is serializable by coincidence, not by design.
  1614.     To separate the decisions about MyApp and the ActionListener being 
  1615.     serializable one can use an inner (nested) class, for example:
  1616.   
  1617.     import java.awt.*;
  1618.     import java.awt.event.*;
  1619.     import java.io.Serializable;
  1620.   
  1621.     class MyApp java.io.Serializable
  1622.     {
  1623.       BigObjectThatShouldNotBeSeralizedWithAButton bigOne;
  1624.       Button aButton = new Button();
  1625.   
  1626.       class MyActionListener implements ActionListener
  1627.       {
  1628.         public void actionPerformed(ActionEvent e)
  1629.         {
  1630.       System.out.println("Hello There");
  1631.         }
  1632.       }
  1633.   
  1634.       MyApp()
  1635.       {
  1636.          aButton.addActionListener(new MyActionListener());
  1637.       }
  1638.     }
  1639.  
  1640. __________
  1641. AWT CHANGE - Added setKeyChar() method to KeyEvent
  1642.  
  1643.     KeyEvent had a setKeyCode() already. This new method was needed
  1644.     to copy any changes a 1.0 style program may have made
  1645.     to an Event "key".  This fix ensures that all chars work
  1646.     properly in TextFields, like hitting <return> in HotJava's URL 
  1647. field.
  1648.  
  1649. __________
  1650. AWT CHANGE - Changed PaintEvent class to use a rectangle for damaged 
  1651. area
  1652.  
  1653.     Replaced PaintEvent's "Graphics" property with a Rectangle 
  1654.     representing a damaged area instead.  
  1655.  
  1656.     RATIONALE:
  1657.     Although the PaintEvent class is public, its use in AWT 
  1658.     is completely private -- it is used to trigger calls to paint(), 
  1659.     but programs never explicitly see the event object at all.
  1660.  
  1661. __________
  1662. AWT CHANGE - Defined a new constant in AWTEvent:
  1663.         RESERVED_ID_MAX
  1664.  
  1665.     This new constant is the maximum value of any AWT-defined event ID.
  1666.     Programs that need to create their own event types should use
  1667.     an ID greater than this max ID, so that the event will be properly
  1668.     passed through the system.
  1669.  
  1670.     RATIONALE:
  1671.     This is part of the fix for a problem that prevented anyone from
  1672.     being able to create their own event type and send it to a
  1673.     component. 
  1674.  
  1675.     This fixes bug 4028353: eventEnabled returns false for all but 
  1676.     AWT events; can't send custom event types.
  1677.  
  1678. ____________
  1679. BEANS CHANGE - Improved handling of beans that are applets
  1680.  
  1681.     Changed Beans.instantiate to check if a newly created or 
  1682. deserialized
  1683.     bean is an Applet.  If so, it is given a minimal AppletStub and
  1684.     AppletContext and its init method is called.
  1685.  
  1686.     After developers have added a newly instantiated bean to an AWT
  1687.     container, they should check if it is an Applet and if so call
  1688.     Applet.start.
  1689.  
  1690.     Also, developers need to test "wanna-be" applet/beans against
  1691.     Beans.instantiate.
  1692.  
  1693. ____________
  1694. BEANS CHANGE - Serializable listener fix for Beans classes
  1695.  
  1696.     The java.beans package contains two utility classes, 
  1697.     PropertyChangeSupport and VetoableChangeSupport, that manage
  1698.     a list of event listeners.  The change was to make the way 
  1699.     these classes are serialized consistent with the AWT.
  1700.  
  1701.     RATIONALE
  1702.     In beta3 these two classes were inconsistent with the AWT,
  1703.     which meant there was no support for selectively saving and 
  1704.     restoring listeners marked serializable.  The changes are 
  1705.     all class private. 
  1706.  
  1707. _______________
  1708. SECURITY CHANGE - Key is now an interface
  1709.  
  1710.     Made Key an interface and updated relevant clients.  Removed all 
  1711.     implementation from Key to make it an interface. Moved its 
  1712.     implementation into sun.security.
  1713.  
  1714.     RATIONALE:
  1715.     Key as an interface is more flexible and easier to implement than 
  1716.     a mix of interfaces and classes.
  1717.  
  1718. _______________
  1719. SECURITY CHANGE - Changed names of factory methods
  1720.  
  1721.     Changed factory names from <Engine>.get<Engine> to get<Engine>.
  1722.  
  1723.     RATIONALE:
  1724.     Factory method names were MessageDigest.getMessageDigest, 
  1725.     Signature.getSignature, etc. A better naming scheme is 
  1726. Signature.get, 
  1727.     MessageDigest.get, etc. This is important when you start casting 
  1728. the 
  1729.     results to some fairly long interface names, for example:  
  1730.     DSAKeyGen keyGen = 
  1731. (DSAKeyGen)KeyGenerator.getKeyGenerator("DSA");
  1732.  
  1733. _______________
  1734. SECURITY CHANGE - Changed Provider SPI for java.security.Signature
  1735.     Initialization 
  1736.  
  1737.     The SPI is the Service Provider Interface, which Providers write 
  1738. to. 
  1739.     There currently are two providers: SUN and JSAFE.
  1740.  
  1741.     a) Changed the arguments to two initialization method in Signature
  1742.        from (byte[], String) to (Key)
  1743.     b) Made one method in key public.
  1744.     c) Added a small interface (no implementation): DSAPrivateKey
  1745.  
  1746.     Changed java.security.Signature and sun.security.provider.DSA.
  1747.  
  1748. _______________
  1749. SECURITY CHANGE- API changes to Signature, MessageDigest, and 
  1750.     KeyPairGenerator
  1751.  
  1752.     Signature
  1753.       public Signature get(String algorithm)     ->
  1754.       public Signature getInstance(String algorithm)
  1755.     
  1756.       public Signature get(String algorithm, String provider) ->
  1757.       public Signature getInstance(String algorithm, String provider)
  1758.  
  1759.     MessageDigest
  1760.       public MessageDigest get(String algorithm) ->
  1761.       public MessageDigest getInstance(String algorithm)
  1762.  
  1763.       public MessageDigest get(String algorithm, String provider) ->
  1764.       public MessageDigest getInstance(String algorithm, String 
  1765. provider)
  1766.  
  1767.     KeyPairGenerator
  1768.       public KeyPairGenerator get(String algorithm) ->
  1769.       public KeyPairGenerator getInstance(String algorithm)
  1770.     
  1771.       public KeyPairGenerator get(String algorithm, String provider) ->
  1772.       public KeyPairGenerator getInstance(String algorithm, String 
  1773. provider)
  1774.  
  1775. _______________
  1776. SECURITY CHANGE - Changed key generation API
  1777.  
  1778.     The change consisted of moving a set of existing methods from 
  1779.     Signature to a new KeyPairGenerator class.
  1780.  
  1781.     API change:
  1782.     a) Moved key generation calls from signature to a new
  1783.        KeyPairGenerator class
  1784.     b) Added a small DSAKeyPairGenerator interface, which specializes
  1785.        behavior for DSA key generation. 
  1786.  
  1787.     The change  consisted of moving 3 abstract API methods to a new 
  1788. class.
  1789.     - defined a KeyGenerator factory method (identical to
  1790.       Signature's).
  1791.     - added one line to ths sun.security.provider.DSA class.
  1792.     - added one line to ths sun.security.provider.Sun class.
  1793.     - updated API clients in JDK (there are two of them).
  1794.  
  1795.  
  1796.     RATIONALE:
  1797.     Customer feedback makes a strong case for moving the
  1798.     Signature class key generation calls into its own class. Key
  1799.     generation is currently implemented as part of the Signature
  1800.     class. While it provides a uniform, algorithm-independent
  1801.     key-generation semantics, it is hard to understand (and therefore 
  1802. to
  1803.     use). It has confused users both internally and externally.
  1804.   
  1805. __________
  1806. JAR CHANGE - Can now handle compressed JAR files in the CLASSPATH
  1807.  
  1808.     java.util.zip.ZipFile was enhanced so that it can now handle 
  1809.     compressed ZIP/JAR file entries. No changes to the API were made. 
  1810.     With this change, compressed JAR/ZIP files can now be handled
  1811.     by javac.
  1812.  
  1813.     Additionally, the runtime has also changed so that it can now
  1814.     handle compressed ZIP/JAR files that are specified in the 
  1815. CLASSPATH.
  1816.  
  1817. ___________
  1818. LANG CHANGE - Removed a constructor and two methods from 
  1819. java.lang.Throwable
  1820.  
  1821.     - Removed the Throwable(String, Object[]) constructor 
  1822.     - Removed the setArguments() method 
  1823.     - Removed the getArguments() method 
  1824.  
  1825.     RATIONALE:
  1826.     The arguments property was originally added to java.lang.Throwable 
  1827. for 
  1828.     use in the generation of localized messages.  This was deemed 
  1829. premature, 
  1830.     and so the property was removed in order to avoid tempting 
  1831. programmers 
  1832.     to use it for some other purpose.
  1833.  
  1834. _________
  1835. IO CHANGE - Deprecated constructor StreamTokenizer(InputStream)
  1836.  
  1837.     This fixed bug 4025998.
  1838.  
  1839.     RATIONALE:
  1840.     The StreamTokenizer(InputStream) constructor was not 
  1841. binary-compatible 
  1842.     with JDK 1.0.2.  This constructor was changed in JDK1.1 to convert 
  1843.     automatically from bytes to characters using the platform's default
  1844.     character encoding, but that change required buffering input data, 
  1845.     which breaks binary compatibility.  This change has been removed.
  1846.  
  1847. ____________________________
  1848. JAVA NATIVE INTERFACE CHANGE - Changed the names of VM initialization
  1849. and thread-attach structures
  1850.  
  1851.     Changed the JDK initialization structure name from JavaVMInitArgs 
  1852. to 
  1853.     JDK1_1InitArgs to make it clear that it is JDK1.1 specific.
  1854.  
  1855.     Similarly, ThreadAttachArgs has changed its name to 
  1856. JDK1_1AttachArgs.
  1857.  
  1858.     RATIONALE:
  1859.     When a native application uses the invocation API to start up
  1860.     the VM, it passes the VM an initialization structure. Since in
  1861.     general different VM implementations require different 
  1862.     initialization information (min/max heap size, native stack size,
  1863.     enable debugging, etc.), the JNI spec explicitly says
  1864.     that the contents of the structure vary among VM implementations.
  1865.     However, the JDK initialization structure, JavaVMInitArgs, gives 
  1866.     the wrong impression that it should work with other VMs. This has
  1867.     caused confusion on how to implement the JNI without conflicting
  1868.     with JDK's naming scheme.
  1869.  
  1870. ____________________________
  1871. JAVA NATIVE INTERFACE CHANGE - Changed NewStringUTF parameters
  1872.  
  1873.     Removed the length argument, strlen(s, from NewStringUTF().  The
  1874.     signature for this method is now:
  1875.  
  1876.     jstring NewStringUTF(JNIEnv *env, const char *s);
  1877.  
  1878.     RATIONALE:
  1879.     NewStringUTF constructs a Java string from a UTF string. Although 
  1880.     UTF strings are already 0-terminated, the function required an
  1881.     unnecessary length argument, forcing the programmer to write:
  1882.  
  1883.     NewStringUTF(env, s, strlen(s))
  1884.  
  1885.     instead of just:
  1886.  
  1887.     NewStringUTF(env, s) 
  1888.  
  1889. ____________________________
  1890. JAVA NATIVE INTERFACE CHANGE - Changed DeleteLocalRef and 
  1891. DeleteGlobalRef
  1892.  
  1893.     Now programmers can pass local or global references to 
  1894. DeleteLocalRef 
  1895.     and DeleteGlobalRef directly, instead of having to pass the address 
  1896.     of these references.
  1897.  
  1898.     RATIONALE:
  1899.     DeleteLocalRef and DeleteGlobalRef delete local or global 
  1900. references
  1901.     created by the JNI. They used to take the address of the reference,
  1902.     forcing programmers to write:
  1903.  
  1904.     DeleteLocalRef(&ref)
  1905.  
  1906.     now references are passed as follows:
  1907.  
  1908.     DeleteLocalRef(ref)
  1909.  
  1910. ____________________________
  1911. JAVA NATIVE INTERFACE CHANGE - Changed the "IsSubclassOf" function name
  1912.     to "IsAssignableFrom."
  1913.  
  1914.     RATIONALE:
  1915.     The following JNI (Java Native Interface) function was misnamed:
  1916.  
  1917.         jboolean IsSubclassOf(JNIEnv *env, jclass clazz1, 
  1918.                                            jclass clazz2);
  1919.  
  1920.     It did not match the Java Language Specification's definition 
  1921.     of the "subclass" relationship.
  1922.  
  1923.     The Reflection API has a similar method in java.lang.Class:
  1924.     
  1925.         boolean isAssignableFrom(Class class);
  1926.         
  1927.     This is a much more suitable name. The JNI function therefore 
  1928. changed 
  1929.     its name to:
  1930.     
  1931.         jboolean IsAssignableFrom(JNIEnv *env, jclass clazz1, 
  1932.                                                jclass clazz2);
  1933.  
  1934. ____________________________
  1935. JAVA NATIVE INTERFACE CHANGE - Change RegisterNatives so that it
  1936.     takes all the information in one array.
  1937.  
  1938.     RATIONALE:
  1939.     In beta3, the RegisterNatives function took three arrays
  1940.     containing native method names, signatures and function entry 
  1941.     pointers, respectively:
  1942.     
  1943.         jint RegisterNatives(JNIEnv env, jclass clazz, 
  1944.                const char *names[],
  1945.                const char *signatures[];
  1946.                void *nativeProcs[]);
  1947.          
  1948.     These arrays had to be of the same length, and had to be NULL-
  1949.     terminated. It's better to put all the info in a single array,
  1950.     and pass the length of the array as another argument:
  1951.     
  1952.         struct JNINativeMethod {
  1953.             char* name;
  1954.             char* signature;
  1955.             void* fnPtr;
  1956.         };
  1957.         typedef struct JNINativeMethod JNINativeMethod;
  1958.  
  1959.         void RegisterNatives(JNIEnv* env, jclass classID, 
  1960.                   const JNINativeMethod methods[], jsize count);
  1961.  
  1962.     Here's how code that uses this looks in FCS:
  1963.  
  1964.         JNINativeMethodSpec methods[] = {
  1965.             { "sin", "(D)D", &::sin },
  1966.             { "cos", "(D)D", &::cos },
  1967.             { "tan", "(D)D", &::tan }
  1968.         };
  1969.         env->RegisterNatives(env->FindClass("java/lang/Math"), methods, 
  1970. 3);
  1971.  
  1972.     Here's how the same code used to look in beta3:
  1973.  
  1974.         const char* names[] = { "sin", "cos", "tan", NULL };
  1975.         const char* signatures[] = { "(D)D", "(D)D", "(D)D", NULL };
  1976.         void* procs[] = { &::sin, &::cos, &::tan, NULL };
  1977.         env->RegisterNatives(env->FindClass("java/lang/Math"), 
  1978.                              names, signatures, proc);
  1979.     
  1980.     The former approach is clearer.
  1981.  
  1982. ____________________________
  1983. JAVA NATIVE INTERFACE CHANGE - Changed the typing scheme of references
  1984.     to Java objects.
  1985.  
  1986.     In JDK Beta 3, reference types are defined as follows:
  1987.  
  1988.     typedef void *jref;    /* generic type for references */
  1989.     typedef jref jobject;  /* Java objects */
  1990.     typedef jref jclass;   /* Java class objects */
  1991.     typedef jref jstring;  /* Java strings */
  1992.     typedef jref jarray;   /* Java arrays */
  1993.  
  1994.     The distinction between jref and jobject was not clear. In 1.1 FCS,
  1995.     we got rid of jref, and introduced additional reference types to 
  1996. more
  1997.     accurately convey the subtyping information. We introduced dummy 
  1998. C++
  1999.     classes to enforce the subtyping relationships:
  2000.  
  2001.     #ifdef __cplusplus
  2002.  
  2003.     class _jobject {};
  2004.     class _jclass : public _jobject {};
  2005.     class _jthrowable : public _jobject {};
  2006.     class _jstring : public _jobject {};
  2007.     class _jarray : public _jobject {};
  2008.     class _jbooleanArray : public _jarray {};
  2009.     class _jbyteArray : public _jarray {};
  2010.     class _jcharArray : public _jarray {};
  2011.     class _jshortArray : public _jarray {};
  2012.     class _jintArray : public _jarray {};
  2013.     class _jlongArray : public _jarray {};
  2014.     class _jfloatArray : public _jarray {};
  2015.     class _jdoubleArray : public _jarray {};
  2016.     class _jobjectArray : public _jarray {};
  2017.  
  2018.     typedef _jobject *jobject;
  2019.     typedef _jclass *jclass;
  2020.     typedef _jthrowable *jthrowable;
  2021.     typedef _jstring *jstring;
  2022.     typedef _jarray *jarray;
  2023.     typedef _jbooleanArray *jbooleanArray;
  2024.     typedef _jbyteArray *jbyteArray;
  2025.     typedef _jcharArray *jcharArray;
  2026.     typedef _jshortArray *jshortArray;
  2027.     typedef _jintArray *jintArray;
  2028.     typedef _jlongArray *jlongArray;
  2029.     typedef _jfloatArray *jfloatArray;
  2030.     typedef _jdoubleArray *jdoubleArray;
  2031.     typedef _jobjectArray *jobjectArray;
  2032.  
  2033.     #else
  2034.  
  2035.     struct _jobject;
  2036.  
  2037.     typedef struct _jobject *jobject;
  2038.     typedef jobject jclass;
  2039.     typedef jobject jthrowable;
  2040.     typedef jobject jstring;
  2041.     typedef jobject jarray;
  2042.     typedef jarray jbooleanArray;
  2043.     typedef jarray jbyteArray;
  2044.     typedef jarray jcharArray;
  2045.     typedef jarray jshortArray;
  2046.     typedef jarray jintArray;
  2047.     typedef jarray jlongArray;
  2048.     typedef jarray jfloatArray;
  2049.     typedef jarray jdoubleArray;
  2050.     typedef jarray jobjectArray;
  2051.  
  2052.     #endif
  2053.  
  2054.     JNI function types have been modified accordingly to accept or 
  2055. return
  2056.     the newly introduced reference types.
  2057.  
  2058. ____________________________
  2059. JAVA NATIVE INTERFACE CHANGE - Changed the typing of certain primitive
  2060.     types:
  2061.  
  2062.     The following types in earlier versions of JDK:
  2063.  
  2064.     typedef char jboolean;
  2065.     typedef char jbyte;
  2066.     typedef unsigned long jsize;
  2067.  
  2068.     have been changed to:
  2069.  
  2070.     typedef unsigned char jboolean;
  2071.     typedef signed char jbyte;
  2072.     typedef jint jsize;
  2073.  
  2074.     in JDK 1.1 FCS.
  2075.  
  2076.     Earlier, jsize was defined to be an unsigned integer type that has
  2077.     the same number of bits as a native pointer. The idea was to use
  2078.     jsize to represent array length and size, etc. However, there has
  2079.     been a great deal of confusion on what operations are available 
  2080.     on jsize, whether it is safe to convert jsize to int, etc. We
  2081.     changed jsize to be the same as jint because Java arrays and
  2082.     strings cannot be longer than 2^31 anyway. All standard Java
  2083.     methods that operate on arrays and strings use "int" as the
  2084.     length and size types.
  2085.  
  2086. ___________
  2087. TOOL CHANGE - New argument -s added to javap
  2088.  
  2089.     -s: Print method and field type signature information in the 
  2090. internal
  2091.         form used by the Java Virtual Machine.  This is the form 
  2092. through
  2093.         which a user of the Java Native Interface (JNI) refers to 
  2094. methods
  2095.         and fields. Using javap with the -s flag to print method and 
  2096. field
  2097.         information for a class to be accessed with the JNI avoids the 
  2098.         difficulty of constructing signatures in the obscure internal 
  2099.         format manually.
  2100.     
  2101.     Examples of use:
  2102.  
  2103.     % cat foo.java
  2104.     class foo {
  2105.         Thread thread;
  2106.         int i;
  2107.         public static void main(String args[]) {
  2108.         }
  2109.         private void foo() {}
  2110.     }
  2111.  
  2112.     % javap -p foo
  2113.     Compiled from foo.java
  2114.     class foo extends java.lang.Object 
  2115.         /* ACC_SUPER bit set */ 
  2116.     {
  2117.         java.lang.Thread thread;
  2118.         int i;
  2119.         public static void main(java.lang.String []);
  2120.         private void foo();
  2121.         foo();
  2122.     }
  2123.  
  2124.     % javap -p -s foo
  2125.     Compiled from foo.java
  2126.     class foo extends java.lang.Object 
  2127.         /* ACC_SUPER bit set */
  2128.     {
  2129.         thread Ljava/lang/Thread;
  2130.         i I
  2131.         public static main ([Ljava/lang/String;)V
  2132.         private foo ()V
  2133.         <init> ()V
  2134.     }
  2135.  
  2136. ___________
  2137. TOOL CHANGE - Added -deprecation flag to javac
  2138.  
  2139.     By default, when compiling a class that contains deprecated APIs, 
  2140.     javac now displays only a brief note, rather than immediately
  2141.     listing all of the deprecated APIs.  For example:
  2142.  
  2143.     % javac MyClass.java
  2144.     Note: MyClass.java uses deprecated APIs.  Recompile with 
  2145. "-deprecation" 
  2146.     for details.
  2147.  
  2148.     Then, you can re-compile using the -deprecation flag to get the
  2149.     name of the deprecated constructor, field, method, class or 
  2150.     interface.
  2151.  
  2152.     % javac -deprecation MyClass.java
  2153.     MyClass.java:3: Note: The constructor java.lang.String(byte[],int)
  2154.     has been deprecated.
  2155.         new String(new byte[0], 0);
  2156.         ^
  2157.     Note: wombat.java uses deprecated APIs.  Please consult the 
  2158.     documentation for a better alternative.
  2159.  
  2160.     At this point, please refer to the JDK API Reference documentation
  2161.     (the javadoc-generated web pages) jdk1.1/docs/api/packages.html.
  2162.     If you look up the deprecated API, it should give you more details
  2163.     such as which API replaces it.    
  2164.  
  2165.     To summarize the compiler options:
  2166.         javac -nowarn       => complete silence
  2167.         javac               => a one-line comment about deprecations
  2168.         javac -deprecation  => a full report
  2169.  
  2170.     RATIONALE:
  2171.     This can greatly reduce the amount of warning by default, allowing 
  2172.     developers to concentrate on the errors, and to have a graceful
  2173.     migration towards updating their deprecated code.
  2174.  
  2175.  
  2176. ===================================================================
  2177. Changes from JDK 1.1beta2 to JDK 1.1beta3
  2178. -------------------------------------------------------------------
  2179.  
  2180. The following changes and bug fixes are in the JDK 1.1beta3 release.
  2181.  
  2182. ______________
  2183. VERSION NUMBER - The version number for this release is 
  2184. "JDK1.1beta3.3". 
  2185.  
  2186.     Versions beta3.1 and beta3.2 were internal candidates that were 
  2187.     never released.
  2188.     You can get the version number of your particular release by 
  2189. executing:
  2190.  
  2191.         java -version
  2192.  
  2193. _______________
  2194. PACKAGE CHANGES - Two new packages in java.*: java.beans and java.math
  2195.     Changes in these packages are described in more detail below.
  2196.  
  2197. ________________
  2198. JAVABEANS CHANGE - JavaBeans1.0 is now part of JDK1.1
  2199.     The classes that define the JavaBeans 1.0 API specification
  2200.     are now part of JDK1.1.  These classes are part of BDK1.0
  2201.     beta1 and beta2; there will be a BDK1.0beta3 that synchronizes
  2202.     with JDK1.1beta3.
  2203.  
  2204.   - There has been one change in the JavaBeans APIs: the string
  2205.     argument to Beans.instantiate() has changed. The argument
  2206.     used to be the path to a serialized bean, it is now the
  2207.     name of a bean, which may be serialized, or just a class name.
  2208.  
  2209. ______________
  2210. GENERAL CHANGE - Extended the core API methods that take a PrintStream 
  2211.     argument so they can also take a PrintWriter argument.
  2212.  
  2213.     Several constructors and methods have been added to make the 
  2214.     new PrintWriter class easier to use.  
  2215.  
  2216. _________
  2217. IO CHANGE - Merged the functionality of the ByteToCharConverter 
  2218.     and CharToByteConverter classes into the InputStreamReader and
  2219.     OutputStreamWriter classes.
  2220.  
  2221.     The ByteToCharConverter and CharToByteConverter classes 
  2222.     are no longer public, so various constructors and methods
  2223.     that previously took converter arguments now accept names
  2224.     of character encodings.  The InputStreamReader and 
  2225.     OutputStreamWriter classes no longer commit to buffering
  2226.     the underlying byte stream.  Details on these and other
  2227.     changes may be found at:
  2228.  
  2229.     http://java.sun.com/products/JDK/1.1/docs/guide/io/b3-changes.html
  2230.  
  2231. ___________
  2232. LANG CHANGE - New method: identityHashCode in java.lang.System
  2233.  
  2234.     Its signature is:
  2235.  
  2236.     public static native int identityHashCode(Object x);
  2237.  
  2238.     It returns the same hashcode for the given object as
  2239.     would be returned by the default method hashCode(),
  2240.     whether or not the given object's class overrides hashCode().
  2241.     The hashcode for the null reference is zero.
  2242.  
  2243.     RATIONALE:  
  2244.     In previous releases, Java lacked a constant-time
  2245.     identity hash function.  This meant there was no way to build
  2246.     a hash table which keyed on object identity, and for which
  2247.     access would be a constant-time operation.
  2248.  
  2249.     Java supplied a constant-time identity comparison operation 
  2250.     (the built-in operator ==) but did not supply a corresponding
  2251.     constant-time identity hash operation.
  2252.  
  2253.     This new method is very useful when the object in question does
  2254.     override equals and hashCode, but the guts of some abstraction
  2255.     is working with canonicalized instances, such as interned 
  2256.     strings, and needs to use them as keys for fast lookups.
  2257.  
  2258.     Although this is sometimes done by wrapping the string-like
  2259.     object inside another object which does not override equals 
  2260.     and hashCode, it's desirable to allow such objects to be used
  2261.     directly as keys in identity tables, to avoid the overhead 
  2262.     of allocating the wrappers.
  2263.  
  2264.     When performance is not an issue, the method Object.hashCode() 
  2265.     suffices, even if it is slow (as with strings), but when
  2266.     performance must be maximized, neither the wrapper technique 
  2267.     nor the slow hashCode() method is workable, and only a fast
  2268.     identityHashCode() method will be suitable.
  2269.  
  2270. ___________
  2271. LANG CHANGE - getResourceAsName(String) changed to getResource(String)
  2272.  
  2273.     java.lang.Class and java.lang.ClassLoader used to have methods 
  2274.     with signature:
  2275.  
  2276.        String getResourceAsName(String)
  2277.  
  2278.     which would return an external representation to a URL to
  2279.     the desired resource file.  These methods have been replaced
  2280.     by methods with signature
  2281.  
  2282.        java.net.URL getResource(String)
  2283.  
  2284.     which return the actual URL (or null if the resource is not found).
  2285.  
  2286. ___________
  2287. AWT CHANGES - New type of event: ContainerEvent
  2288.  
  2289.   This change provides the hooks for containers to easily register 
  2290. event 
  2291.   listeners on descendents.
  2292.  
  2293.   - Added new ContainerEvent class and equivalent ContainerListener 
  2294.     interface to enable notification when components are added/removed
  2295.     from containers.  This makes it relatively easy for containers 
  2296.     to register themselves as listeners for events on all of their 
  2297.     descendents.
  2298.  
  2299.   - Added the addContainerListener/removeContainerListener methods
  2300.     to Container.
  2301.  
  2302.   RATIONALE:
  2303.   In beta2 the event model provided no reasonable mechanism
  2304.   to allow containers to get input events which occurred in their
  2305.   descendents, which turns out to be a fairly common need.
  2306.   The 1.0 event model allowed this by automatically propagating
  2307.   events up the containment hierarchy until some component returned
  2308.   "true" to absorb the event and stop the propagation.  While this
  2309.   seems powerful (and it's easy), the 1.0 propagation model is error
  2310.   prone and results in poor performance. 
  2311.      
  2312. ___________
  2313. AWT CHANGES - Further Fine-Tuning of AWT Input Event Related API
  2314.  
  2315.   Responding to customer feedback and testing, we made the following
  2316.   changes to the API in the java.awt and java.awt.event packages:
  2317.  
  2318.   - Added a TextEvent class and TextListener interface to enable
  2319.     programs to track all changes to a text component, including
  2320.     paste and programmatic modifications.  (Bug #4014945)
  2321.  
  2322.   - Added new windowActivated/windowDeactivated event types to 
  2323. WindowEvent 
  2324.     to enable programs to determine when a window gets/loses focus.
  2325.   
  2326.   - Added isTemporary method to FocusEvent to enable determining the
  2327.     difference between when focus is explicitly moved between 
  2328. components
  2329.     and when focus temporarily changes (such as when a window is
  2330.     de-activated).
  2331.   
  2332.   - Added a consume method to the InputEvent class, enabling any object
  2333.     to consume input events.  Previously, only the Component associated
  2334.     with the input event could consume it.
  2335.  
  2336.   - Made the AWTEventMulticaster class public, enabling component
  2337.     subclasses to serve as multicast sources for AWT-defined events.
  2338.   
  2339.   - Made the java.awt.event Adapter classes abstract so that it's clear
  2340.     that they need to be extended.
  2341.  
  2342.   - Removed constructors in java.awt.event Event classes that took
  2343.     an old 1.0 event as a parameter.
  2344.   
  2345.   - Changed the event id values of the ComponentEvent types to prevent 
  2346. them
  2347.     from clashing with the WindowEvent ids.
  2348.   
  2349.   - Added virtual keycode identifiers to KeyEvent to properly represent
  2350.     all standard keys on the keyboard.  The keyCode property of the key
  2351.     event now contains one of those identifiers (instead of the ASCII
  2352.     integer equivalent).
  2353.  
  2354.   - Added a method called isPopupTrigger to the MouseEvent class,
  2355.     providing a platform-independent way to determine whether a mouse
  2356.     event should result in a popup menu being shown. (Bug #4017794)
  2357.  
  2358. __________
  2359. AWT CHANGE - New method: getTreeLock() to java.awt.Component:
  2360.  
  2361.     The public field Component.LOCK will NOT be changed for beta3,
  2362.     to minimize the risk of the change for beta3, but it will be made
  2363.     non-public (package private) between beta3 and final release.
  2364.  
  2365.     RATIONALE:
  2366.     The AWT exposes a public static final field, called Component.LOCK, 
  2367.     for synchronizing operations that affect or depend on
  2368.     component-tree structure.  
  2369.  
  2370.     Exposing this field for public use unnecessarily constricts future
  2371.     AWT implementations to providing a single toolkit-wide lock.
  2372.  
  2373.     It is much better to provide access to the lock object by an
  2374.     instance method on class Component, such that future
  2375.     implementations can return a context-sensitive locking object if
  2376.     they need to.
  2377.  
  2378. __________
  2379. AWT CHANGE - New Component method: getLocationOnScreen
  2380.  
  2381.     Added one new method to the Component class:
  2382.  
  2383.       Point getLocationOnScreen()
  2384.  
  2385.     RATIONALE:
  2386.     This method returns the current location of the component in
  2387.     the screen's coordinate space.
  2388.  
  2389. __________
  2390. AWT CHANGE - New Choice method: insert
  2391.  
  2392.     Added one new method to the Choice class:
  2393.  
  2394.       void insert(String item, int index) 
  2395.  
  2396.     RATIONALE:
  2397.     This method lets you insert items into a Choice control at the 
  2398. index
  2399.     you specify.  (In Beta2, items were always added at the end.)
  2400.  
  2401. __________
  2402. AWT CHANGE - ItemSelectable interface change 
  2403.  
  2404.     Removed the following two methods from the ItemSelectable 
  2405. interface:
  2406.        public int[] getSelectedIndexes();
  2407.        public String[] getSelectedItems();
  2408.  
  2409.     They have been replaced by the following method:
  2410.        public Object[] getSelectedObjects();
  2411.  
  2412.     RATIONALE:
  2413.     This change removes the restriction that an item must be 
  2414. representable
  2415.     by a String.  The AWT classes that implement ItemSelectable (List,
  2416.     Choice, Checkbox, and CheckboxMenuItem) have changed accordingly.
  2417.  
  2418. __________
  2419. AWT CHANGE - Allow Container and Component classes to be extended 
  2420.     directly to create lightweight components.
  2421.  
  2422.   1) Added the following method to java.awt.Component
  2423.  
  2424.     Dimension getMaximumSize();
  2425.  
  2426.      In beta2 components could specify only their minimum and preferred
  2427.      sizes and assume that the component was infinitely stretchable.  
  2428.      This assumption is invalid with lightweight components where 
  2429. components
  2430.      tend to be written at a finer granularity and some components 
  2431. don't
  2432.      want to be flexible.
  2433.  
  2434.      The default implementation of this method specifies infinite
  2435.      size to reflect the current behavior.
  2436.  
  2437.   2) Added two alignment functions to java.awt.Component.
  2438.  
  2439.         float getAlignmentX();
  2440.     float getAlignmentY();
  2441.  
  2442.      that return a number between 0.0 and 1.0.  These values specify 
  2443. how 
  2444.      to align the component relative to other components.  0.0 would be
  2445.      aligned at the origin, 1.0 the furthest away from the origin, 
  2446.      0.5 is centered, etc.  As examples, a text component would have a
  2447.      y alignment to the baseline, and an icon component would have 
  2448.      an alignment to its hotspot, if defined.
  2449.  
  2450.     RATIONALE:
  2451.     Before beta3 the only way of creating new components in the AWT was
  2452.     to extend Canvas, Panel, and their subclasses.  Component and
  2453.     Container could not be directly extended.  All components were
  2454.     automatically "heavyweight" in that each had an opaque native
  2455.     window associated with them.  The problem with this is that 
  2456. heavyweight
  2457.     components are expensive (you can't afford to have too many) and
  2458.     they cannot have any transparent pixels.  The new changes create
  2459.     standard support for lightweight components.
  2460.  
  2461. ____________
  2462. MATH CHANGES - New package: java.math, which initially contains two 
  2463.     classes:  BigInteger and BigDecimal.
  2464.  
  2465.     BigNum class has been removed and replaced by BigInteger and 
  2466. BigDecimal.
  2467.  
  2468.     BigIntegers are immutable arbitrary-precision integers, which 
  2469. provide
  2470.     analogs to all of Java's primitive integer operators, and all 
  2471. relevant
  2472.     static methods from java.lang.Math.  Additionally, BigIntegers 
  2473. provide
  2474.     operations for modular arithmetic, GCD calculation, primality 
  2475. testing, 
  2476.     prime generation, single-bit manipulation, and a few other odds and 
  2477. ends.
  2478.  
  2479.     BigDecimals are immutable, arbitrary-precision signed decimal 
  2480. numbers,
  2481.     suitable for monetary calculations.  BigDecimals provide operations 
  2482. for 
  2483.     basic arithmetic, scale manipulation, comparison, format conversion 
  2484.     and hashing.  The BigDecimal class gives its user complete control 
  2485.     over rounding behavior, forcing the user to explicitly specify a 
  2486.     rounding behavior for operations capable of discarding precision.
  2487.  
  2488. ________________
  2489. SECURITY CHANGES -  New method: getProviders(), which provides 
  2490.     a way to query which crypto providers are installed.
  2491.  
  2492.     This method is added to the Security class and has the form:
  2493.  
  2494.     public static String[] getProviders();
  2495.  
  2496. ___________
  2497. TOOL CHANGE - javakey is now able to export keys and certs
  2498.     to files.
  2499.  
  2500.     This is a change to the javakey tool, a reciprocal to
  2501.     the existing import facility.
  2502.  
  2503. ___________
  2504. TOOL CHANGE - javac -nowarn flag now suppresses @deprecated messages  
  2505.  
  2506.     This can greatly reduce the amount of messages, allowing you
  2507.     to see only the errors.
  2508.  
  2509. ____________
  2510. TOOL CHANGES - jar tool is incompatible with earlier JAR files
  2511.  
  2512.     The beta3 jar tool (more specifically, ZipInputStream and
  2513.     ZipOutputStream) is incompatible with JAR files created with
  2514.     the beta2 jar tool.  The JAR tool won't understand those files.
  2515.     There was a bug in beta2 ZipInputStream and ZipOutputStream 
  2516.     such that those classes didn't generate files properly according
  2517.     to the zip specification (one bit out of place means a lot...)
  2518.     The bug was fixed and now it generates proper zip files that 
  2519.     other tools will understand.
  2520.  
  2521. ____________
  2522. TOOL CHANGES - Removed ability to generate MIF from javadoc
  2523.  
  2524.     Removed "-doctype MIF" option from javadoc.  This was necessary
  2525.     in order to remove the HTML parser dependency that HotJava had
  2526.     on the JDK.
  2527.  
  2528. ===================================================================
  2529. Changes from the original JDK 1.1beta to JDK 1.1beta2
  2530. -------------------------------------------------------------------
  2531.  
  2532. The following fixes and improvements are in the JDK 1.1beta2 release.
  2533.  
  2534. ______________
  2535. VERSION NUMBER - The version number for this release is "JDK1.1beta2". 
  2536.  
  2537.     You can get the version number of your particular release by 
  2538. executing:
  2539.  
  2540.         java -version
  2541.  
  2542. _______
  2543. CHANGE - Source code for public classes included
  2544.  
  2545.     The source code for the public classes in the java.* package are 
  2546.     now included in this release in the file src.zip.  These correspond
  2547.     to the public classes contained in classes.zip.  This src.zip
  2548.     is equivalent to that shipped previously with JDK 1.0.2
  2549.     but also includes sources to the new public classes added in JDK 
  2550. 1.1. 
  2551.  
  2552. _______
  2553. BUG FIX - Jar tool manifest-build limitation on number of files on 
  2554. Solaris
  2555.  
  2556.     DESCRIPTION OF BUG
  2557.     In some configurations of Solaris, trying to create a JAR file 
  2558.     that has more than 64 entries in it would fail.  The command 
  2559.     that would cause this to happen is:
  2560.  
  2561.     % jar cvf test.jar <somedir>
  2562.   
  2563.     where <somedir> is a directory containing more than 64 files.
  2564.  
  2565.     SOLUTION - This bug has been fixed.
  2566.  
  2567. _______
  2568. BUG FIX - Javakey tool signs jar files with invalid signatures
  2569.  
  2570.     DESCRIPTION OF BUG
  2571.     An implementation inconsistency in the javakey security tool causes
  2572.     jar files to be signed with invalid signatures. This means that 
  2573.     signature checking will always fail, thus all applets will run as 
  2574.     untrusted, with minimal permissions enabled.  This makes code 
  2575. signing
  2576.     feature unusable but it is not a security hole.  
  2577.  
  2578.     SOLUTION - This bug has been fixed. 
  2579.  
  2580. _______
  2581. BUG FIX - 4017054 - Limit to numeric range of case statements
  2582.  
  2583.     DESCRIPTION OF BUG
  2584.     If a Java switch statement includes case statements that cover a 
  2585. wide
  2586.     range of numerical values (although not necessarily a large number 
  2587. of 
  2588.     cases themselves), the Java compiler can run out of memory 
  2589. attempting 
  2590.     to compile that statement.  For instance, a switch statement 
  2591.     containing the two cases 0 and 99999999 will cause the compiler to 
  2592.     run out of memory.
  2593.  
  2594.     SOLUTION - This bug has been fixed.
  2595.  
  2596. _______
  2597. BUG FIX - 4018832 - Missing class java.io.LineNumberReader
  2598.  
  2599.     DESCRIPTION OF BUG
  2600.     In the Win32 release, the class java.io.LineNumberReader is
  2601.     documented but the class file is absent from classes.zip
  2602.  
  2603.     SOLUTION - java.io.LineNumberReader has been added to classes.zip
  2604.  
  2605. _______
  2606. BUG FIX - 4018252 - DecimalNumberFormat methods throw exceptions
  2607.  
  2608.     DESCRIPTION OF BUG
  2609.     The class java.text.DecimalNumberFormat throws an exception when 
  2610. any 
  2611.     of its format or parse methods are called.  A typical stack trace 
  2612.     looks something like the following:
  2613.  
  2614.     java.lang.NumberFormatException: 451.0D
  2615.         at java.lang.Double.<init>(Double.java)
  2616.         at java.text.DigitList.getRealDouble(DigitList.java)
  2617.         at java.text.DigitList.set(DigitList.java)
  2618.         at java.text.DecimalFormat.format(DecimalFormat.java)
  2619.         at java.text.NumberFormat.format(NumberFormat.java)
  2620.  
  2621.     Although DecimalNumberFormats are generally not used directly, they 
  2622.     are returned by calls to NumberFormat.getDefault(), 
  2623.     NumberFormat.getDefaultCurrency() and 
  2624. NumberFormat.getDefaultPercent().
  2625.  
  2626.     SOLUTION - This bug has been fixed.
  2627.  
  2628. -----------------------------------------------------------------------
  2629. Copyright ⌐ 1998 Sun Microsystems, Inc.
  2630. 901 San Antonio Rd., Palo Alto, CA 94303 USA
  2631. All rights reserved.
  2632.