Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8dce1b08f5738793e9b742e6b5d9092e2d6c9bf6 (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
/*******************************************************************************
 * Copyright (c) 2007, 2008 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.internal.edit.parts;

import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.sirius.diagram.ui.part.Messages;

/**
 * @was-generated
 */
public class DNodeContainerViewNodeContainerCompartmentEditPart extends AbstractDNodeContainerCompartmentEditPart {

    /**
     * @was-generated
     */
    public static final int VISUAL_ID = 7001;

    /**
     * @was-generated
     */
    public DNodeContainerViewNodeContainerCompartmentEditPart(View view) {
        super(view);
    }

    /**
     * @was-generated
     */
    public String getCompartmentName() {
        return Messages.DNodeContainerViewNodeContainerCompartmentEditPart_title;
    }
}

Back to the top