Changes between Version 26 and Version 27 of PRO_LIB_CORE_TUTORIAL


Ignore:
Timestamp:
07/03/09 17:18:40 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PRO_LIB_CORE_TUTORIAL

    v26 v27  
    7878The ProLib gives solution to the following problems: 
    7979 * '''Dependencies, initialization order and updating problems:''' [[BR]] 
    80  Let's say we've got lots of object which we're using in our application. These object depends on each other in a sense that: 
     80 Let's say we've got lots of objects which we're using in our application. These objects depends on each other in a sense that: 
    8181  * object A holds a reference to object B; 
    8282  * object C must be initialized before object D because D needs data from object C to initialize itself; 
     
    524524 
    525525This is an example how the dependency graph between ProObjects should look. 
    526  * It should contain cycles, otherwise we can never initialize this graph. 
     526 * It shouldn't contain cycles, otherwise we can never initialize this graph. 
    527527 * An Immutable shouldn't depend on anything. 
    528528 * ProObjects could depend on other ProObjects and Immutables.