|
-
December 10th, 2008, 07:02 AM
#1
Facade Pattern
http://www.allapplabs.com/java_desig...de_pattern.htm
Code:
package structural.facade;
public class FinishedGoodsStore implements Store {
public Goods getGoods() {
FinishedGoods finishedGoods = new FinishedGoods();
return finishedGoods;
}
}// End of class
What is finishedgoods here?
if it is a class,Why it doesn't define in that page:
http://www.allapplabs.com/java_desig...de_pattern.htm
Please explain about facade pattern by an simply example thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|