From: <sul...@us...> - 2008-10-12 11:22:33
|
Revision: 258 http://gridsim.svn.sourceforge.net/gridsim/?rev=258&view=rev Author: sulistio Date: 2008-10-12 10:59:53 +0000 (Sun, 12 Oct 2008) Log Message: ----------- minor changes with regards to documentation or javadoc Modified Paths: -------------- trunk/README.txt trunk/build.xml trunk/examples/Network/README.txt trunk/javadoc.sh trunk/source/gridsim/net/flow/FlowInput.java Added Paths: ----------- trunk/source/gridsim/net/flow/package.html Modified: trunk/README.txt =================================================================== --- trunk/README.txt 2008-10-12 10:58:04 UTC (rev 257) +++ trunk/README.txt 2008-10-12 10:59:53 UTC (rev 258) @@ -29,9 +29,9 @@ http://www.gridbus.org/gridsim/release.html -Software Requirements : Java version 1.4.2 or newer +Software Requirements : Java version 1.50 or newer --------------------- -GridSim has been tested and ran on Sun's Java version 1.4.2 or newer. +GridSim has been tested and ran on Sun's Java version 1.5.0 or newer. Older versions of Java are not compatible. If you have non-Sun Java version, such as gcj or J++, they may not be compatible. You also need to install Ant to compile GridSim (explained in more details later). @@ -117,10 +117,20 @@ GridSim mailing lists can be found below: http://sourceforge.net/projects/gridsim/ then click on the "Mailing Lists" tab. + Please subscribe to the following mailing lists: -gridsim-users (at) lists.sourceforge.net - for any queries and feedbacks -gridsim-developers (at) lists.sourceforge.net - for contributing to GridSim +* For general queries and feedbacks: + gridsim-users (at) lists.sourceforge.net + +* For contributing to GridSim or questions related to the existing GridSim code: + gridsim-developers (at) lists.sourceforge.net + +To subscribe, go to + https://lists.sourceforge.net/lists/listinfo/gridsim-users + https://lists.sourceforge.net/lists/listinfo/gridsim-developers + + Contributors are always needed to improve and maintain GridSim. Another option is to integrate your work/project into future GridSim releases. If you want to contribute, advertise yourself to us. @@ -140,6 +150,7 @@ we analyze your problem. Hence, the sooner we can reply. * Please send your questions to these mailing lists so that other people can read and reply them. +* Please only send to one of the mailing lists. * We have hectic schedules, so do not expect an instant reply. Modified: trunk/build.xml =================================================================== --- trunk/build.xml 2008-10-12 10:58:04 UTC (rev 257) +++ trunk/build.xml 2008-10-12 10:59:53 UTC (rev 258) @@ -26,14 +26,14 @@ </description> <!-- GridSim version number and release year for javadoc --> - <property name="version" value="4.2"/> + <property name="version" value="4.2 beta"/> <property name="year" value="2008"/> <!-- location to store Java classes --> <property name="class.dir" location="./classes" /> <!-- location to store GridSim source files --> - <property name="src.dir" location="./source/gridsim" /> + <property name="src.dir" location="./source" /> <!-- location to store jar files --> <property name="jar.dir" location="./jars" /> @@ -85,7 +85,7 @@ <tag name="invariant" scope="all" description="Invariant:"/> <tag name="pre" scope="all" description="Pre Condition:"/> <tag name="post" scope="all" description="Post Condition:"/> - <fileset dir="./source" includes="**/*.java" /> + <fileset dir="${src.dir}" includes="**/*.java" /> </javadoc> </target> Modified: trunk/examples/Network/README.txt =================================================================== --- trunk/examples/Network/README.txt 2008-10-12 10:58:04 UTC (rev 257) +++ trunk/examples/Network/README.txt 2008-10-12 10:59:53 UTC (rev 258) @@ -1,6 +1,10 @@ This directory contains few GridSim network extension examples. Here are the summary of what each example does: +./FiniteBuffer01 : shows how to use the finite network buffer functionality + +./Flow : shows how to use the flow network functionality + ./NetEx01 : shows how to connect two GridSim entities using a link. ./NetEx02 : shows how to build a network topology for users and Modified: trunk/javadoc.sh =================================================================== --- trunk/javadoc.sh 2008-10-12 10:58:04 UTC (rev 257) +++ trunk/javadoc.sh 2008-10-12 10:59:53 UTC (rev 258) @@ -2,7 +2,7 @@ ## A script to run javadoc (Anthony Sept 2004). year="2008" # year -ver="v4.2" # version number +ver="v4.2 beta" # version number dir=./source # source directory that contains Java files doc=./doc # output directory Modified: trunk/source/gridsim/net/flow/FlowInput.java =================================================================== --- trunk/source/gridsim/net/flow/FlowInput.java 2008-10-12 10:58:04 UTC (rev 257) +++ trunk/source/gridsim/net/flow/FlowInput.java 2008-10-12 10:59:53 UTC (rev 258) @@ -128,14 +128,14 @@ /** * This is an empty method and only applicable to - * {@link gridsim.net.FlowOutput} class. + * {@link gridsim.net.flow.FlowOutput} class. * @param gen a background traffic generator * @param userName a collection of user entity name (in String object). * @return <tt>false</tt> since this method is not used by this class. * @pre gen != null * @pre userName != null * @post $none - * @see gridsim.net.Output + * @see gridsim.net.flow.FlowOutput */ public boolean setBackgroundTraffic(TrafficGenerator gen, Collection userName) Added: trunk/source/gridsim/net/flow/package.html =================================================================== --- trunk/source/gridsim/net/flow/package.html (rev 0) +++ trunk/source/gridsim/net/flow/package.html 2008-10-12 10:59:53 UTC (rev 258) @@ -0,0 +1,5 @@ +<html> + <body> + Classes that form the network flow extension of <code>GridSim</code>. + </body> +</html> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |