qwaliwuds

1234567891011121314151617181920
Across
  1. 2. An Adapter and a Decorator can be said to __________ an object
  2. 9. High level libraries
  3. 11. Don’t count on this for notification in the Observer pattern
  4. 14. The Template Method Pattern uses __________ to defer implementation to other classes
  5. 16. In Factory Method, who decides which class to instantiate?
  6. 17. All factory patterns allow us to __________ object creation
  7. 18. In the Singleton pattern, if you don’t need to worry about lazy instantiation, you can create your instance __________
  8. 20. All commands provide this method
Down
  1. 1. To defeat the new constructor, we have to declare the constructor _____ in the Singleton pattern
  2. 3. When you use new, you are programming to an __________
  3. 4. Development constant
  4. 5. Most patterns follow from OO __________
  5. 6. Patterns give us a shared __________
  6. 7. Observers are __________ on the Subject
  7. 8. Patterns go into your __________
  8. 9. Abstract Factory creates a __________ of products
  9. 10. Program to an __________ not an implementation
  10. 12. A command encapsulates a(n) __________
  11. 13. In the Command pattern, invoker and receiver are __________
  12. 15. Object that knows how to get things done in the command pattern
  13. 19. A Singleton is a class that manages an instance of __________