Files
java-design-patterns/flyweight/src/main/java/com/iluwatar/App.java
T
2014-10-08 13:42:12 +01:00

17 lines
367 B
Java

package com.iluwatar;
/**
*
* Flyweight (PotionFactory) is useful when there is plethora of objects
* (Potion). It provides means to decrease resource usage by sharing object
* instances.
*
*/
public class App {
public static void main(String[] args) {
AlchemistShop alchemistShop = new AlchemistShop();
alchemistShop.enumerate();
}
}