Design
reuse.txt
Associated article: Reusable Associations
Tags: Design
Published source code accompanying the article by Martin Soukup and Jiri Soukup in which they take the MDD concept of reusable assocations and implement them for C++, C#, and Java.
Reusable Associations
by Martin Soukup and Jiri Soukup
Listing One
class ChipLib {
Collection<Master> masters;
Master *chip;
Collection<Geometry> geometries;
};
class Master {
String name;
int xWidth,yWidth;
Collection<Block> blocks;
Collection<Net> ...


