package org.thdl.quilldriver; import java.io.*; import java.awt.*; import java.net.*; import java.util.*; import javax.swing.*; import java.awt.event.*; import javax.swing.text.*; import javax.swing.text.rtf.*; public class QDShell extends JFrame { ResourceBundle messages = null; QD qd = null; public static void main(String[] args) { try { PrintStream ps = new PrintStream(new FileOutputStream("qd.log")); System.setErr(ps); System.setOut(ps); } catch (Exception e) { } Locale locale; if (args.length == 2) { locale = new Locale(new String(args[0]), new String(args[1])); Locale[] locales = Locale.getAvailableLocales(); for (int k=0; k