KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > dods > cache > lru > DODSLRUCacheFactory


1 /*
2  * Created on May 18, 2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.enhydra.dods.cache.lru;
8
9 import org.enhydra.dods.cache.base.DODSCache;
10 import org.enhydra.dods.cache.base.DODSCacheAbstractFactory;
11
12 /**
13  * @author Administrator
14  *
15  * TODO To change the template for this generated type comment go to
16  * Window - Preferences - Java - Code Style - Code Templates
17  */

18 public class DODSLRUCacheFactory implements DODSCacheAbstractFactory {
19     public DODSCache newDODSCache(int cacheSize) {
20         return new DODSLRUCache(cacheSize);
21     }
22 }
23
Popular Tags