blob: 5db1386261b1841a757a6e9d76b71a97489ffd44 [file] [log] [blame]
package org.eclipse.stem.tests.util.decorators.impl;
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import java.util.Iterator;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.stem.core.graph.DynamicLabel;
import org.eclipse.stem.core.graph.Edge;
import org.eclipse.stem.core.graph.LabelValue;
import org.eclipse.stem.core.graph.Node;
import org.eclipse.stem.core.model.STEMTime;
import org.eclipse.stem.core.model.impl.EdgeDecoratorImpl;
import org.eclipse.stem.core.scenario.ScenarioInitializationException;
import org.eclipse.stem.tests.util.TestUtil;
import org.eclipse.stem.tests.util.decorators.DecoratorsPackage;
import org.eclipse.stem.tests.util.decorators.TestEdgeDecorator1;
import org.eclipse.stem.tests.util.labels.TestDynamicEdgeLabel;
import org.eclipse.stem.tests.util.labels.TestDynamicLabel1;
import org.eclipse.stem.tests.util.labels.TestIntegerLabelValue;
/**
* <!-- begin-user-doc --> An implementation of the model object '<em><b>Test Edge Decorator1</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.stem.tests.util.decorators.impl.TestEdgeDecorator1Impl#getNodeAURI <em>Node AURI</em>}</li>
* <li>{@link org.eclipse.stem.tests.util.decorators.impl.TestEdgeDecorator1Impl#getNodeBURI <em>Node BURI</em>}</li>
* <li>{@link org.eclipse.stem.tests.util.decorators.impl.TestEdgeDecorator1Impl#getEdgeURI <em>Edge URI</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class TestEdgeDecorator1Impl extends EdgeDecoratorImpl implements
TestEdgeDecorator1 {
/**
* The default value of the '{@link #getNodeAURI() <em>Node AURI</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @see #getNodeAURI()
* @generated
* @ordered
*/
protected static final URI NODE_AURI_EDEFAULT = null;
/**
* The cached value of the '{@link #getNodeAURI() <em>Node AURI</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @see #getNodeAURI()
* @generated
* @ordered
*/
protected URI nodeAURI = NODE_AURI_EDEFAULT;
/**
* The default value of the '{@link #getNodeBURI() <em>Node BURI</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @see #getNodeBURI()
* @generated
* @ordered
*/
protected static final URI NODE_BURI_EDEFAULT = null;
/**
* The cached value of the '{@link #getNodeBURI() <em>Node BURI</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @see #getNodeBURI()
* @generated
* @ordered
*/
protected URI nodeBURI = NODE_BURI_EDEFAULT;
/**
* The default value of the '{@link #getEdgeURI() <em>Edge URI</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @see #getEdgeURI()
* @generated
* @ordered
*/
protected static final URI EDGE_URI_EDEFAULT = null;
/**
* The cached value of the '{@link #getEdgeURI() <em>Edge URI</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @see #getEdgeURI()
* @generated
* @ordered
*/
protected URI edgeURI = EDGE_URI_EDEFAULT;
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
protected TestEdgeDecorator1Impl() {
super();
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return DecoratorsPackage.Literals.TEST_EDGE_DECORATOR1;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public URI getNodeAURI() {
return nodeAURI;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public void setNodeAURI(URI newNodeAURI) {
URI oldNodeAURI = nodeAURI;
nodeAURI = newNodeAURI;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, DecoratorsPackage.TEST_EDGE_DECORATOR1__NODE_AURI, oldNodeAURI, nodeAURI));
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public URI getNodeBURI() {
return nodeBURI;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public void setNodeBURI(URI newNodeBURI) {
URI oldNodeBURI = nodeBURI;
nodeBURI = newNodeBURI;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, DecoratorsPackage.TEST_EDGE_DECORATOR1__NODE_BURI, oldNodeBURI, nodeBURI));
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public URI getEdgeURI() {
return edgeURI;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public void setEdgeURI(URI newEdgeURI) {
URI oldEdgeURI = edgeURI;
edgeURI = newEdgeURI;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, DecoratorsPackage.TEST_EDGE_DECORATOR1__EDGE_URI, oldEdgeURI, edgeURI));
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case DecoratorsPackage.TEST_EDGE_DECORATOR1__NODE_AURI:
return getNodeAURI();
case DecoratorsPackage.TEST_EDGE_DECORATOR1__NODE_BURI:
return getNodeBURI();
case DecoratorsPackage.TEST_EDGE_DECORATOR1__EDGE_URI:
return getEdgeURI();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case DecoratorsPackage.TEST_EDGE_DECORATOR1__NODE_AURI:
setNodeAURI((URI)newValue);
return;
case DecoratorsPackage.TEST_EDGE_DECORATOR1__NODE_BURI:
setNodeBURI((URI)newValue);
return;
case DecoratorsPackage.TEST_EDGE_DECORATOR1__EDGE_URI:
setEdgeURI((URI)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case DecoratorsPackage.TEST_EDGE_DECORATOR1__NODE_AURI:
setNodeAURI(NODE_AURI_EDEFAULT);
return;
case DecoratorsPackage.TEST_EDGE_DECORATOR1__NODE_BURI:
setNodeBURI(NODE_BURI_EDEFAULT);
return;
case DecoratorsPackage.TEST_EDGE_DECORATOR1__EDGE_URI:
setEdgeURI(EDGE_URI_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case DecoratorsPackage.TEST_EDGE_DECORATOR1__NODE_AURI:
return NODE_AURI_EDEFAULT == null ? nodeAURI != null : !NODE_AURI_EDEFAULT.equals(nodeAURI);
case DecoratorsPackage.TEST_EDGE_DECORATOR1__NODE_BURI:
return NODE_BURI_EDEFAULT == null ? nodeBURI != null : !NODE_BURI_EDEFAULT.equals(nodeBURI);
case DecoratorsPackage.TEST_EDGE_DECORATOR1__EDGE_URI:
return EDGE_URI_EDEFAULT == null ? edgeURI != null : !EDGE_URI_EDEFAULT.equals(edgeURI);
}
return super.eIsSet(featureID);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
public String toString() {
if (eIsProxy()) return super.toString();
StringBuffer result = new StringBuffer(super.toString());
result.append(" (nodeAURI: "); //$NON-NLS-1$
result.append(nodeAURI);
result.append(", nodeBURI: "); //$NON-NLS-1$
result.append(nodeBURI);
result.append(", edgeURI: "); //$NON-NLS-1$
result.append(edgeURI);
result.append(')');
return result.toString();
}
/**
* @see org.eclipse.stem.core.model.impl.DecoratorImpl#decorateGraph(org.eclipse.stem.core.graph.Graph)
* @generated NOT
*/
@Override
public void decorateGraph(STEMTime time) throws ScenarioInitializationException {
if (isGraphDecorated()) return;
final Node nodeA = getGraph().getNode(getNodeAURI());
final Node nodeB = getGraph().getNode(getNodeBURI());
final Edge edge = TestUtil.createDynamicallyLabeledEdge(getNodeAURI(),
getNodeBURI(),getEdgeURI(), this);
edge.setA(nodeA);
edge.setB(nodeB);
nodeA.getEdges().add(edge);
nodeB.getEdges().add(edge);
getLabelsToUpdate().add((DynamicLabel)edge.getLabel());
// getGraph().addDynamicLabel((DynamicLabel) edge.getLabel());
getGraph().putEdge(edge);
assert edge.sane();
setGraphDecorated(true);
} // decorateGraph
/**
* @see org.eclipse.stem.core.model.impl.DecoratorImpl#updateLabels(Graph, STEMTime, long)
* @generated NOT
*/
@Override
public void updateLabels(STEMTime time, final long timeDelta, int cycele) {
for (final Iterator dynamicLabelIter = getLabelsToUpdate().iterator(); dynamicLabelIter
.hasNext();) {
final TestDynamicEdgeLabel testLabel = (TestDynamicEdgeLabel) dynamicLabelIter
.next();
testLabel.increment();
} // for
} // updateLabels
/**
* @see org.eclipse.stem.core.model.impl.DecoratorImpl#resetLabels(org.eclipse.stem.core.graph.Graph)
* @generated NOT
*/
@Override
public void resetLabels() {
final TestDynamicLabel1 TEST_LABEL = TestUtil
.createDynamicLabel(TestUtil.createNextIdentifiableToLabelURI());
final TestIntegerLabelValue RESET_VALUE = (TestIntegerLabelValue) TEST_LABEL
.getCurrentValue();
for (Iterator labelIter = getLabelsToUpdate().iterator(); labelIter
.hasNext();) {
final TestDynamicEdgeLabel dynamicLabel = (TestDynamicEdgeLabel) labelIter
.next();
dynamicLabel.setCurrentValue((LabelValue)EcoreUtil
.copy(RESET_VALUE));
}
} // resetLabels
} // TestEdgeDecorator1Impl