Skip to content

sdfraga/HFDP_ABAP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Head First Design Patterns in ABAP

Chapter 1 - Strategy

The Strategy Pattern defines a family of algorithms, encapsulates each one, and makes them interchangeable. Strategy lets the algorithm vary independently from clients that use it.

Design Principles

1 - Identify the aspects of your application that vary and separate them from what stays the same.

2 - Program to an interface, not an implementation

3 - Favor composition over inheritance

Chapter 3 - Decorator

The Decorator Pattern attaches additional responsibilities to an object dynamically. Decorators provide a flexible alternative to subclassing for extending functionality.

Design Principles

5 - Classes should be open for extension but closed for modification

About

Head First Design Patterns in ABAP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages