#107 Improve JavaDoc for Lazy Loading example

This commit is contained in:
Ilkka Seppala
2015-08-19 22:09:54 +03:00
parent 48cb04f98a
commit add57d4066
3 changed files with 13 additions and 4 deletions

View File

@@ -3,16 +3,20 @@ package com.iluwatar.lazy.loading;
/**
*
* Lazy loading idiom defers object creation until needed.
*
* <p>
* This example shows different implementations of the pattern
* with increasing sophistication.
*
* <p>
* Additional information and lazy loading flavours are described in
* http://martinfowler.com/eaaCatalog/lazyLoad.html
*
*/
public class App
{
/**
* Program entry point
* @param args command line args
*/
public static void main( String[] args ) {
// Simple lazy loader - not thread safe