Changes between Version 2 and Version 3 of PRO_LIB_CORE_TUTORIAL


Ignore:
Timestamp:
09/30/08 13:44:52 (17 years ago)
Author:
Tanya
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PRO_LIB_CORE_TUTORIAL

    v2 v3  
    99= Properties Kinds = 
    1010 * Property 
    11   * !ObjectProperty 
    12    * !FinalProperty 
    13    * !AutoProperty 
    14    * !ResourceProperty 
    15    * !ValueProperty 
    16     * !ParentProperty 
    17     * !UndoProperty - holds an undo manager. If the bean does not have such property, the properties try to locate UndoManager up (to parent).  
    18   * !ListProperty 
    19    * !ChildrenProperty  
     11  * !ObjectProperty - A property which holds a reference to a single object. 
     12   * !FinalProperty - One time write property. Once set, its value never changes. 
     13   * !AutoProperty - Smart property. A property which automatically monitors the information it depends on. In order to work, it should rely only on other properties and immutable values. 
     14   * !ResourceProperty - A property which holds a mutable resource. Useful for mutable non pro things like swing gui elements.   
     15   * !ValueProperty - A property that has a reference to an object and allows getting and setting it. 
     16    * !ParentProperty - Property which will hold a link to parent for parent-child relations. 
     17    * !UndoProperty - A property which holds the undo manager for given bean. If the bean does not have such property, the properties try to locate UndoManager up (to parent).  
     18  * !ListProperty - Basic list property. Holds references to many objects. 
     19   * !ChildrenProperty - Property which manages list of children for a child/parent relation. 
    2020 
    2121= How to apply properties to Sophie 2.0 =