carbidecpp20devenv/plugins/org.eclipse.emf.cheatsheets_2.4.0.v200808251517/archive/java/BookCategory.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/BookCategory.java	Fri Apr 03 17:08:57 2009 +0100
@@ -0,0 +1,22 @@
+package org.eclipse.example.library;
+
+/**
+ * @model
+ */
+public class BookCategory
+{
+  /**
+   * @model name="Mystery"
+   */
+  public static final int MYSTERY = 0;
+
+  /**
+   * @model name="ScienceFiction"
+   */
+  public static final int SCIENCE_FICTION = 1;
+
+  /**
+   * @model name="Biography"
+   */
+  public static final int BIOGRAPHY = 2;
+}