Changes between Version 26 and Version 27 of PRO_LIB_CORE_TUTORIAL
- Timestamp:
- 07/03/09 17:18:40 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PRO_LIB_CORE_TUTORIAL
v26 v27 78 78 The ProLib gives solution to the following problems: 79 79 * '''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 objectdepends 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: 81 81 * object A holds a reference to object B; 82 82 * object C must be initialized before object D because D needs data from object C to initialize itself; … … 524 524 525 525 This 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. 527 527 * An Immutable shouldn't depend on anything. 528 528 * ProObjects could depend on other ProObjects and Immutables.