From: <jom...@us...> - 2008-11-24 10:59:13
|
Revision: 1411 http://jason.svn.sourceforge.net/jason/?rev=1411&view=rev Author: jomifred Date: 2008-11-24 10:59:08 +0000 (Mon, 24 Nov 2008) Log Message: ----------- update About screen Modified Paths: -------------- trunk/src/jason/control/ExecutionControl.java trunk/src/jason/control/ExecutionControlGUI.java trunk/src/jason/jeditplugin/AboutGUI.java Modified: trunk/src/jason/control/ExecutionControl.java =================================================================== --- trunk/src/jason/control/ExecutionControl.java 2008-11-23 22:00:29 UTC (rev 1410) +++ trunk/src/jason/control/ExecutionControl.java 2008-11-24 10:59:08 UTC (rev 1411) @@ -137,7 +137,7 @@ lock.lock(); try { if (logger.isLoggable(Level.FINE)) { - logger.fine("Agent "+agName+" has finished the cycle "+cycle+", # of finished agents is "+(finished.size()+1)+"/"+nbAgs); + logger.fine("Agent "+agName+" has finished cycle "+cycle+", # of finished agents is "+(finished.size()+1)+"/"+nbAgs); if (breakpoint) logger.fine("Agent "+agName+" reached a breakpoint"); } Modified: trunk/src/jason/control/ExecutionControlGUI.java =================================================================== --- trunk/src/jason/control/ExecutionControlGUI.java 2008-11-23 22:00:29 UTC (rev 1410) +++ trunk/src/jason/control/ExecutionControlGUI.java 2008-11-24 10:59:08 UTC (rev 1411) @@ -463,7 +463,7 @@ this.breakpoint = breakpoint; if (waitSelectedAg) { countCycles++; - logger.info("Agent "+agName+" has finished the cycle "+cycle); + logger.info("Agent "+agName+" has finished cycle "+cycle); if (testStop()) { stopRun(); } else { @@ -479,7 +479,7 @@ /** called when all agents have finished the current cycle */ protected void allAgsFinished() { if (waitAllAgs) { - logger.fine("All agents have finished the cycle "+getCycleNumber()); + logger.fine("All agents have finished cycle "+getCycleNumber()); countCycles++; if (testStop()) { stopRun(); Modified: trunk/src/jason/jeditplugin/AboutGUI.java =================================================================== --- trunk/src/jason/jeditplugin/AboutGUI.java 2008-11-23 22:00:29 UTC (rev 1410) +++ trunk/src/jason/jeditplugin/AboutGUI.java 2008-11-24 10:59:08 UTC (rev 1411) @@ -23,7 +23,7 @@ JOptionPane.showMessageDialog(parent, version + build+ - "Copyright (C) 2003-2008 Rafael H. Bordini, Jomi F. Hubner, et al.\n\n"+ + "Copyright (C) 2003-2008 Jomi F. Hubner & Rafael H. Bordini.\n\n"+ "This library is free software; you can redistribute it and/or\n"+ "modify it under the terms of the GNU Lesser General Public\n"+ "License as published by the Free Software Foundation; either\n"+ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |