Commit ba84d6c2 authored by rodrigo.calheiros's avatar rodrigo.calheiros

Fix in the documentation

parent 53e893b0
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
package org.cloudbus.cloudsim.core; package org.cloudbus.cloudsim.core;
import java.util.Calendar;
import java.util.Collection; import java.util.Collection;
import java.util.Iterator; import java.util.Iterator;
import java.util.LinkedList; import java.util.LinkedList;
...@@ -17,17 +16,16 @@ import java.util.List; ...@@ -17,17 +16,16 @@ import java.util.List;
import org.cloudbus.cloudsim.Log; import org.cloudbus.cloudsim.Log;
/** /**
* A Cloud Information Service (GIS) is an entity that provides grid * A Cloud Information Service (CIS) is an entity that provides cloud
* resource registration, indexing and discovery services. The Cloud hostList * resource registration, indexing and discovery services. The Cloud hostList
* tell their readiness to process Cloudlets by registering themselves with * tell their readiness to process Cloudlets by registering themselves with
* this entity, done via {@link gridsim.CloudResource#startEntity()} method. * this entity.
* <p> * <p>
* Other entities such as the resource broker can contact * Other entities such as the resource broker can contact
* this class for resource discovery service, which returns a list of * this class for resource discovery service, which returns a list of
* registered resource IDs. In summary, it acts like a yellow page service. * registered resource IDs. In summary, it acts like a yellow page service.
* <p> * <p>
* This class will be created by CloudSim upon initialisation of the simulation, * This class will be created by CloudSim upon initialisation of the simulation.
* i.e. done via {@link gridsim.CloudSim#init(int, Calendar, boolean)} method.
* Hence, do not need to worry about creating an object of this class. * Hence, do not need to worry about creating an object of this class.
* <p> * <p>
* *
...@@ -56,8 +54,6 @@ public class CloudInformationService extends SimEntity { ...@@ -56,8 +54,6 @@ public class CloudInformationService extends SimEntity {
* initialising CloudSim package or this entity name is * initialising CloudSim package or this entity name is
* <tt>null</tt> or empty * <tt>null</tt> or empty
* *
* @see gridsim.CloudSim#init(int, Calendar, boolean)
* @see yoursim.SimEntity
* @pre name != null * @pre name != null
* @post $none * @post $none
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment