1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package copyException.impl; |
8 | |
9 | import copyException.CopyExceptionPackage; |
10 | import copyException.Import; |
11 | |
12 | import org.eclipse.emf.common.notify.Notification; |
13 | |
14 | import org.eclipse.emf.ecore.EClass; |
15 | |
16 | import org.eclipse.emf.ecore.impl.ENotificationImpl; |
17 | import org.eclipse.emf.ecore.impl.EObjectImpl; |
18 | |
19 | /** |
20 | * <!-- begin-user-doc --> |
21 | * An implementation of the model object '<em><b>Import</b></em>'. |
22 | * <!-- end-user-doc --> |
23 | * <p> |
24 | * The following features are implemented: |
25 | * <ul> |
26 | * <li>{@link copyException.impl.ImportImpl#getImportURI <em>Import URI</em>}</li> |
27 | * </ul> |
28 | * </p> |
29 | * |
30 | * @generated |
31 | */ |
32 | public class ImportImpl extends EObjectImpl implements Import { |
33 | /** |
34 | * The default value of the '{@link #getImportURI() <em>Import URI</em>}' attribute. |
35 | * <!-- begin-user-doc --> |
36 | * <!-- end-user-doc --> |
37 | * @see #getImportURI() |
38 | * @generated |
39 | * @ordered |
40 | */ |
41 | protected static final String IMPORT_URI_EDEFAULT = null; |
42 | |
43 | /** |
44 | * The cached value of the '{@link #getImportURI() <em>Import URI</em>}' attribute. |
45 | * <!-- begin-user-doc --> |
46 | * <!-- end-user-doc --> |
47 | * @see #getImportURI() |
48 | * @generated |
49 | * @ordered |
50 | */ |
51 | protected String importURI = IMPORT_URI_EDEFAULT; |
52 | |
53 | /** |
54 | * <!-- begin-user-doc --> |
55 | * <!-- end-user-doc --> |
56 | * @generated |
57 | */ |
58 | protected ImportImpl() { |
59 | super(); |
60 | } |
61 | |
62 | /** |
63 | * <!-- begin-user-doc --> |
64 | * <!-- end-user-doc --> |
65 | * @generated |
66 | */ |
67 | @Override |
68 | protected EClass eStaticClass() { |
69 | return CopyExceptionPackage.Literals.IMPORT; |
70 | } |
71 | |
72 | /** |
73 | * <!-- begin-user-doc --> |
74 | * <!-- end-user-doc --> |
75 | * @generated |
76 | */ |
77 | public String getImportURI() { |
78 | return importURI; |
79 | } |
80 | |
81 | /** |
82 | * <!-- begin-user-doc --> |
83 | * <!-- end-user-doc --> |
84 | * @generated |
85 | */ |
86 | public void setImportURI(String newImportURI) { |
87 | String oldImportURI = importURI; |
88 | importURI = newImportURI; |
89 | if (eNotificationRequired()) |
90 | eNotify(new ENotificationImpl(this, Notification.SET, CopyExceptionPackage.IMPORT__IMPORT_URI, oldImportURI, importURI)); |
91 | } |
92 | |
93 | /** |
94 | * <!-- begin-user-doc --> |
95 | * <!-- end-user-doc --> |
96 | * @generated |
97 | */ |
98 | @Override |
99 | public Object eGet(int featureID, boolean resolve, boolean coreType) { |
100 | switch (featureID) { |
101 | case CopyExceptionPackage.IMPORT__IMPORT_URI: |
102 | return getImportURI(); |
103 | } |
104 | return super.eGet(featureID, resolve, coreType); |
105 | } |
106 | |
107 | /** |
108 | * <!-- begin-user-doc --> |
109 | * <!-- end-user-doc --> |
110 | * @generated |
111 | */ |
112 | @Override |
113 | public void eSet(int featureID, Object newValue) { |
114 | switch (featureID) { |
115 | case CopyExceptionPackage.IMPORT__IMPORT_URI: |
116 | setImportURI((String)newValue); |
117 | return; |
118 | } |
119 | super.eSet(featureID, newValue); |
120 | } |
121 | |
122 | /** |
123 | * <!-- begin-user-doc --> |
124 | * <!-- end-user-doc --> |
125 | * @generated |
126 | */ |
127 | @Override |
128 | public void eUnset(int featureID) { |
129 | switch (featureID) { |
130 | case CopyExceptionPackage.IMPORT__IMPORT_URI: |
131 | setImportURI(IMPORT_URI_EDEFAULT); |
132 | return; |
133 | } |
134 | super.eUnset(featureID); |
135 | } |
136 | |
137 | /** |
138 | * <!-- begin-user-doc --> |
139 | * <!-- end-user-doc --> |
140 | * @generated |
141 | */ |
142 | @Override |
143 | public boolean eIsSet(int featureID) { |
144 | switch (featureID) { |
145 | case CopyExceptionPackage.IMPORT__IMPORT_URI: |
146 | return IMPORT_URI_EDEFAULT == null ? importURI != null : !IMPORT_URI_EDEFAULT.equals(importURI); |
147 | } |
148 | return super.eIsSet(featureID); |
149 | } |
150 | |
151 | /** |
152 | * <!-- begin-user-doc --> |
153 | * <!-- end-user-doc --> |
154 | * @generated |
155 | */ |
156 | @Override |
157 | public String toString() { |
158 | if (eIsProxy()) return super.toString(); |
159 | |
160 | StringBuffer result = new StringBuffer(super.toString()); |
161 | result.append(" (importURI: "); |
162 | result.append(importURI); |
163 | result.append(')'); |
164 | return result.toString(); |
165 | } |
166 | |
167 | } //ImportImpl |