Changes between Version 40 and Version 41 of PRO_LIB_CORE_TUTORIAL
- Timestamp:
- 07/14/09 14:39:54 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PRO_LIB_CORE_TUTORIAL
v40 v41 703 703 button().get(); //does nothing! 704 704 }}} 705 * '''This actually will do nothing. The property is automatically created and initialized when the value property containing the tool-tip is initialized !''' Same applied to auto properties! You do not need to "get()" the property in order for it to be "computed". This is automatically provided by the pro lib.705 * '''This actually will do nothing. The property is automatically created and initialized when the value property containing the tool-tip is initialized.''' Same applied to auto properties! You do not need to "get()" the property in order for it to be "computed". This is automatically provided by the pro lib. 706 706 * Using a non-ProObject or non-@Immutable object as a value of a property: 707 707 {{{ 708 708 709 class BadObject { //does not extend ProObject and is not annotated with @Immutable 709 710 … … 713 714 return getBean().makeValueProp("badObject", BadObject.class); 714 715 } 716 715 717 }}} 716 718 * '''This should never happen.''' Every object that is a value of a property or is a value in a list property should either be a ProObject or an Immutable. Having objects like this one will never force an AutoProperty update if this AutoProperty depends on the "badObject()'s" property. Same applied to other properties depending on "badObject()'s" property. If a non-ProObject or non-@Immutable is really needed, use the resource property, where it is created and different things are set to it.