Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/org.eclipse.papyrus.uml.standard/src/org/eclipse/papyrus/uml/standard/impl/FileImpl.java')
-rw-r--r--deprecated/org.eclipse.papyrus.uml.standard/src/org/eclipse/papyrus/uml/standard/impl/FileImpl.java166
1 files changed, 0 insertions, 166 deletions
diff --git a/deprecated/org.eclipse.papyrus.uml.standard/src/org/eclipse/papyrus/uml/standard/impl/FileImpl.java b/deprecated/org.eclipse.papyrus.uml.standard/src/org/eclipse/papyrus/uml/standard/impl/FileImpl.java
deleted file mode 100644
index 04096a95723..00000000000
--- a/deprecated/org.eclipse.papyrus.uml.standard/src/org/eclipse/papyrus/uml/standard/impl/FileImpl.java
+++ /dev/null
@@ -1,166 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2009 CEA LIST.
- *
- *
- * 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:
- * Yann Tanguy (CEA LIST) yann.tanguy@cea.fr - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.uml.standard.impl;
-
-import org.eclipse.emf.common.notify.Notification;
-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.papyrus.uml.standard.File;
-import org.eclipse.papyrus.uml.standard.StandardPackage;
-import org.eclipse.uml2.uml.Artifact;
-
-/**
- * <!-- begin-user-doc --> An implementation of the model object '<em><b>File</b></em>'. <!--
- * end-user-doc -->
- * <p>
- * The following features are implemented:
- * <ul>
- * <li>{@link org.eclipse.papyrus.uml.standard.impl.FileImpl#getBase_Artifact <em>Base Artifact</em>}</li>
- * </ul>
- * </p>
- *
- * @generated
- */
-public class FileImpl extends EObjectImpl implements File {
-
- /**
- * The cached value of the '{@link #getBase_Artifact() <em>Base Artifact</em>}' reference. <!--
- * begin-user-doc --> <!-- end-user-doc -->
- *
- * @see #getBase_Artifact()
- * @generated
- * @ordered
- */
- protected Artifact base_Artifact;
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- *
- * @generated
- */
- protected FileImpl() {
- super();
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- *
- * @generated
- */
- @Override
- protected EClass eStaticClass() {
- return StandardPackage.Literals.FILE;
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- *
- * @generated
- */
- public Artifact getBase_Artifact() {
- if(base_Artifact != null && base_Artifact.eIsProxy()) {
- InternalEObject oldBase_Artifact = (InternalEObject)base_Artifact;
- base_Artifact = (Artifact)eResolveProxy(oldBase_Artifact);
- if(base_Artifact != oldBase_Artifact) {
- if(eNotificationRequired())
- eNotify(new ENotificationImpl(this, Notification.RESOLVE, StandardPackage.FILE__BASE_ARTIFACT, oldBase_Artifact, base_Artifact));
- }
- }
- return base_Artifact;
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- *
- * @generated
- */
- public Artifact basicGetBase_Artifact() {
- return base_Artifact;
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- *
- * @generated
- */
- public void setBase_Artifact(Artifact newBase_Artifact) {
- Artifact oldBase_Artifact = base_Artifact;
- base_Artifact = newBase_Artifact;
- if(eNotificationRequired())
- eNotify(new ENotificationImpl(this, Notification.SET, StandardPackage.FILE__BASE_ARTIFACT, oldBase_Artifact, base_Artifact));
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- *
- * @generated
- */
- @Override
- public Object eGet(int featureID, boolean resolve, boolean coreType) {
- switch(featureID) {
- case StandardPackage.FILE__BASE_ARTIFACT:
- if(resolve)
- return getBase_Artifact();
- return basicGetBase_Artifact();
- }
- return super.eGet(featureID, resolve, coreType);
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- *
- * @generated
- */
- @Override
- public void eSet(int featureID, Object newValue) {
- switch(featureID) {
- case StandardPackage.FILE__BASE_ARTIFACT:
- setBase_Artifact((Artifact)newValue);
- return;
- }
- super.eSet(featureID, newValue);
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- *
- * @generated
- */
- @Override
- public void eUnset(int featureID) {
- switch(featureID) {
- case StandardPackage.FILE__BASE_ARTIFACT:
- setBase_Artifact((Artifact)null);
- return;
- }
- super.eUnset(featureID);
- }
-
- /**
- * <!-- begin-user-doc --> <!-- end-user-doc -->
- *
- * @generated
- */
- @Override
- public boolean eIsSet(int featureID) {
- switch(featureID) {
- case StandardPackage.FILE__BASE_ARTIFACT:
- return base_Artifact != null;
- }
- return super.eIsSet(featureID);
- }
-
-} // FileImpl

Back to the top