#107 Improve JavaDoc for Lazy Loading example
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user