Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.compare.diff/src/org/eclipse/emf/compare/diff/metamodel/impl/AbstractDiffExtensionImpl.java')
-rw-r--r--plugins/org.eclipse.emf.compare.diff/src/org/eclipse/emf/compare/diff/metamodel/impl/AbstractDiffExtensionImpl.java274
1 files changed, 0 insertions, 274 deletions
diff --git a/plugins/org.eclipse.emf.compare.diff/src/org/eclipse/emf/compare/diff/metamodel/impl/AbstractDiffExtensionImpl.java b/plugins/org.eclipse.emf.compare.diff/src/org/eclipse/emf/compare/diff/metamodel/impl/AbstractDiffExtensionImpl.java
deleted file mode 100644
index 0f559bee6..000000000
--- a/plugins/org.eclipse.emf.compare.diff/src/org/eclipse/emf/compare/diff/metamodel/impl/AbstractDiffExtensionImpl.java
+++ /dev/null
@@ -1,274 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2012 Obeo.
- * 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.emf.compare.diff.metamodel.impl;
-
-import java.util.Collection;
-
-import org.eclipse.emf.common.notify.Notification;
-import org.eclipse.emf.common.notify.NotificationChain;
-import org.eclipse.emf.common.util.EList;
-import org.eclipse.emf.compare.diff.merge.IMerger;
-import org.eclipse.emf.compare.diff.metamodel.AbstractDiffExtension;
-import org.eclipse.emf.compare.diff.metamodel.DiffElement;
-import org.eclipse.emf.compare.diff.metamodel.DiffModel;
-import org.eclipse.emf.compare.diff.metamodel.DiffPackage;
-import org.eclipse.emf.ecore.EClass;
-import org.eclipse.emf.ecore.InternalEObject;
-import org.eclipse.emf.ecore.impl.ENotificationImpl;
-import org.eclipse.emf.ecore.impl.EObjectImpl;
-import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList;
-import org.eclipse.emf.ecore.util.InternalEList;
-
-/**
- * <!-- begin-user-doc --> An implementation of the model object '<em><b>Abstract Diff Extension</b></em>'.
- * <!-- end-user-doc -->
- * <p>
- * The following features are implemented:
- * <ul>
- * <li>{@link org.eclipse.emf.compare.diff.metamodel.impl.AbstractDiffExtensionImpl#getHideElements <em>Hide Elements</em>}</li>
- * <li>{@link org.eclipse.emf.compare.diff.metamodel.impl.AbstractDiffExtensionImpl#isIsCollapsed <em>Is Collapsed</em>}</li>
- * </ul>
- * </p>
- *
- * @generated
- */
-public abstract class AbstractDiffExtensionImpl extends EObjectImpl implements AbstractDiffExtension {
- /**
- * The cached value of the '{@link #getHideElements() <em>Hide Elements</em>}' reference list. <!--
- * begin-user-doc --> <!-- end-user-doc -->
- *
- * @see #getHideElements()
- * @generated
- * @ordered
- */
- protected EList<DiffElement> hideElements;
-
- /**
- * The default value of the '{@link #isIsCollapsed() <em>Is Collapsed</em>}' attribute. <!--
- * begin-user-doc --> <!-- end-user-doc -->
- *
- * @see #isIsCollapsed()
- * @generated
- * @ordered
- */
- protected static final boolean IS_COLLAPSED_EDEFAULT = false;
-
- /**
- * The cached value of the '{@link #isIsCollapsed() <em>Is Collapsed</em>}' attribute.
- * <!-- begin-user-doc
- * --> <!-- end-user-doc -->
- * @see #isIsCollapsed()
- * @generated
- * @ordered
- */
- protected boolean isCollapsed = IS_COLLAPSED_EDEFAULT;
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- protected AbstractDiffExtensionImpl() {
- super();
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- @Override
- public Object eGet(int featureID, boolean resolve, boolean coreType) {
- switch (featureID) {
- case DiffPackage.ABSTRACT_DIFF_EXTENSION__HIDE_ELEMENTS:
- return getHideElements();
- case DiffPackage.ABSTRACT_DIFF_EXTENSION__IS_COLLAPSED:
- return isIsCollapsed();
- }
- return super.eGet(featureID, resolve, coreType);
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- @SuppressWarnings("unchecked")
- @Override
- public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
- switch (featureID) {
- case DiffPackage.ABSTRACT_DIFF_EXTENSION__HIDE_ELEMENTS:
- return ((InternalEList<InternalEObject>)(InternalEList<?>)getHideElements()).basicAdd(
- otherEnd, msgs);
- }
- return super.eInverseAdd(otherEnd, featureID, msgs);
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- @Override
- public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
- switch (featureID) {
- case DiffPackage.ABSTRACT_DIFF_EXTENSION__HIDE_ELEMENTS:
- return ((InternalEList<?>)getHideElements()).basicRemove(otherEnd, msgs);
- }
- return super.eInverseRemove(otherEnd, featureID, msgs);
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- @Override
- public boolean eIsSet(int featureID) {
- switch (featureID) {
- case DiffPackage.ABSTRACT_DIFF_EXTENSION__HIDE_ELEMENTS:
- return hideElements != null && !hideElements.isEmpty();
- case DiffPackage.ABSTRACT_DIFF_EXTENSION__IS_COLLAPSED:
- return isCollapsed != IS_COLLAPSED_EDEFAULT;
- }
- return super.eIsSet(featureID);
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- @SuppressWarnings("unchecked")
- @Override
- public void eSet(int featureID, Object newValue) {
- switch (featureID) {
- case DiffPackage.ABSTRACT_DIFF_EXTENSION__HIDE_ELEMENTS:
- getHideElements().clear();
- getHideElements().addAll((Collection<? extends DiffElement>)newValue);
- return;
- case DiffPackage.ABSTRACT_DIFF_EXTENSION__IS_COLLAPSED:
- setIsCollapsed((Boolean)newValue);
- return;
- }
- super.eSet(featureID, newValue);
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- @Override
- public void eUnset(int featureID) {
- switch (featureID) {
- case DiffPackage.ABSTRACT_DIFF_EXTENSION__HIDE_ELEMENTS:
- getHideElements().clear();
- return;
- case DiffPackage.ABSTRACT_DIFF_EXTENSION__IS_COLLAPSED:
- setIsCollapsed(IS_COLLAPSED_EDEFAULT);
- return;
- }
- super.eUnset(featureID);
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- public EList<DiffElement> getHideElements() {
- if (hideElements == null) {
- hideElements = new EObjectWithInverseResolvingEList.ManyInverse<DiffElement>(DiffElement.class,
- this, DiffPackage.ABSTRACT_DIFF_EXTENSION__HIDE_ELEMENTS,
- DiffPackage.DIFF_ELEMENT__IS_HIDDEN_BY);
- }
- return hideElements;
- }
-
- /**
- * <!-- begin-user-doc --> Should return a org.eclipse.swt.graphics.Image object representing the
- * {@link AbstractDiffExtension}. <!-- end-user-doc -->
- *
- * @generated NOT
- */
- public Object getImage() {
- return null;
- }
-
- /**
- * <!-- begin-user-doc --> Should return the text used to represent the {@link AbstractDiffExtension};
- * <!-- end-user-doc -->
- *
- * @generated NOT
- */
- public String getText() {
- return "Diff Extension"; //$NON-NLS-1$
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- public boolean isIsCollapsed() {
- return isCollapsed;
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- public IMerger provideMerger() {
- // TODO: implement this method
- // Ensure that you remove @generated or mark it @generated NOT
- throw new UnsupportedOperationException();
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- public void setIsCollapsed(boolean newIsCollapsed) {
- boolean oldIsCollapsed = isCollapsed;
- isCollapsed = newIsCollapsed;
- if (eNotificationRequired())
- eNotify(new ENotificationImpl(this, Notification.SET,
- DiffPackage.ABSTRACT_DIFF_EXTENSION__IS_COLLAPSED, oldIsCollapsed, isCollapsed));
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- @Override
- public String toString() {
- if (eIsProxy())
- return super.toString();
-
- StringBuffer result = new StringBuffer(super.toString());
- result.append(" (isCollapsed: "); //$NON-NLS-1$
- result.append(isCollapsed);
- result.append(')');
- return result.toString();
- }
-
- /**
- * <!-- begin-user-doc --> This method is called by the Diff Engine to let the diff extension a chance to
- * refactor the diff model and plug themselves inside. <!-- end-user-doc -->
- *
- * @generated NOT
- */
- public void visit(DiffModel diffModel) {
- // you should redefine this method
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
- */
- @Override
- protected EClass eStaticClass() {
- return DiffPackage.Literals.ABSTRACT_DIFF_EXTENSION;
- }
-
-} // AbstractDiffExtensionImpl

Back to the top