JVM Languages
jqa199.txt
Associated article: Java Q&A
Tags: .NET JVM Languages
Published source code accompanying the article by Kenneth Hittleman and Ted Leung in which they discuss what's involved in moving from JDK 1.1 to JDK 1.2.
Java Q&A
by Kenneth Hittleman and Ted Leung
Listing One
public class MyWindow extends java.awt.Window {
public Vector getOwnedWindows() {
// body of getOwnedWindows
}
// ... rest of MyWindow
}
Listing Two
public class MyWindow extends java.awt.Window {
public Window[] getOwnedWindows() {
// ...


