A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / util / ILRUCacheable.java
index 6c5662f..3d138bc 100644 (file)
 package net.sourceforge.phpdt.internal.core.util;
 
 /**
- * Types implementing this interface can occupy a variable amount of space
- * in an LRUCache.  Cached items that do not implement this interface are
- * considered to occupy one unit of space.
- *
+ * Types implementing this interface can occupy a variable amount of space in an
+ * LRUCache. Cached items that do not implement this interface are considered to
+ * occupy one unit of space.
+ * 
  * @see LRUCache
  */
 public interface ILRUCacheable {
        /**
-        * Returns the space the receiver consumes in an LRU Cache.  The default space
-        * value is 1.
-        *
+        * Returns the space the receiver consumes in an LRU Cache. The default
+        * space value is 1.
+        * 
         * @return int Amount of cache space taken by the receiver
         */
        public int getCacheFootprint();