Changes between Version 3 and Version 4 of DsxArchitectureCreation
- Timestamp:
- Jan 31, 2007, 6:38:46 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DsxArchitectureCreation
v3 v4 15 15 == Parameters == 16 16 17 Anywhere in `architecture` method, you may call `self.getParam(name , [default value])` to get an architecture instance parameter.17 Anywhere in `architecture` method, you may call `self.getParam(name)` to get an architecture instance parameter. 18 18 * name is the parameter name 19 19 * default value is optionnal 20 20 * user-specified value overrides default value 21 21 * if default value is not given when calling `getParam`, user-specified argument becomes mandatory. 22 * default value must be specified in class-global dictionnary 'defaults' 22 23 23 24 == Examples ==