Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/layout/org.eclipse.papyrus.layout.algorithms.treeAlgorithm/src/org/eclipse/papyrus/layout/algorithms/treealgorithm/TreeAlgorithm.java')
-rw-r--r--extraplugins/layout/org.eclipse.papyrus.layout.algorithms.treeAlgorithm/src/org/eclipse/papyrus/layout/algorithms/treealgorithm/TreeAlgorithm.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/extraplugins/layout/org.eclipse.papyrus.layout.algorithms.treeAlgorithm/src/org/eclipse/papyrus/layout/algorithms/treealgorithm/TreeAlgorithm.java b/extraplugins/layout/org.eclipse.papyrus.layout.algorithms.treeAlgorithm/src/org/eclipse/papyrus/layout/algorithms/treealgorithm/TreeAlgorithm.java
deleted file mode 100644
index 49df698dae6..00000000000
--- a/extraplugins/layout/org.eclipse.papyrus.layout.algorithms.treeAlgorithm/src/org/eclipse/papyrus/layout/algorithms/treealgorithm/TreeAlgorithm.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2009 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:
- * Allanic Alexia (Atos Origin) alexia.allanic@atosorigin.com - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.layout.algorithms.treealgorithm;
-
-import org.eclipse.papyrus.layout.managealgorithms.AlgorithmFactory;
-import org.eclipse.zest.layouts.LayoutStyles;
-import org.eclipse.zest.layouts.algorithms.AbstractLayoutAlgorithm;
-import org.eclipse.zest.layouts.algorithms.TreeLayoutAlgorithm;
-
-/**
- * The Class TreeAlgorithm.
- */
-public class TreeAlgorithm implements AlgorithmFactory {
-
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.papyrus.layout.managealgorithms.AlgorithmFactory#createAlgorithm()
- */
- @Override
- public AbstractLayoutAlgorithm createAlgorithm() {
- return new TreeLayoutAlgorithm(LayoutStyles.NO_LAYOUT_NODE_RESIZING);
- }
-
-}

Back to the top