From: <jbo...@li...> - 2005-12-21 12:43:39
|
Author: aron.gombas Date: 2005-12-21 07:43:30 -0500 (Wed, 21 Dec 2005) New Revision: 1916 Modified: trunk/labs/kosmos/src/java/hu/midori/kosmos/server/CachedDataHandler.java Log: Javadocs comments fixed Modified: trunk/labs/kosmos/src/java/hu/midori/kosmos/server/CachedDataHandler.java =================================================================== --- trunk/labs/kosmos/src/java/hu/midori/kosmos/server/CachedDataHandler.java 2005-12-21 12:42:45 UTC (rev 1915) +++ trunk/labs/kosmos/src/java/hu/midori/kosmos/server/CachedDataHandler.java 2005-12-21 12:43:30 UTC (rev 1916) @@ -19,17 +19,9 @@ * still up-to-date, even if there was a cache miss caused by timeout. * Implement it simply by returning <code>false</code> if it's not possible to detect * whether the data is still up-to-date without recalculating everything. - * - * @param language can be ignored if the data and the resources referenced by the - * data are not language-dependent. */ - public boolean isDataUptodate(Object key);// TODO language ne legyen itt es csak azt vizsgalja, h az adatforras megvaltozott-e => isDataSourceUnchanged() + public boolean isDataUptodate(Object key); - /** - * Reloads the service-specific data in the case of stale data (cache miss). - * - * @param language can be ignored if the data and the resources referenced by the - * data are not language-dependent. - */ + /** Reloads the service-specific data in the case of stale data (cache miss). */ public Object reloadData(Object key); } |