Changes between Version 39 and Version 40 of PRO_LIB_CORE_TUTORIAL


Ignore:
Timestamp:
07/14/09 14:38:47 (16 years ago)
Author:
peko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PRO_LIB_CORE_TUTORIAL

    v39 v40  
    699699}}} 
    700700   
    701   * People tend to the the following in order to initialize the prorperty: 
    702 {{{ 
    703 button().get(); 
    704 }}} 
    705   * '''This actually will do nothing. The property is automatically created and initialized when the value property containing the tool-tip is initialized!''' 
     701   * People tend to the the following in order to initialize the prorperty: 
     702{{{ 
     703button().get(); //does nothing! 
     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. 
     706  * Using a non-ProObject or non-@Immutable object as a value of a property: 
     707{{{ 
     708        class BadObject { //does not extend ProObject and is not annotated with @Immutable 
     709                 
     710        } 
     711         
     712        public RwProp<BadObject> badObject() { 
     713                return getBean().makeValueProp("badObject", BadObject.class); 
     714        } 
     715}}} 
     716   * '''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. 
    706717 
    707718== Debugging ProLib ==