Guest User

Untitled

a guest
Apr 25th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class ClassThatUsesStrategyPattern {
  2.  
  3. private IStrategy strategy;
  4.  
  5. public void aMethod() {
  6. System.out.println("The strategy code is: " + strategy.behavior());
  7. }
  8.  
  9. public void setStrategy(IStrategy strategy) {
  10. this.strategy = strategy;
  11. }
  12. }
Add Comment
Please, Sign In to add comment