You might also want to look at the list of frequently requested features for Java and the Java Development Kit and the changes since the last release. You may also want to review the list of known bugs in the Java and HotJava Alpha 3 release.
To report a bug that is not on this list, please see Submit a Bug Report instructions.
package pkg;
import java.util.*;
public class Vector
{
private int i;
public Vector()
{
i = 1;
}
}
(1231283)
/* file CompilerTest.java */
class CompilerTest
{
// class definition here
}
/* file compilertest.java */
class compilertest
{
// class definition here
void function(CompilerTest ct)
{
// do some work here
}
}
(1230037)
if (!grabbing) {
producer.startProduction(this);
grabbing = true;
flags &= ~(ImageObserver.ABORT);
}
To:
if (!grabbing)
{
grabbing = true;
flags &= ~(ImageObserver.ABORT);
producer.startProduction(this);
}
(1234421)
java.net.MalformedURLException: unknown protocol: ftp(1230799)
/* Create new date object for 28-Feb-1996 */
Date date1 = new Date(96, 01, 28);
/* Do some work here */
/* Need to set the date to one week after this date
* This will correctly create a new date of 06-Mar-96
*/
date1 = new Date( date1.getYear(),
date1.getMonth(),
date1.getDate() + 7,
date1.getHours(),
date1.getMinutes(),
date1.getSeconds() );
Java Developers Kit