Changes between Version 12 and Version 13 of PRO_LIB_CORE_TUTORIAL_NEW


Ignore:
Timestamp:
06/30/09 20:59:59 (16 years ago)
Author:
gogov
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PRO_LIB_CORE_TUTORIAL_NEW

    v12 v13  
    155155    So, this is actually a Java method which returns a RwProp of Integer. The previously awkward return statement is now more clear: it instructs the ProBean of the ProObject to create a new ValueProperty with the name ''width'' which has a value of type ''Integer''. Other Properties are created in a similar fashion as is described later.[[BR]] 
    156156    Thus, when you want to set or get the value of this Property you just use the set() and get() methods like in the demoCode() method above. 
     157  * '''FinalProperty<T>''': 
     158   This Property is somewhat analogical to the '''final''' fields in Java. You can set the value of a FinalProperty only once, though not it's not mandatory to do it in the constructor of the ProObject.[[BR]] 
     159   Such Properties are intended to be used in cases where some user action leads to set the value of a given Property exactly once. This is different than ''const'' AutoProperties as described below. 
     160  * '''AutoProperty<T>''': 
     161   This Property is one of the most commonly used and convenient Properties the ProLib offers. 
     162 
     163   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. 
     164 
     165   So, like inside the Rectangle example, the area() AutoProperty is implemented like this: 
     166{{{ 
     167    Prop<Integer> area() { 
     168        class area extends AutoProperty<Integer> { 
     169            @Override 
     170            protected Integer compute() { 
     171                Integer res = width().get() * height().get(); 
     172                    return res; 
     173                } 
     174            } 
     175        } 
     176 
     177        return getBean().makeProp(area.class); 
     178    } 
     179}}} 
     180    In order to create an AutoProperty, by convention you declare a method structure like the structure of the area() method which declares a local class which extends the AutoProperty class. The type argument of the local class should be identical to the type argument of the Prop which the area() method returns - after all an AutoProperty is a Property which computes a given value following some logic and that value has a type which in our case is Integer.[[BR]] 
     181    So you override the compute() method to provide the AutoProperty's value computation logic inside. You can provide an arbitrary complex logic inside. In this example whenever the width() and height() Properties change their value, the AutoProperty is smart enough to call the compute() method again and update its value.[[BR]] 
     182    '''Something very important:''' compute() will be recomputed only in the cases when some of the '''Properties''' used inside it change their value!! If compute() depends on some normal Java field, there's no way for the ProLib to know when this field has changed its value and then notify the AutoProperty to change its value!! '''There's no magic here!!''' Expecting the ProLib to detect that means hooking to JVM's system events and maybe bytecode instrumentation which obviously we don't want to use (: 
     183     
     184 
    157185 * Multiple Properties (RED): 
    158186 
     
    192220 * @Shared 
    193221 * ProObject cloning 
     222 * Immutables; 
     223 * only Immutables and ProObjects 
     224 
     225== Rules == 
     226 * use properties, not fields; fields can be used, though in specific purposes if you know what you're doing. 
     227 
     228== BadCode == 
     229 * init final property with constant which isn;t an argument of the constructor 
     230 * finalproperty.init(new stuff()) 
    194231 
    195232== Code Examples with different Properties Kinds == 
     
    376413 * Tutorial unit test demonstrating the usage of !AutoProperty 
    377414 
    378  
    379415== How to apply properties to Sophie 2.0 == 
    380416 * To get rid of the fields, except for immutable classes, and public static final things.