163 | | This Property is one of the most commonly used and convenient Properties the ProLib offers. |
164 | | |
165 | | Basically this is a Property which has a value which is computed directly from the values of some other Properties. In a way, the developer sets the logic of the computation of the AutoProperty's value in a declarative manner and the actual computation of the value is done automatically. Even more, the when some of the Properties on which the AutoProperty depends change their value, the AutoProperty automatically recomputes its value which is very convenient. This saves the developer the hassle of manually implementing some Observer like functionality in all objects a certain Java field X would logically depend and then manually notifying X when they've changed so X can then be manually forced to recompute. |
166 | | |
167 | | So, like inside the Rectangle example, the area() AutoProperty is implemented like this: |
168 | | {{{ |
| 163 | This Property is one of the most commonly used and convenient Properties the ProLib offers.[[BR]] |
| 164 | Basically this is a Property which has a value which is computed directly from the values of some other Properties. In a way, the developer sets the logic of the computation of the AutoProperty's value in a declarative manner and the actual computation of the value is done automatically. Even more, the when some of the Properties on which the AutoProperty depends change their value, the AutoProperty automatically recomputes its value which is very convenient. This saves the developer the hassle of manually implementing some Observer like functionality in all objects a certain Java field X would logically depend and then manually notifying X when they've changed so X can then be manually forced to recompute.[[BR]] |
| 165 | So, like inside the Rectangle example, the area() AutoProperty is implemented like this: |
| 166 | {{{ |