|
From: Carlos <ma...@us...> - 2007-10-15 21:04:58
|
Update of /cvsroot/tail/TailS/src/java/net/sf/tails/swing/frame In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv6574/src/java/net/sf/tails/swing/frame Modified Files: Index.java Log Message: Update. Index: Index.java =================================================================== RCS file: /cvsroot/tail/TailS/src/java/net/sf/tails/swing/frame/Index.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Index.java 15 Oct 2007 20:15:12 -0000 1.21 --- Index.java 15 Oct 2007 21:04:42 -0000 1.22 *************** *** 409,412 **** --- 409,413 ---- StockAnalysis analysis = serializer.fromXML(stringAnalysis); loadStockAnalysis(analysis); + this.appendConsoleArea("Stock Analysis loaded succesfully."); } catch (Exception e) { *************** *** 460,463 **** --- 461,465 ---- write.close(); this.setTitle(stockAnalysisXML.getName() + " - " + messageBundle.getString("DEFAULT_TITLE")); + this.appendConsoleArea(stockAnalysisXML.getName() + " saved succesfully."); } *************** *** 485,488 **** --- 487,491 ---- write.close(); this.setTitle(stockAnalysisXML.getName() + " - " + messageBundle.getString("DEFAULT_TITLE")); + this.appendConsoleArea(stockAnalysisXML.getName() + " saved succesfully."); break; } |