blob: fedc3c7ceab216aeefe45d3c07fdf2c335241683 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2012 CEA LIST.
*
* All rights reserved. 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:
* Camille Letavernier (CEA LIST) camille.letavernier@cea.fr - Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.infra.gmfdiag.css.cdo;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.gmf.runtime.notation.JumpLinkStatus;
import org.eclipse.gmf.runtime.notation.JumpLinkType;
import org.eclipse.gmf.runtime.notation.NotationPackage;
import org.eclipse.gmf.runtime.notation.Routing;
import org.eclipse.gmf.runtime.notation.Smoothness;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.emf.cdo.gmf.notation.impl.RoutingStyleImpl;
import org.eclipse.papyrus.infra.gmfdiag.css.engine.ExtendedCSSEngine;
import org.eclipse.papyrus.infra.gmfdiag.css.notation.CSSDiagram;
import org.eclipse.papyrus.infra.gmfdiag.css.notation.ForceValueHelper;
import org.eclipse.papyrus.infra.gmfdiag.css.style.CSSRoutingStyle;
import org.eclipse.papyrus.infra.gmfdiag.css.style.impl.CSSRoutingStyleDelegate;
public class CSSRoutingStyleImpl extends RoutingStyleImpl implements CSSRoutingStyle {
protected ExtendedCSSEngine engine;
private CSSRoutingStyle routingStyle;
protected CSSRoutingStyle getRoutingStyle() {
if (routingStyle == null) {
routingStyle = new CSSRoutingStyleDelegate(this, getEngine());
}
return routingStyle;
}
protected ExtendedCSSEngine getEngine() {
if (engine == null) {
engine = ((CSSDiagram) findView().getDiagram()).getEngine();
}
return engine;
}
protected View findView() {
EObject parent = eContainer();
while (!(parent instanceof View) && parent != null) {
parent = parent.eContainer();
}
if (parent != null) {
return (View) parent;
}
return null;
}
// ////////////////////////////////////////
// Forwards accesses to CSS properties //
// ////////////////////////////////////////
@Override
public int getCSSRoundedBendpointsRadius() {
int value = super.getRoundedBendpointsRadius();
if (ForceValueHelper.isSet(findView(), this, NotationPackage.eINSTANCE.getRoundedCornersStyle_RoundedBendpointsRadius(), value)) {
return value;
} else {
return getRoutingStyle().getCSSRoundedBendpointsRadius();
}
}
@Override
public Routing getCSSRouting() {
Routing value = super.getRouting();
if (ForceValueHelper.isSet(findView(), this, NotationPackage.eINSTANCE.getRoutingStyle_Routing(), value)) {
return value;
} else {
return getRoutingStyle().getCSSRouting();
}
}
@Override
public Smoothness getCSSSmoothness() {
Smoothness value = super.getSmoothness();
if (ForceValueHelper.isSet(findView(), this, NotationPackage.eINSTANCE.getRoutingStyle_Smoothness(), value)) {
return value;
} else {
return getRoutingStyle().getCSSSmoothness();
}
}
@Override
public boolean isCSSAvoidObstructions() {
boolean value = super.isAvoidObstructions();
if (ForceValueHelper.isSet(findView(), this, NotationPackage.eINSTANCE.getRoutingStyle_AvoidObstructions(), value)) {
return value;
} else {
return getRoutingStyle().isCSSAvoidObstructions();
}
}
@Override
public boolean isCSSClosestDistance() {
boolean value = super.isClosestDistance();
if (ForceValueHelper.isSet(findView(), this, NotationPackage.eINSTANCE.getRoutingStyle_ClosestDistance(), value)) {
return value;
} else {
return getRoutingStyle().isCSSClosestDistance();
}
}
@Override
public JumpLinkStatus getCSSJumpLinkStatus() {
JumpLinkStatus value = super.getJumpLinkStatus();
if (ForceValueHelper.isSet(findView(), this, NotationPackage.eINSTANCE.getRoutingStyle_JumpLinkStatus(), value)) {
return value;
} else {
return getRoutingStyle().getCSSJumpLinkStatus();
}
}
@Override
public JumpLinkType getCSSJumpLinkType() {
JumpLinkType value = super.getJumpLinkType();
if (ForceValueHelper.isSet(findView(), this, NotationPackage.eINSTANCE.getRoutingStyle_JumpLinkType(), value)) {
return value;
} else {
return getRoutingStyle().getCSSJumpLinkType();
}
}
@Override
public boolean isCSSJumpLinksReverse() {
boolean value = super.isJumpLinksReverse();
if (ForceValueHelper.isSet(findView(), this, NotationPackage.eINSTANCE.getRoutingStyle_JumpLinksReverse(), value)) {
return value;
} else {
return getRoutingStyle().isCSSJumpLinksReverse();
}
}
@Override
public int getRoundedBendpointsRadius() {
return getCSSRoundedBendpointsRadius();
}
@Override
public Routing getRouting() {
return getCSSRouting();
}
@Override
public Smoothness getSmoothness() {
return getCSSSmoothness();
}
@Override
public boolean isAvoidObstructions() {
return isCSSAvoidObstructions();
}
@Override
public boolean isClosestDistance() {
return isCSSClosestDistance();
}
@Override
public JumpLinkStatus getJumpLinkStatus() {
return getCSSJumpLinkStatus();
}
@Override
public JumpLinkType getJumpLinkType() {
return getCSSJumpLinkType();
}
@Override
public boolean isJumpLinksReverse() {
return isCSSJumpLinksReverse();
}
// //////////////////////////////////////////////
// Implements a setter for each CSS property //
// //////////////////////////////////////////////
@Override
public void setRoundedBendpointsRadius(int value) {
super.setRoundedBendpointsRadius(value);
EStructuralFeature feature = NotationPackage.eINSTANCE.getRoundedCornersStyle_RoundedBendpointsRadius();
ForceValueHelper.setValue(findView(), feature, value);
}
@Override
public void setRouting(Routing value) {
super.setRouting(value);
EStructuralFeature feature = NotationPackage.eINSTANCE.getRoutingStyle_Routing();
ForceValueHelper.setValue(findView(), feature, value);
}
@Override
public void setSmoothness(Smoothness value) {
super.setSmoothness(value);
EStructuralFeature feature = NotationPackage.eINSTANCE.getRoutingStyle_Smoothness();
ForceValueHelper.setValue(findView(), feature, value);
}
@Override
public void setAvoidObstructions(boolean value) {
super.setAvoidObstructions(value);
EStructuralFeature feature = NotationPackage.eINSTANCE.getRoutingStyle_AvoidObstructions();
ForceValueHelper.setValue(findView(), feature, value);
}
@Override
public void setClosestDistance(boolean value) {
super.setClosestDistance(value);
EStructuralFeature feature = NotationPackage.eINSTANCE.getRoutingStyle_ClosestDistance();
ForceValueHelper.setValue(findView(), feature, value);
}
@Override
public void setJumpLinkStatus(JumpLinkStatus value) {
super.setJumpLinkStatus(value);
EStructuralFeature feature = NotationPackage.eINSTANCE.getRoutingStyle_JumpLinkStatus();
ForceValueHelper.setValue(findView(), feature, value);
}
@Override
public void setJumpLinkType(JumpLinkType value) {
super.setJumpLinkType(value);
EStructuralFeature feature = NotationPackage.eINSTANCE.getRoutingStyle_JumpLinkType();
ForceValueHelper.setValue(findView(), feature, value);
}
@Override
public void setJumpLinksReverse(boolean value) {
super.setJumpLinksReverse(value);
EStructuralFeature feature = NotationPackage.eINSTANCE.getRoutingStyle_JumpLinksReverse();
ForceValueHelper.setValue(findView(), feature, value);
}
// ////////////////////////////////
// Implements the unset method //
// ////////////////////////////////
@Override
public void eUnset(int featureId) {
super.eUnset(featureId);
EStructuralFeature feature = eClass().getEStructuralFeature(featureId);
ForceValueHelper.unsetValue(findView(), feature);
}
}