RSS feed
[root]
/
trashvisitor
/
c12
/
code
/
TI Pattern
/
software design
/
document
login:
password:
title search:
Search this site
Enter your search terms
Web
www.carfield.com.hk
Submit search form
Prev
Next
Wed Dec 26 16:00:00 GMT 2001
FillableVisitor
//: c12:trashvisitor:FillableVisitor.java // Adapter Decorator that adds the visitable // decorator as the Trash objects are // being created. import c12.trash.*; import java.util.*; public class FillableVisitor implements Fillable { private Fillable f; public FillableVisitor(Fillable ff) { f = ff; } public void addTrash(Trash t) { f.addTrash(new VisitableDecorator(t)); } } ///:~
(google search)
(amazon search)
1
2
3
second
download zip of files only
Prev
Next