Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5c7c24b78c88d9365728cf439e9a58b78182f80f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*******************************************************************************
 * Copyright (c) 2009, 2009 THALES GLOBAL SERVICES.
 * 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:
 *    Obeo - initial API and implementation
 *******************************************************************************/
package org.eclipse.sirius.diagram.ui.tools.internal.layout;

import org.eclipse.sirius.diagram.ui.tools.api.layout.LayoutDataKey;

/**
 * Interface for all kind of key use to store EdgelayoutData.
 * 
 * @author <a href="mailto:laurent.redor@obeo.fr">Laurent Redor</a>
 * 
 */
public interface EdgeLayoutDataKey extends LayoutDataKey {

}

Back to the top