[jboss-cvs] JBossCache/src/org/jboss/cache ...

Manik Surtani manik at jboss.org
Thu Jul 12 10:29:04 EDT 2007


  User: msurtani
  Date: 07/07/12 10:29:04

  Modified:    src/org/jboss/cache   NodeSPI.java UnversionedNode.java
  Log:
  Better method naming
  
  Revision  Changes    Path
  1.22      +2 -2      JBossCache/src/org/jboss/cache/NodeSPI.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: NodeSPI.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/NodeSPI.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -b -r1.21 -r1.22
  --- NodeSPI.java	29 Jun 2007 17:40:49 -0000	1.21
  +++ NodeSPI.java	12 Jul 2007 14:29:04 -0000	1.22
  @@ -54,7 +54,7 @@
       *
       * @return true if the children of this node were loaded from a cache loader.
       */
  -   boolean getChildrenLoaded();
  +   boolean isChildrenLoaded();
   
      /**
       * Sets if the children of this node were loaded from a cache loader.
  @@ -68,7 +68,7 @@
       *
       * @return true if the data was loaded from the cache loader.
       */
  -   public boolean getDataLoaded();
  +   public boolean isDataLoaded();
   
      /**
       * Sets if the data was loaded from the cache loader.
  
  
  
  1.36      +2 -2      JBossCache/src/org/jboss/cache/UnversionedNode.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UnversionedNode.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/UnversionedNode.java,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -b -r1.35 -r1.36
  --- UnversionedNode.java	12 Jul 2007 11:48:42 -0000	1.35
  +++ UnversionedNode.java	12 Jul 2007 14:29:04 -0000	1.36
  @@ -152,7 +152,7 @@
         return cache;
      }
   
  -   public boolean getChildrenLoaded()
  +   public boolean isChildrenLoaded()
      {
         return childrenLoaded;
      }
  @@ -720,7 +720,7 @@
      /**
       * Returns true if the data was loaded from the cache loader.
       */
  -   public boolean getDataLoaded()
  +   public boolean isDataLoaded()
      {
         return dataLoaded;
      }
  
  
  



More information about the jboss-cvs-commits mailing list