blob: 791afe838a515e32ec15a69332318d48c55e7744 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018, 2019 Obeo
* 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.server.diagram.internal.entities;
import java.util.ArrayList;
import org.eclipse.sprotty.SCompartment;
/**
* The label compartment of the {@link SiriusListFlatContainerNode}.
*
* @author sbegaudeau
*/
public class SiriusListFlatContainerNodeLabelCompartment extends SCompartment {
/**
* The type of the {@link SiriusListFlatContainerNodeLabelCompartment}.
*/
private static final String TYPE = "comp:listflatcontainer_label"; //$NON-NLS-1$
/**
* The constructor.
*
* @param identifier
* The identifier
*/
public SiriusListFlatContainerNodeLabelCompartment(String identifier) {
this.setId(identifier);
this.setType(TYPE);
this.setLayout("hbox"); //$NON-NLS-1$
this.setChildren(new ArrayList<>());
}
}