#354 Add maven model for feature toggle design pattern

This commit is contained in:
Joseph McCarthy
2016-01-25 21:14:24 +00:00
parent cf10bd1d05
commit d7526fc7c0
86 changed files with 1165 additions and 270 deletions

View File

@ -10,12 +10,14 @@ tags:
- Idiom
---
**Intent:** Private Class Data design pattern seeks to reduce exposure of
## Intent
Private Class Data design pattern seeks to reduce exposure of
attributes by limiting their visibility. It reduces the number of class
attributes by encapsulating them in single Data object.
![alt text](./etc/private-class-data.png "Private Class Data")
**Applicability:** Use the Private Class Data pattern when
## Applicability
Use the Private Class Data pattern when
* you want to prevent write access to class data members