carbidecpp20devenv/plugins/org.eclipse.emf.cheatsheets_2.4.0.v200808251517/archive/java/Library.java
changeset 1 82d1d1de1a01
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/carbidecpp20devenv/plugins/org.eclipse.emf.cheatsheets_2.4.0.v200808251517/archive/java/Library.java	Wed Mar 18 17:21:00 2009 -0500
@@ -0,0 +1,24 @@
+package org.eclipse.example.library;
+
+import java.util.List;
+
+/**
+ * @model
+ */
+public interface Library
+{
+  /**
+   * @model
+   */
+  String getName();
+
+  /**
+   * @model type="Writer" containment="true"
+   */
+  List getWriters();
+
+  /**
+   * @model type="Book" containment="true"
+   */
+  List getBooks();
+}