carbidecpp20devenv/plugins/org.eclipse.emf.cheatsheets_2.4.0.v200808251517/archive/java/Library.java
changeset 0 20e4ed35fd3f
--- /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	Fri Apr 03 17:08:57 2009 +0100
@@ -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();
+}