2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
layout: pattern
|
|
|
|
title: Property
|
|
|
|
folder: property
|
2015-08-15 18:03:05 +02:00
|
|
|
permalink: /patterns/property/
|
2015-08-20 21:40:07 +02:00
|
|
|
categories: Creational
|
|
|
|
tags: Java
|
2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
**Intent:** Create hierarchy of objects and new objects using already existing
|
|
|
|
objects as parents.
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
**Applicability:** Use the Property pattern when
|
|
|
|
|
|
|
|
* when you like to have objects with dynamic set of fields and prototype inheritance
|
|
|
|
|
|
|
|
**Real world examples:**
|
|
|
|
|
2015-08-15 18:03:05 +02:00
|
|
|
* [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Inheritance_and_the_prototype_chain) prototype inheritance
|