Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/core/org.eclipse.papyrus.properties.runtime/src/org/eclipse/papyrus/properties/runtime/modelhandler/IPropertyModelHandlerFactory.java')
-rw-r--r--plugins/core/org.eclipse.papyrus.properties.runtime/src/org/eclipse/papyrus/properties/runtime/modelhandler/IPropertyModelHandlerFactory.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/plugins/core/org.eclipse.papyrus.properties.runtime/src/org/eclipse/papyrus/properties/runtime/modelhandler/IPropertyModelHandlerFactory.java b/plugins/core/org.eclipse.papyrus.properties.runtime/src/org/eclipse/papyrus/properties/runtime/modelhandler/IPropertyModelHandlerFactory.java
deleted file mode 100644
index b50d27a20ef..00000000000
--- a/plugins/core/org.eclipse.papyrus.properties.runtime/src/org/eclipse/papyrus/properties/runtime/modelhandler/IPropertyModelHandlerFactory.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2010 CEA LIST.
- *
- * 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:
- * Remi Schnekenburger (CEA LIST) remi.schnekenburger@cea.fr - Initial API and implementation
- *****************************************************************************/
-package org.eclipse.papyrus.properties.runtime.modelhandler;
-
-import org.w3c.dom.Node;
-
-/**
- * Interface implemented by all model handler factories
- */
-public interface IPropertyModelHandlerFactory {
-
- /**
- * Creates an instance of the model handler, given the configuration node
- *
- * @param modelHandlerNode
- * the configuration node for the instance of the model handler to create
- * @return the created model handler
- */
- Object createModelHandler(Node modelHandlerNode);
-}

Back to the top