1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package EMOF.impl; |
8 | |
9 | import EMOF.EMOFPackage; |
10 | import EMOF.ReflectiveSequence; |
11 | |
12 | import org.eclipse.emf.ecore.EClass; |
13 | |
14 | /** |
15 | * <!-- begin-user-doc --> |
16 | * An implementation of the model object '<em><b>Reflective Sequence</b></em>'. |
17 | * <!-- end-user-doc --> |
18 | * <p> |
19 | * </p> |
20 | * |
21 | * @generated |
22 | */ |
23 | public class ReflectiveSequenceImpl extends ReflectiveCollectionImpl implements ReflectiveSequence { |
24 | /** |
25 | * <!-- begin-user-doc --> |
26 | * <!-- end-user-doc --> |
27 | * @generated |
28 | */ |
29 | protected ReflectiveSequenceImpl() { |
30 | super(); |
31 | } |
32 | |
33 | /** |
34 | * <!-- begin-user-doc --> |
35 | * <!-- end-user-doc --> |
36 | * @generated |
37 | */ |
38 | @Override |
39 | protected EClass eStaticClass() { |
40 | return EMOFPackage.Literals.REFLECTIVE_SEQUENCE; |
41 | } |
42 | |
43 | /** |
44 | * <!-- begin-user-doc --> |
45 | * <!-- end-user-doc --> |
46 | * @generated |
47 | */ |
48 | public void add(Integer index, EMOF.Object object) { |
49 | // TODO: implement this method |
50 | // Ensure that you remove @generated or mark it @generated NOT |
51 | throw new UnsupportedOperationException(); |
52 | } |
53 | |
54 | /** |
55 | * <!-- begin-user-doc --> |
56 | * <!-- end-user-doc --> |
57 | * @generated |
58 | */ |
59 | public EMOF.Object get(Integer index) { |
60 | // TODO: implement this method |
61 | // Ensure that you remove @generated or mark it @generated NOT |
62 | throw new UnsupportedOperationException(); |
63 | } |
64 | |
65 | /** |
66 | * <!-- begin-user-doc --> |
67 | * <!-- end-user-doc --> |
68 | * @generated |
69 | */ |
70 | public EMOF.Object remove(Integer index) { |
71 | // TODO: implement this method |
72 | // Ensure that you remove @generated or mark it @generated NOT |
73 | throw new UnsupportedOperationException(); |
74 | } |
75 | |
76 | /** |
77 | * <!-- begin-user-doc --> |
78 | * <!-- end-user-doc --> |
79 | * @generated |
80 | */ |
81 | public EMOF.Object set(Integer index, EMOF.Object object) { |
82 | // TODO: implement this method |
83 | // Ensure that you remove @generated or mark it @generated NOT |
84 | throw new UnsupportedOperationException(); |
85 | } |
86 | |
87 | } //ReflectiveSequenceImpl |