2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
layout: pattern
|
|
|
|
title: Private Class Data
|
|
|
|
folder: private-class-data
|
2015-08-15 18:03:05 +02:00
|
|
|
permalink: /patterns/private-class-data/
|
2015-08-20 21:40:07 +02:00
|
|
|
categories: Other
|
2015-12-28 15:52:44 +02:00
|
|
|
tags:
|
|
|
|
- Java
|
|
|
|
- Difficulty-Beginner
|
|
|
|
- Idiom
|
2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
**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.
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
**Applicability:** Use the Private Class Data pattern when
|
|
|
|
|
2015-08-15 18:03:05 +02:00
|
|
|
* you want to prevent write access to class data members
|