15th, Saturday July 2006
Today
Here is the word I write today. You can read my thoughts and my notes.14th, Friday July 2006
A tip I want to share
public static void main(String[] args) throws Exception { if (args.length != 1) { System.err.println("Usage: wsPath"); System.err.println(" (1) wsPath: path of the file " + WsConnection.SO6_WSC_FILE); System.exit(0); } String wscPath = args[0]; Commit commit = new Commit(wscPath); commit.setStyle(Color.white, Color.decode("#eeeeee")); // Make frame JFrame f = new JFrame("Commit on connection: " + wscPath); f.getContentPane().add(commit, BorderLayout.CENTER); f.setSize(400, 215); f.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { System.exit(0); } }); f.setLocation(( (int) Toolkit.getDefaultToolkit().getScreenSize().getWidth() - f.getWidth()) / 2, ((int) Toolkit.getDefaultToolkit().getScreenSize() .getHeight() - f.getHeight()) / 2); f.setVisible(true); }
13th Thursday July 2006