Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathalie Lepine2015-03-13 15:45:57 +0000
committerNathalie Lepine2015-03-13 15:45:57 +0000
commit85d4fb4b82930f4643576be98ddc44ca43cc90e7 (patch)
treea58111fb65bf72150b09b4a7d2e8b8b51864e5d4
parent0e534a4f625d606fb92f548482e0661bb2055c95 (diff)
downloadorg.eclipse.eef-85d4fb4b82930f4643576be98ddc44ca43cc90e7.tar.gz
org.eclipse.eef-85d4fb4b82930f4643576be98ddc44ca43cc90e7.tar.xz
org.eclipse.eef-85d4fb4b82930f4643576be98ddc44ca43cc90e7.zip
fix uri handler commit
-rw-r--r--plugins/org.eclipse.emf.eef.runtime.ui/src/org/eclipse/emf/eef/runtime/ui/view/propertyeditors/ModelPropertyEditorFactory.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.eef.runtime.ui/src/org/eclipse/emf/eef/runtime/ui/view/propertyeditors/ModelPropertyEditorFactory.java b/plugins/org.eclipse.emf.eef.runtime.ui/src/org/eclipse/emf/eef/runtime/ui/view/propertyeditors/ModelPropertyEditorFactory.java
new file mode 100644
index 000000000..5f4ae1653
--- /dev/null
+++ b/plugins/org.eclipse.emf.eef.runtime.ui/src/org/eclipse/emf/eef/runtime/ui/view/propertyeditors/ModelPropertyEditorFactory.java
@@ -0,0 +1,34 @@
+/*******************************************************************************
+ * Copyright (c) 2013 Obeo.
+ * 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:
+ * Obeo - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.emf.eef.runtime.ui.view.propertyeditors;
+
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.emf.eef.runtime.binding.PropertiesEditingComponent;
+import org.eclipse.emf.eef.runtime.notify.PropertiesEditingEvent;
+
+/**
+ * @author <a href="mailto:goulwen.lefur@obeo.fr">Goulwen Le Fur</a>
+ *
+ */
+public interface ModelPropertyEditorFactory<T extends EObject, U> extends PropertyEditorFactory<U> {
+
+ /**
+ * @return the model for this provider.
+ */
+ T getModel();
+
+ /**
+ * @param editingComponent
+ * @param editingEvent
+ */
+ void firePropertiesChanged(PropertiesEditingComponent editingComponent, PropertiesEditingEvent editingEvent);
+
+}

Back to the top