blob: 538f5cb2d0f83715617b662ed09cfceeeff529d0 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2018 CEA LIST and others.
*
* 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:
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.internal.infra.gmfdiag.layers.model.layers.impl.custom;
import org.eclipse.papyrus.internal.infra.gmfdiag.layers.model.LayersException;
import org.eclipse.papyrus.internal.infra.gmfdiag.layers.model.layers.TypeInstance;
import org.eclipse.papyrus.internal.infra.gmfdiag.layers.model.layers.impl.CSSInstanceImpl;
/**
* @author QL238289
*
*/
public class CustomCSSInstanceImpl extends CSSInstanceImpl {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
*/
@Override
public TypeInstance getCmdValue() throws LayersException {
// By default, we return the instance itself, as there
// is nothing more to compute.
return this;
}
}