Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1f87bc2c184c2f6adb9664bb0eab19834c51123f (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*******************************************************************************
 * Copyright (c) 2009 THALES GLOBAL SERVICES.
 * 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:
 *    Obeo - initial API and implementation
 *******************************************************************************/
package org.eclipse.sirius.diagram.ui.business.internal.view;

import org.eclipse.gmf.runtime.notation.Edge;
import org.eclipse.sirius.diagram.DEdge;

/**
 * Common behavior for edge layout data.
 * 
 * @author dlecan
 */
public abstract class AbstractEdgeLayoutData extends AbstractLayoutData {

    /**
     * The target of this EdgeLayoutData.
     */
    private final DEdge target;

    /**
     * Constructor.
     * 
     * @param parent
     *            the parent layout data.
     * @param target
     *            The node to deal with
     * @param gmfEdge
     *            the corresponding GMF edge
     */
    public AbstractEdgeLayoutData(final LayoutData parent, final DEdge target, final Edge gmfEdge) {
        setParent(parent);
        this.target = target;
        if (gmfEdge != null) {
            init(gmfEdge);
        }
    }

    /**
     * Return the target.
     * 
     * @return the target
     */
    public DEdge getTarget() {
        return target;
    }

    /**
     * Initialize this object.
     * 
     * @param gmfEdge
     *            the corresponding GMF edge
     */
    protected abstract void init(Edge gmfEdge);

}

Back to the top