Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/core/composite/registry/ICompositeEditorFactoriesRegistry.java')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/core/composite/registry/ICompositeEditorFactoriesRegistry.java66
1 files changed, 33 insertions, 33 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/core/composite/registry/ICompositeEditorFactoriesRegistry.java b/plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/core/composite/registry/ICompositeEditorFactoriesRegistry.java
index 8454a30294d..643ce2c0a8d 100644
--- a/plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/core/composite/registry/ICompositeEditorFactoriesRegistry.java
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.widgets.celleditors/src/org/eclipse/papyrus/emf/facet/widgets/celleditors/core/composite/registry/ICompositeEditorFactoriesRegistry.java
@@ -1,33 +1,33 @@
-/*******************************************************************************
- * Copyright (c) 2011 Mia-Software.
- * 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:
- * Nicolas Guyomar (Mia-Software) - Bug 339554 - org.eclipse.papyrus.emf.facet.widgets.celleditors API cleaning
- *******************************************************************************/
-package org.eclipse.papyrus.emf.facet.widgets.celleditors.core.composite.registry;
-
-import org.eclipse.papyrus.emf.facet.widgets.celleditors.ICompositeEditorFactory;
-import org.eclipse.papyrus.emf.facet.widgets.celleditors.internal.composite.registries.CompositeEditorFactoriesRegistry;
-
-/**
- * Registry for the "compositeEditorFactories" extension point
- */
-public interface ICompositeEditorFactoriesRegistry {
-
- /** the singleton {@link ICompositeEditorFactoriesRegistry} */
- ICompositeEditorFactoriesRegistry INSTANCE = new CompositeEditorFactoriesRegistry();
-
- /** Whether there is a {@link CompositeEditorFactory} for the given type */
- boolean hasCompositeEditorFactory(final Class<?> type);
-
- /**
- * @return the {@link CompositeEditorFactory} for the given type, or <code>null</code> if none is
- * registered
- */
- <T> ICompositeEditorFactory<T> getCompositeEditorFactory(final Class<T> type);
-
-}
+/*******************************************************************************
+ * Copyright (c) 2011 Mia-Software.
+ * 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:
+ * Nicolas Guyomar (Mia-Software) - Bug 339554 - org.eclipse.papyrus.emf.facet.widgets.celleditors API cleaning
+ *******************************************************************************/
+package org.eclipse.papyrus.emf.facet.widgets.celleditors.core.composite.registry;
+
+import org.eclipse.papyrus.emf.facet.widgets.celleditors.ICompositeEditorFactory;
+import org.eclipse.papyrus.emf.facet.widgets.celleditors.internal.composite.registries.CompositeEditorFactoriesRegistry;
+
+/**
+ * Registry for the "compositeEditorFactories" extension point
+ */
+public interface ICompositeEditorFactoriesRegistry {
+
+ /** the singleton {@link ICompositeEditorFactoriesRegistry} */
+ ICompositeEditorFactoriesRegistry INSTANCE = new CompositeEditorFactoriesRegistry();
+
+ /** Whether there is a {@link CompositeEditorFactory} for the given type */
+ boolean hasCompositeEditorFactory(final Class<?> type);
+
+ /**
+ * @return the {@link CompositeEditorFactory} for the given type, or <code>null</code> if none is
+ * registered
+ */
+ <T> ICompositeEditorFactory<T> getCompositeEditorFactory(final Class<T> type);
+
+}

Back to the top