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