All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.darwinsys.notepad.ToDo Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.darwinsys.notepad;

import java.io.IOException;
import java.util.prefs.Preferences;

/** A trivial TODO editor (not a real TODO PIM!) showing use of
 * NotePad with a provided Preferences node.
 */
public class ToDo {

	/** Pass Preferences node so we dont get same location as Notepad */
	static Preferences prefs = Preferences.userNodeForPackage(ToDo.class);

	public static void main(String[] args) throws IOException {
		Thread.currentThread().setName("ToDo");
		String fileName = System.getProperty("user.home") + "/" + "TODO.txt";

		Notepad n = new Notepad(prefs);
		n.doLoad(fileName);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy