Open Source
emf2.txt
Associated article: The Eclipse Modeling Framework
Tags: Open Source
Published source code accompanying the article by Frank Budinsky in which he examines the Eclipse Modeling Framework which helps you define models, and from which many common code generation patterns are generated.
The Eclipse Modeling Framework
by Frank Budinsky
Listing One
public interface PurchaseOrder {
String getShipTo();
void setShipTo(String value);
String getBillTo();
void setBillTo(String value);
List getItems(); // List of Item
}
public interface Item {
String getProductName();
void setProductName(String value);
int getQuantity();
...


