JVM Languages
jqa998.txt
Associated article: What Is Swing?
Tags: Database JVM Languages
Published source code accompanying the column by Mukul Sood in which he examines Swing, a collection of lightweight components built on top of the Java Abstract Windowing Toolkit (AWT). Mukul zeros in on Swing's JTable components, and explains how the Model-View-Controller architecture applies to it. Also see JQA998.ZIP.
Java Q&A
by Mukul Sood
Listing One
try {
UIManager.setLookAndFeel (
"com.sun.java.swing.jlf.JLFLookAndFeel");
} catch( java.lang.ClassNotFoundException e) {
// look and feel class not found, can't change l&f
}
Listing Two
public abstract ...


