Changes between Version 28 and Version 29 of GoodCodeExamples
- Timestamp:
- 05/20/09 17:16:01 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GoodCodeExamples
v28 v29 317 317 */ 318 318 }}} 319 or 320 {{{ 321 /** 322 * Base class for persist formats (like ones for saving/loading books). 323 * 324 * Can load/save between two formats. It may support only saving or only 325 * loading. 326 * 327 * @param <S> 328 * The source type (what can be loaded). 329 * @param <T> 330 * The target type (what designates the target). 331 * 332 * @author milo 333 */ 334 }}}