Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEtienne Allogo2021-04-13 08:55:37 +0000
committerVincent Lorenzo2021-05-25 08:58:25 +0000
commit4370eaa4fb716149583d8d3c08aa335f24808dbb (patch)
treeeb10be10d55bc98d45ff09f4ffec0692a84d9e88 /plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.graphdef/src/org/eclipse/papyrus/gmf/gmfgraph/BorderLayout.java
parentb9f2662b9f2efb81b9401e1787eab92239e0dd24 (diff)
downloadorg.eclipse.papyrus-origin/bugs/569174-GMFToolingIntegration.tar.gz
org.eclipse.papyrus-origin/bugs/569174-GMFToolingIntegration.tar.xz
org.eclipse.papyrus-origin/bugs/569174-GMFToolingIntegration.zip
Bug 569174 - [Toolsmiths] Papyrus integration of GMF Toolingorigin/bugs/569174-GMFToolingIntegration
[L1.1] Acceptance - Integration of the gmf tooling plugin in papyrus - Dependencies to xpand and qvto removed - Obsolete plugins (graphdef /bridge, etc.) /external 'x-friends' removed - Prohibited 're-export' removed + fix dependencies - o.e.p.gmf.tooling.feature merged into o.e.p.diagramgen.feature Signed-off-by: Etienne Allogo <etienne.allogo@artal.fr> Change-Id: I93fd6980447d586728e31395d0637b278dcd62cf
Diffstat (limited to 'plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.graphdef/src/org/eclipse/papyrus/gmf/gmfgraph/BorderLayout.java')
-rw-r--r--plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.graphdef/src/org/eclipse/papyrus/gmf/gmfgraph/BorderLayout.java67
1 files changed, 0 insertions, 67 deletions
diff --git a/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.graphdef/src/org/eclipse/papyrus/gmf/gmfgraph/BorderLayout.java b/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.graphdef/src/org/eclipse/papyrus/gmf/gmfgraph/BorderLayout.java
deleted file mode 100644
index 87062b51d7f..00000000000
--- a/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.graphdef/src/org/eclipse/papyrus/gmf/gmfgraph/BorderLayout.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2020 Borland Software Corporation, CEA LIST, ARTAL
- *
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Borland - initial API and implementation
- * Aurelien Didier (ARTAL) - aurelien.didier51@gmail.com - Bug 569174
- ******************************************************************************/
-/**
- * <copyright>
- * </copyright>
- *
- * $Id$
- */
-package org.eclipse.papyrus.gmf.gmfgraph;
-
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Border Layout</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.papyrus.gmf.gmfgraph.BorderLayout#getSpacing <em>Spacing</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.papyrus.gmf.gmfgraph.GMFGraphPackage#getBorderLayout()
- * @model
- * @generated
- */
-public interface BorderLayout extends Layout {
- /**
- * Returns the value of the '<em><b>Spacing</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Spacing</em>' containment reference isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Spacing</em>' containment reference.
- * @see #setSpacing(Dimension)
- * @see org.eclipse.papyrus.gmf.gmfgraph.GMFGraphPackage#getBorderLayout_Spacing()
- * @model containment="true"
- * @generated
- */
- Dimension getSpacing();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.gmf.gmfgraph.BorderLayout#getSpacing <em>Spacing</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Spacing</em>' containment reference.
- * @see #getSpacing()
- * @generated
- */
- void setSpacing(Dimension value);
-
-} // BorderLayout

Back to the top