Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'uml/org.eclipse.papyrus.diagram.clazz/src/org/eclipse/papyrus/diagram/clazz/preferences/Enumeration_2006PreferencePage.java')
-rw-r--r--uml/org.eclipse.papyrus.diagram.clazz/src/org/eclipse/papyrus/diagram/clazz/preferences/Enumeration_2006PreferencePage.java71
1 files changed, 71 insertions, 0 deletions
diff --git a/uml/org.eclipse.papyrus.diagram.clazz/src/org/eclipse/papyrus/diagram/clazz/preferences/Enumeration_2006PreferencePage.java b/uml/org.eclipse.papyrus.diagram.clazz/src/org/eclipse/papyrus/diagram/clazz/preferences/Enumeration_2006PreferencePage.java
new file mode 100644
index 00000000000..0091e2a5f2c
--- /dev/null
+++ b/uml/org.eclipse.papyrus.diagram.clazz/src/org/eclipse/papyrus/diagram/clazz/preferences/Enumeration_2006PreferencePage.java
@@ -0,0 +1,71 @@
+/****************************************************************************
+ * Copyright (c) 2008 Atos Origin.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Thibault Landre (Atos Origin) - Initial API and implementation
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.diagram.clazz.preferences;
+
+import org.eclipse.jface.preference.IPreferenceStore;
+import org.eclipse.papyrus.diagram.clazz.part.UMLDiagramEditorPlugin;
+import org.eclipse.papyrus.preferences.pages.AbstractPapyrusNodePreferencePage;
+
+/**
+ * @generated
+ */
+public class Enumeration_2006PreferencePage extends AbstractPapyrusNodePreferencePage {
+
+ /**
+ * @generated
+ */
+ public static void initDefaults(IPreferenceStore store) {
+
+ }
+
+ /**
+ * @generated
+ */
+ @Override
+ protected String getBundleId() {
+ return UMLDiagramEditorPlugin.getInstance().ID;
+ }
+
+ /**
+ * @generated
+ */
+ @Override
+ protected String getFillColorPreferenceName() {
+ return IPapyrusPreferencesConstant.ENUMERATION_2006_PREF_FILL_COLOR;
+ }
+
+ /**
+ * @generated
+ */
+ @Override
+ protected String getFontColorPreferenceName() {
+ return IPapyrusPreferencesConstant.ENUMERATION_2006_PREF_FONT_COLOR;
+ }
+
+ /**
+ * @generated
+ */
+ @Override
+ protected String getFontPreferenceName() {
+ return IPapyrusPreferencesConstant.ENUMERATION_2006_PREF_FONT;
+ }
+
+ /**
+ * @generated
+ */
+ @Override
+ protected String getLineColorPreferenceName() {
+ return IPapyrusPreferencesConstant.ENUMERATION_2006_PREF_LINE_COLOR;
+ }
+
+}

Back to the top