JVM Languages
update.txt
Associated article: Incrementally Updating Software
Tags: JVM Languages
Published source code accompanying the article by John Keogh in which he presents a tool for providing downloadable updates for selected portions of an application is critical to the development process. Also see UPDATE.ZIP.
Incrementally Updating Software
by John Keogh
Listing One
SimpleMortgageCalculator() {
super();
this.setUndecorated(true);
//this is where the settings from the last use are retrieved
try{
applicationProperties.load(new FileInputStream(CALCULATOR_CONFIG_FILE));
}
catch(Exception ex){
System.out.println("problem ...


