[jboss-cvs] jbossmx/src/main/org/jboss/ha/framework/interfaces ...

Jerry Gauthier jgauthier at novell.com
Fri Jul 14 16:32:16 EDT 2006


  User: jerrygauth
  Date: 06/07/14 16:32:16

  Modified:    src/main/org/jboss/ha/framework/interfaces 
                        DistributedReplicantManager.java
  Log:
  Fixed typos in DRM javadoc
  
  Revision  Changes    Path
  1.12      +9 -9      jbossmx/src/main/org/jboss/ha/framework/interfaces/DistributedReplicantManager.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: DistributedReplicantManager.java
  ===================================================================
  RCS file: /cvsroot/jboss/jbossmx/src/main/org/jboss/ha/framework/interfaces/DistributedReplicantManager.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -b -r1.11 -r1.12
  --- DistributedReplicantManager.java	20 Jan 2006 01:08:02 -0000	1.11
  +++ DistributedReplicantManager.java	14 Jul 2006 20:32:16 -0000	1.12
  @@ -30,7 +30,7 @@
    *
    *   @author  <a href="mailto:bill at burkecentral.com">Bill Burke</a>.
    *   @author  <a href="mailto:sacha.labourey at cogito-info.ch">Sacha Labourey</a>.
  - *   @version $Revision: 1.11 $
  + *   @version $Revision: 1.12 $
    *
    * <p><b>Revisions:</b><br>
    * <p><b>2001/10/31: marcf</b>
  @@ -63,13 +63,13 @@
      }
   
      /**
  -    * Subscribe a new listener {@link ReplicantListener} for replicants change
  +    * Subscribe a new listener {@link ReplicantListener} for replicant changes
       * @param key Name of the replicant, must be identical cluster-wide for all identical replicants
  -    * @param subscriber The subsribing {@link ReplicantListener}
  +    * @param subscriber The subscribing {@link ReplicantListener}
       */   
      public void registerListener(String key, ReplicantListener subscriber);
      /**
  -    * Unsubscribe a listener {@link ReplicantListener} that had subscribed for replicants changes
  +    * Unsubscribe a listener {@link ReplicantListener} that had subscribed for replicant changes
       * @param key Name of the replicant, must be identical cluster-wide for all identical replicants
       * @param subscriber The unsubscribing {@link ReplicantListener}
       */   
  @@ -96,14 +96,14 @@
      /**
       * Lookup the replicant attached to this cluster node
       * @param key The name of the replicant
  -    * @return The local replicant for the give key name
  +    * @return The local replicant for the given key name
       */   
      public Serializable lookupLocalReplicant(String key);
   
      /**
       * Return a list of all replicants.
       * @param key The replicant name
  -    * @return An list of serialized replicants available around the cluster 
  +    * @return A list of serialized replicants available around the cluster 
       *         for the given key. This list will be in the same order in all 
       *         nodes in the cluster.
       */
  @@ -112,15 +112,15 @@
      /**
       * Return a list of all replicants node names.
       * @param key The replicant name
  -    * @return A list the node names of cluster nodes that have made available
  +    * @return A list of the node names of cluster nodes that have made available
       *         a replicant for the given key. This list will be in the same 
       *         order in all nodes in the cluster.
       */
      public List lookupReplicantsNodeNames(String key);
   
      /**
  -    * Return a list of all services that have a least one replicant.
  -    * @return A collection of services names (String)
  +    * Return a list of all services that have at least one replicant.
  +    * @return A collection of service names (String)
       */
      public Collection getAllServices ();
   
  
  
  



More information about the jboss-cvs-commits mailing list