golfShop.data.item |
|
Java Source File Name | Type | Comment |
CategoryDO.java | Class | Categorize the items we have for sale. |
CategoryStore.java | Class | This abstract class defines the template for the tree kinds of category
stores: memory, file and database.
This object represents the physical medium that the list of all categories
is stored in. |
CategoryStoreFile.java | Class | |
CategoryStoreMemory.java | Class | This is one flavor of a CategoryStore. |
ItemDO.java | Class | Individual items for sale. |
ItemStore.java | Class | This abstract class defines the template for the tree kinds of item
stores: memory, file and database.
This object represents the physical medium that the list of all store items
is stored in. |
ItemStoreFile.java | Class | |
ItemStoreMemory.java | Class | This is one flavor of a ItemStore. |