예제 #1
0
 /**
  * Get the objects that have been cached.
  *
  * @return
  */
 public Collection<? extends Cacheable> objectValues() {
   Collection<Cacheable> objects = new ArrayList<Cacheable>();
   for (CachedObject co : values()) {
     objects.add((Cacheable) co.getValue());
   }
   return objects;
 }