JVM Languages
mda.txt
Associated article: UML 2.0 & Model-Driven Development
Tags: JVM Languages Design
Published source code accompanying the article by Lars Mats in which he develops a Java application using UML 2.0 and a model-driven development strategy. Also see MDA.ZIP.
UML 2.0 & Model-Driven Architectures
by Lars Mats
Figure 2:
PhoneBook Contact
part contact : Contact [*] contact
static main() *
Figure 3:
class PhoneBook {
static void main() {
(new PhoneBook()).doMainLoop();
}
private void doMainLoop() {
while (dispatchCommand())
;
}
private boolean dispatchCommand();
Contact contact;
}
Figure 4:
class PhoneBook {
static void ...


