Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e1ac41989ff22c7cfcaa95367950dab8d606ea8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
/**
 *   Copyright (c) 2016 CEA LIST and others.
 *   
 *   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:
 *     CEA LIST - Initial API and implementation
 * 
 */
package org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.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.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;

import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;

import org.eclipse.emf.ecore.util.EDataTypeEList;
import org.eclipse.emf.ecore.util.EObjectContainmentEList;
import org.eclipse.emf.ecore.util.InternalEList;

import org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.CGIBox;
import org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.CGIMscChart;
import org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.CGIText;
import org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.GraphElementsType;
import org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.IMSC;
import org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.UMLRhapsodyPackage;

/**
 * <!-- begin-user-doc -->
 * An implementation of the model object '<em><b>CGI Msc Chart</b></em>'.
 * <!-- end-user-doc -->
 * <p>
 * The following features are implemented:
 * </p>
 * <ul>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getVLadderMargin <em>VLadder Margin</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_usingActivationBar <em>Musing Activation Bar</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getId <em>Id</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_type <em>Mtype</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_pModelObject <em>MpModel Object</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_pParent <em>MpParent</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_name <em>Mname</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_drawBehavior <em>Mdraw Behavior</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_bIsPreferencesInitialized <em>MbIs Preferences Initialized</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getElementList <em>Element List</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getGraphElements <em>Graph Elements</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_access <em>Maccess</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_modified <em>Mmodified</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_fileVersion <em>Mfile Version</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_nModifyDate <em>MnModify Date</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_nCreateDate <em>MnCreate Date</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_creator <em>Mcreator</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_bScaleWithZoom <em>MbScale With Zoom</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_arrowStyle <em>Marrow Style</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_pRoot <em>MpRoot</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_currentLeftTop <em>Mcurrent Left Top</em>}</li>
 *   <li>{@link org.eclipse.papyrus.migration.rhapsody.rhapsodymetamodel.impl.CGIMscChartImpl#getM_currentRightBottom <em>Mcurrent Right Bottom</em>}</li>
 * </ul>
 *
 * @generated
 */
public class CGIMscChartImpl extends MinimalEObjectImpl.Container implements CGIMscChart {
	/**
	 * The default value of the '{@link #getVLadderMargin() <em>VLadder Margin</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getVLadderMargin()
	 * @generated
	 * @ordered
	 */
	protected static final String VLADDER_MARGIN_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getVLadderMargin() <em>VLadder Margin</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getVLadderMargin()
	 * @generated
	 * @ordered
	 */
	protected String vLadderMargin = VLADDER_MARGIN_EDEFAULT;

	/**
	 * The default value of the '{@link #getM_usingActivationBar() <em>Musing Activation Bar</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_usingActivationBar()
	 * @generated
	 * @ordered
	 */
	protected static final String MUSING_ACTIVATION_BAR_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_usingActivationBar() <em>Musing Activation Bar</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_usingActivationBar()
	 * @generated
	 * @ordered
	 */
	protected String m_usingActivationBar = MUSING_ACTIVATION_BAR_EDEFAULT;

	/**
	 * The default value of the '{@link #getId() <em>Id</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getId()
	 * @generated
	 * @ordered
	 */
	protected static final String ID_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getId() <em>Id</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getId()
	 * @generated
	 * @ordered
	 */
	protected String id = ID_EDEFAULT;

	/**
	 * The default value of the '{@link #getM_type() <em>Mtype</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_type()
	 * @generated
	 * @ordered
	 */
	protected static final String MTYPE_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_type() <em>Mtype</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_type()
	 * @generated
	 * @ordered
	 */
	protected String m_type = MTYPE_EDEFAULT;

	/**
	 * The cached value of the '{@link #getM_pModelObject() <em>MpModel Object</em>}' reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_pModelObject()
	 * @generated
	 * @ordered
	 */
	protected IMSC m_pModelObject;

	/**
	 * The default value of the '{@link #getM_pParent() <em>MpParent</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_pParent()
	 * @generated
	 * @ordered
	 */
	protected static final String MPPARENT_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_pParent() <em>MpParent</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_pParent()
	 * @generated
	 * @ordered
	 */
	protected String m_pParent = MPPARENT_EDEFAULT;

	/**
	 * The cached value of the '{@link #getM_name() <em>Mname</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_name()
	 * @generated
	 * @ordered
	 */
	protected CGIText m_name;

	/**
	 * The default value of the '{@link #getM_drawBehavior() <em>Mdraw Behavior</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_drawBehavior()
	 * @generated
	 * @ordered
	 */
	protected static final String MDRAW_BEHAVIOR_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_drawBehavior() <em>Mdraw Behavior</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_drawBehavior()
	 * @generated
	 * @ordered
	 */
	protected String m_drawBehavior = MDRAW_BEHAVIOR_EDEFAULT;

	/**
	 * The default value of the '{@link #getM_bIsPreferencesInitialized() <em>MbIs Preferences Initialized</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_bIsPreferencesInitialized()
	 * @generated
	 * @ordered
	 */
	protected static final String MBIS_PREFERENCES_INITIALIZED_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_bIsPreferencesInitialized() <em>MbIs Preferences Initialized</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_bIsPreferencesInitialized()
	 * @generated
	 * @ordered
	 */
	protected String m_bIsPreferencesInitialized = MBIS_PREFERENCES_INITIALIZED_EDEFAULT;

	/**
	 * The default value of the '{@link #getElementList() <em>Element List</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getElementList()
	 * @generated
	 * @ordered
	 */
	protected static final String ELEMENT_LIST_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getElementList() <em>Element List</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getElementList()
	 * @generated
	 * @ordered
	 */
	protected String elementList = ELEMENT_LIST_EDEFAULT;

	/**
	 * The cached value of the '{@link #getGraphElements() <em>Graph Elements</em>}' containment reference list.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getGraphElements()
	 * @generated
	 * @ordered
	 */
	protected EList<GraphElementsType> graphElements;

	/**
	 * The default value of the '{@link #getM_access() <em>Maccess</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_access()
	 * @generated
	 * @ordered
	 */
	protected static final String MACCESS_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_access() <em>Maccess</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_access()
	 * @generated
	 * @ordered
	 */
	protected String m_access = MACCESS_EDEFAULT;

	/**
	 * The default value of the '{@link #getM_modified() <em>Mmodified</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_modified()
	 * @generated
	 * @ordered
	 */
	protected static final String MMODIFIED_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_modified() <em>Mmodified</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_modified()
	 * @generated
	 * @ordered
	 */
	protected String m_modified = MMODIFIED_EDEFAULT;

	/**
	 * The default value of the '{@link #getM_fileVersion() <em>Mfile Version</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_fileVersion()
	 * @generated
	 * @ordered
	 */
	protected static final String MFILE_VERSION_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_fileVersion() <em>Mfile Version</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_fileVersion()
	 * @generated
	 * @ordered
	 */
	protected String m_fileVersion = MFILE_VERSION_EDEFAULT;

	/**
	 * The default value of the '{@link #getM_nModifyDate() <em>MnModify Date</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_nModifyDate()
	 * @generated
	 * @ordered
	 */
	protected static final String MNMODIFY_DATE_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_nModifyDate() <em>MnModify Date</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_nModifyDate()
	 * @generated
	 * @ordered
	 */
	protected String m_nModifyDate = MNMODIFY_DATE_EDEFAULT;

	/**
	 * The default value of the '{@link #getM_nCreateDate() <em>MnCreate Date</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_nCreateDate()
	 * @generated
	 * @ordered
	 */
	protected static final String MNCREATE_DATE_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_nCreateDate() <em>MnCreate Date</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_nCreateDate()
	 * @generated
	 * @ordered
	 */
	protected String m_nCreateDate = MNCREATE_DATE_EDEFAULT;

	/**
	 * The default value of the '{@link #getM_creator() <em>Mcreator</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_creator()
	 * @generated
	 * @ordered
	 */
	protected static final String MCREATOR_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_creator() <em>Mcreator</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_creator()
	 * @generated
	 * @ordered
	 */
	protected String m_creator = MCREATOR_EDEFAULT;

	/**
	 * The default value of the '{@link #getM_bScaleWithZoom() <em>MbScale With Zoom</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_bScaleWithZoom()
	 * @generated
	 * @ordered
	 */
	protected static final String MBSCALE_WITH_ZOOM_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_bScaleWithZoom() <em>MbScale With Zoom</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_bScaleWithZoom()
	 * @generated
	 * @ordered
	 */
	protected String m_bScaleWithZoom = MBSCALE_WITH_ZOOM_EDEFAULT;

	/**
	 * The default value of the '{@link #getM_arrowStyle() <em>Marrow Style</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_arrowStyle()
	 * @generated
	 * @ordered
	 */
	protected static final String MARROW_STYLE_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getM_arrowStyle() <em>Marrow Style</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_arrowStyle()
	 * @generated
	 * @ordered
	 */
	protected String m_arrowStyle = MARROW_STYLE_EDEFAULT;

	/**
	 * The cached value of the '{@link #getM_pRoot() <em>MpRoot</em>}' reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_pRoot()
	 * @generated
	 * @ordered
	 */
	protected CGIBox m_pRoot;

	/**
	 * The cached value of the '{@link #getM_currentLeftTop() <em>Mcurrent Left Top</em>}' attribute list.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_currentLeftTop()
	 * @generated
	 * @ordered
	 */
	protected EList<String> m_currentLeftTop;

	/**
	 * The cached value of the '{@link #getM_currentRightBottom() <em>Mcurrent Right Bottom</em>}' attribute list.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getM_currentRightBottom()
	 * @generated
	 * @ordered
	 */
	protected EList<String> m_currentRightBottom;

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	protected CGIMscChartImpl() {
		super();
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	protected EClass eStaticClass() {
		return UMLRhapsodyPackage.eINSTANCE.getCGIMscChart();
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getVLadderMargin() {
		return vLadderMargin;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setVLadderMargin(String newVLadderMargin) {
		String oldVLadderMargin = vLadderMargin;
		vLadderMargin = newVLadderMargin;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__VLADDER_MARGIN, oldVLadderMargin, vLadderMargin));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_usingActivationBar() {
		return m_usingActivationBar;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_usingActivationBar(String newM_usingActivationBar) {
		String oldM_usingActivationBar = m_usingActivationBar;
		m_usingActivationBar = newM_usingActivationBar;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MUSING_ACTIVATION_BAR, oldM_usingActivationBar, m_usingActivationBar));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getId() {
		return id;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setId(String newId) {
		String oldId = id;
		id = newId;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__ID, oldId, id));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_type() {
		return m_type;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_type(String newM_type) {
		String oldM_type = m_type;
		m_type = newM_type;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MTYPE, oldM_type, m_type));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public IMSC getM_pModelObject() {
		if (m_pModelObject != null && m_pModelObject.eIsProxy()) {
			InternalEObject oldM_pModelObject = (InternalEObject)m_pModelObject;
			m_pModelObject = (IMSC)eResolveProxy(oldM_pModelObject);
			if (m_pModelObject != oldM_pModelObject) {
				if (eNotificationRequired())
					eNotify(new ENotificationImpl(this, Notification.RESOLVE, UMLRhapsodyPackage.CGI_MSC_CHART__MPMODEL_OBJECT, oldM_pModelObject, m_pModelObject));
			}
		}
		return m_pModelObject;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public IMSC basicGetM_pModelObject() {
		return m_pModelObject;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_pModelObject(IMSC newM_pModelObject) {
		IMSC oldM_pModelObject = m_pModelObject;
		m_pModelObject = newM_pModelObject;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MPMODEL_OBJECT, oldM_pModelObject, m_pModelObject));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_pParent() {
		return m_pParent;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_pParent(String newM_pParent) {
		String oldM_pParent = m_pParent;
		m_pParent = newM_pParent;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MPPARENT, oldM_pParent, m_pParent));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public CGIText getM_name() {
		if (m_name != null && m_name.eIsProxy()) {
			InternalEObject oldM_name = (InternalEObject)m_name;
			m_name = (CGIText)eResolveProxy(oldM_name);
			if (m_name != oldM_name) {
				InternalEObject newM_name = (InternalEObject)m_name;
				NotificationChain msgs = oldM_name.eInverseRemove(this, EOPPOSITE_FEATURE_BASE - UMLRhapsodyPackage.CGI_MSC_CHART__MNAME, null, null);
				if (newM_name.eInternalContainer() == null) {
					msgs = newM_name.eInverseAdd(this, EOPPOSITE_FEATURE_BASE - UMLRhapsodyPackage.CGI_MSC_CHART__MNAME, null, msgs);
				}
				if (msgs != null) msgs.dispatch();
				if (eNotificationRequired())
					eNotify(new ENotificationImpl(this, Notification.RESOLVE, UMLRhapsodyPackage.CGI_MSC_CHART__MNAME, oldM_name, m_name));
			}
		}
		return m_name;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public CGIText basicGetM_name() {
		return m_name;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public NotificationChain basicSetM_name(CGIText newM_name, NotificationChain msgs) {
		CGIText oldM_name = m_name;
		m_name = newM_name;
		if (eNotificationRequired()) {
			ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MNAME, oldM_name, newM_name);
			if (msgs == null) msgs = notification; else msgs.add(notification);
		}
		return msgs;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_name(CGIText newM_name) {
		if (newM_name != m_name) {
			NotificationChain msgs = null;
			if (m_name != null)
				msgs = ((InternalEObject)m_name).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - UMLRhapsodyPackage.CGI_MSC_CHART__MNAME, null, msgs);
			if (newM_name != null)
				msgs = ((InternalEObject)newM_name).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - UMLRhapsodyPackage.CGI_MSC_CHART__MNAME, null, msgs);
			msgs = basicSetM_name(newM_name, msgs);
			if (msgs != null) msgs.dispatch();
		}
		else if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MNAME, newM_name, newM_name));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_drawBehavior() {
		return m_drawBehavior;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_drawBehavior(String newM_drawBehavior) {
		String oldM_drawBehavior = m_drawBehavior;
		m_drawBehavior = newM_drawBehavior;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MDRAW_BEHAVIOR, oldM_drawBehavior, m_drawBehavior));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_bIsPreferencesInitialized() {
		return m_bIsPreferencesInitialized;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_bIsPreferencesInitialized(String newM_bIsPreferencesInitialized) {
		String oldM_bIsPreferencesInitialized = m_bIsPreferencesInitialized;
		m_bIsPreferencesInitialized = newM_bIsPreferencesInitialized;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MBIS_PREFERENCES_INITIALIZED, oldM_bIsPreferencesInitialized, m_bIsPreferencesInitialized));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getElementList() {
		return elementList;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setElementList(String newElementList) {
		String oldElementList = elementList;
		elementList = newElementList;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__ELEMENT_LIST, oldElementList, elementList));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public EList<GraphElementsType> getGraphElements() {
		if (graphElements == null) {
			graphElements = new EObjectContainmentEList.Resolving<GraphElementsType>(GraphElementsType.class, this, UMLRhapsodyPackage.CGI_MSC_CHART__GRAPH_ELEMENTS);
		}
		return graphElements;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_access() {
		return m_access;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_access(String newM_access) {
		String oldM_access = m_access;
		m_access = newM_access;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MACCESS, oldM_access, m_access));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_modified() {
		return m_modified;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_modified(String newM_modified) {
		String oldM_modified = m_modified;
		m_modified = newM_modified;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MMODIFIED, oldM_modified, m_modified));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_fileVersion() {
		return m_fileVersion;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_fileVersion(String newM_fileVersion) {
		String oldM_fileVersion = m_fileVersion;
		m_fileVersion = newM_fileVersion;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MFILE_VERSION, oldM_fileVersion, m_fileVersion));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_nModifyDate() {
		return m_nModifyDate;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_nModifyDate(String newM_nModifyDate) {
		String oldM_nModifyDate = m_nModifyDate;
		m_nModifyDate = newM_nModifyDate;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MNMODIFY_DATE, oldM_nModifyDate, m_nModifyDate));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_nCreateDate() {
		return m_nCreateDate;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_nCreateDate(String newM_nCreateDate) {
		String oldM_nCreateDate = m_nCreateDate;
		m_nCreateDate = newM_nCreateDate;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MNCREATE_DATE, oldM_nCreateDate, m_nCreateDate));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_creator() {
		return m_creator;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_creator(String newM_creator) {
		String oldM_creator = m_creator;
		m_creator = newM_creator;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MCREATOR, oldM_creator, m_creator));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_bScaleWithZoom() {
		return m_bScaleWithZoom;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_bScaleWithZoom(String newM_bScaleWithZoom) {
		String oldM_bScaleWithZoom = m_bScaleWithZoom;
		m_bScaleWithZoom = newM_bScaleWithZoom;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MBSCALE_WITH_ZOOM, oldM_bScaleWithZoom, m_bScaleWithZoom));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getM_arrowStyle() {
		return m_arrowStyle;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_arrowStyle(String newM_arrowStyle) {
		String oldM_arrowStyle = m_arrowStyle;
		m_arrowStyle = newM_arrowStyle;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MARROW_STYLE, oldM_arrowStyle, m_arrowStyle));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public CGIBox getM_pRoot() {
		if (m_pRoot != null && m_pRoot.eIsProxy()) {
			InternalEObject oldM_pRoot = (InternalEObject)m_pRoot;
			m_pRoot = (CGIBox)eResolveProxy(oldM_pRoot);
			if (m_pRoot != oldM_pRoot) {
				if (eNotificationRequired())
					eNotify(new ENotificationImpl(this, Notification.RESOLVE, UMLRhapsodyPackage.CGI_MSC_CHART__MPROOT, oldM_pRoot, m_pRoot));
			}
		}
		return m_pRoot;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public CGIBox basicGetM_pRoot() {
		return m_pRoot;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setM_pRoot(CGIBox newM_pRoot) {
		CGIBox oldM_pRoot = m_pRoot;
		m_pRoot = newM_pRoot;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, UMLRhapsodyPackage.CGI_MSC_CHART__MPROOT, oldM_pRoot, m_pRoot));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public EList<String> getM_currentLeftTop() {
		if (m_currentLeftTop == null) {
			m_currentLeftTop = new EDataTypeEList<String>(String.class, this, UMLRhapsodyPackage.CGI_MSC_CHART__MCURRENT_LEFT_TOP);
		}
		return m_currentLeftTop;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public EList<String> getM_currentRightBottom() {
		if (m_currentRightBottom == null) {
			m_currentRightBottom = new EDataTypeEList<String>(String.class, this, UMLRhapsodyPackage.CGI_MSC_CHART__MCURRENT_RIGHT_BOTTOM);
		}
		return m_currentRightBottom;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
		switch (featureID) {
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNAME:
				return basicSetM_name(null, msgs);
			case UMLRhapsodyPackage.CGI_MSC_CHART__GRAPH_ELEMENTS:
				return ((InternalEList<?>)getGraphElements()).basicRemove(otherEnd, msgs);
		}
		return super.eInverseRemove(otherEnd, featureID, msgs);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public Object eGet(int featureID, boolean resolve, boolean coreType) {
		switch (featureID) {
			case UMLRhapsodyPackage.CGI_MSC_CHART__VLADDER_MARGIN:
				return getVLadderMargin();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MUSING_ACTIVATION_BAR:
				return getM_usingActivationBar();
			case UMLRhapsodyPackage.CGI_MSC_CHART__ID:
				return getId();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MTYPE:
				return getM_type();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MPMODEL_OBJECT:
				if (resolve) return getM_pModelObject();
				return basicGetM_pModelObject();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MPPARENT:
				return getM_pParent();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNAME:
				if (resolve) return getM_name();
				return basicGetM_name();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MDRAW_BEHAVIOR:
				return getM_drawBehavior();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MBIS_PREFERENCES_INITIALIZED:
				return getM_bIsPreferencesInitialized();
			case UMLRhapsodyPackage.CGI_MSC_CHART__ELEMENT_LIST:
				return getElementList();
			case UMLRhapsodyPackage.CGI_MSC_CHART__GRAPH_ELEMENTS:
				return getGraphElements();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MACCESS:
				return getM_access();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MMODIFIED:
				return getM_modified();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MFILE_VERSION:
				return getM_fileVersion();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNMODIFY_DATE:
				return getM_nModifyDate();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNCREATE_DATE:
				return getM_nCreateDate();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MCREATOR:
				return getM_creator();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MBSCALE_WITH_ZOOM:
				return getM_bScaleWithZoom();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MARROW_STYLE:
				return getM_arrowStyle();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MPROOT:
				if (resolve) return getM_pRoot();
				return basicGetM_pRoot();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MCURRENT_LEFT_TOP:
				return getM_currentLeftTop();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MCURRENT_RIGHT_BOTTOM:
				return getM_currentRightBottom();
		}
		return super.eGet(featureID, resolve, coreType);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@SuppressWarnings("unchecked")
	@Override
	public void eSet(int featureID, Object newValue) {
		switch (featureID) {
			case UMLRhapsodyPackage.CGI_MSC_CHART__VLADDER_MARGIN:
				setVLadderMargin((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MUSING_ACTIVATION_BAR:
				setM_usingActivationBar((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__ID:
				setId((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MTYPE:
				setM_type((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MPMODEL_OBJECT:
				setM_pModelObject((IMSC)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MPPARENT:
				setM_pParent((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNAME:
				setM_name((CGIText)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MDRAW_BEHAVIOR:
				setM_drawBehavior((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MBIS_PREFERENCES_INITIALIZED:
				setM_bIsPreferencesInitialized((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__ELEMENT_LIST:
				setElementList((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__GRAPH_ELEMENTS:
				getGraphElements().clear();
				getGraphElements().addAll((Collection<? extends GraphElementsType>)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MACCESS:
				setM_access((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MMODIFIED:
				setM_modified((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MFILE_VERSION:
				setM_fileVersion((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNMODIFY_DATE:
				setM_nModifyDate((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNCREATE_DATE:
				setM_nCreateDate((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MCREATOR:
				setM_creator((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MBSCALE_WITH_ZOOM:
				setM_bScaleWithZoom((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MARROW_STYLE:
				setM_arrowStyle((String)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MPROOT:
				setM_pRoot((CGIBox)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MCURRENT_LEFT_TOP:
				getM_currentLeftTop().clear();
				getM_currentLeftTop().addAll((Collection<? extends String>)newValue);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MCURRENT_RIGHT_BOTTOM:
				getM_currentRightBottom().clear();
				getM_currentRightBottom().addAll((Collection<? extends String>)newValue);
				return;
		}
		super.eSet(featureID, newValue);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public void eUnset(int featureID) {
		switch (featureID) {
			case UMLRhapsodyPackage.CGI_MSC_CHART__VLADDER_MARGIN:
				setVLadderMargin(VLADDER_MARGIN_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MUSING_ACTIVATION_BAR:
				setM_usingActivationBar(MUSING_ACTIVATION_BAR_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__ID:
				setId(ID_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MTYPE:
				setM_type(MTYPE_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MPMODEL_OBJECT:
				setM_pModelObject((IMSC)null);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MPPARENT:
				setM_pParent(MPPARENT_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNAME:
				setM_name((CGIText)null);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MDRAW_BEHAVIOR:
				setM_drawBehavior(MDRAW_BEHAVIOR_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MBIS_PREFERENCES_INITIALIZED:
				setM_bIsPreferencesInitialized(MBIS_PREFERENCES_INITIALIZED_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__ELEMENT_LIST:
				setElementList(ELEMENT_LIST_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__GRAPH_ELEMENTS:
				getGraphElements().clear();
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MACCESS:
				setM_access(MACCESS_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MMODIFIED:
				setM_modified(MMODIFIED_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MFILE_VERSION:
				setM_fileVersion(MFILE_VERSION_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNMODIFY_DATE:
				setM_nModifyDate(MNMODIFY_DATE_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNCREATE_DATE:
				setM_nCreateDate(MNCREATE_DATE_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MCREATOR:
				setM_creator(MCREATOR_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MBSCALE_WITH_ZOOM:
				setM_bScaleWithZoom(MBSCALE_WITH_ZOOM_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MARROW_STYLE:
				setM_arrowStyle(MARROW_STYLE_EDEFAULT);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MPROOT:
				setM_pRoot((CGIBox)null);
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MCURRENT_LEFT_TOP:
				getM_currentLeftTop().clear();
				return;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MCURRENT_RIGHT_BOTTOM:
				getM_currentRightBottom().clear();
				return;
		}
		super.eUnset(featureID);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public boolean eIsSet(int featureID) {
		switch (featureID) {
			case UMLRhapsodyPackage.CGI_MSC_CHART__VLADDER_MARGIN:
				return VLADDER_MARGIN_EDEFAULT == null ? vLadderMargin != null : !VLADDER_MARGIN_EDEFAULT.equals(vLadderMargin);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MUSING_ACTIVATION_BAR:
				return MUSING_ACTIVATION_BAR_EDEFAULT == null ? m_usingActivationBar != null : !MUSING_ACTIVATION_BAR_EDEFAULT.equals(m_usingActivationBar);
			case UMLRhapsodyPackage.CGI_MSC_CHART__ID:
				return ID_EDEFAULT == null ? id != null : !ID_EDEFAULT.equals(id);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MTYPE:
				return MTYPE_EDEFAULT == null ? m_type != null : !MTYPE_EDEFAULT.equals(m_type);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MPMODEL_OBJECT:
				return m_pModelObject != null;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MPPARENT:
				return MPPARENT_EDEFAULT == null ? m_pParent != null : !MPPARENT_EDEFAULT.equals(m_pParent);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNAME:
				return m_name != null;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MDRAW_BEHAVIOR:
				return MDRAW_BEHAVIOR_EDEFAULT == null ? m_drawBehavior != null : !MDRAW_BEHAVIOR_EDEFAULT.equals(m_drawBehavior);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MBIS_PREFERENCES_INITIALIZED:
				return MBIS_PREFERENCES_INITIALIZED_EDEFAULT == null ? m_bIsPreferencesInitialized != null : !MBIS_PREFERENCES_INITIALIZED_EDEFAULT.equals(m_bIsPreferencesInitialized);
			case UMLRhapsodyPackage.CGI_MSC_CHART__ELEMENT_LIST:
				return ELEMENT_LIST_EDEFAULT == null ? elementList != null : !ELEMENT_LIST_EDEFAULT.equals(elementList);
			case UMLRhapsodyPackage.CGI_MSC_CHART__GRAPH_ELEMENTS:
				return graphElements != null && !graphElements.isEmpty();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MACCESS:
				return MACCESS_EDEFAULT == null ? m_access != null : !MACCESS_EDEFAULT.equals(m_access);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MMODIFIED:
				return MMODIFIED_EDEFAULT == null ? m_modified != null : !MMODIFIED_EDEFAULT.equals(m_modified);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MFILE_VERSION:
				return MFILE_VERSION_EDEFAULT == null ? m_fileVersion != null : !MFILE_VERSION_EDEFAULT.equals(m_fileVersion);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNMODIFY_DATE:
				return MNMODIFY_DATE_EDEFAULT == null ? m_nModifyDate != null : !MNMODIFY_DATE_EDEFAULT.equals(m_nModifyDate);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MNCREATE_DATE:
				return MNCREATE_DATE_EDEFAULT == null ? m_nCreateDate != null : !MNCREATE_DATE_EDEFAULT.equals(m_nCreateDate);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MCREATOR:
				return MCREATOR_EDEFAULT == null ? m_creator != null : !MCREATOR_EDEFAULT.equals(m_creator);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MBSCALE_WITH_ZOOM:
				return MBSCALE_WITH_ZOOM_EDEFAULT == null ? m_bScaleWithZoom != null : !MBSCALE_WITH_ZOOM_EDEFAULT.equals(m_bScaleWithZoom);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MARROW_STYLE:
				return MARROW_STYLE_EDEFAULT == null ? m_arrowStyle != null : !MARROW_STYLE_EDEFAULT.equals(m_arrowStyle);
			case UMLRhapsodyPackage.CGI_MSC_CHART__MPROOT:
				return m_pRoot != null;
			case UMLRhapsodyPackage.CGI_MSC_CHART__MCURRENT_LEFT_TOP:
				return m_currentLeftTop != null && !m_currentLeftTop.isEmpty();
			case UMLRhapsodyPackage.CGI_MSC_CHART__MCURRENT_RIGHT_BOTTOM:
				return m_currentRightBottom != null && !m_currentRightBottom.isEmpty();
		}
		return super.eIsSet(featureID);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public String toString() {
		if (eIsProxy()) return super.toString();

		StringBuffer result = new StringBuffer(super.toString());
		result.append(" (vLadderMargin: "); //$NON-NLS-1$
		result.append(vLadderMargin);
		result.append(", m_usingActivationBar: "); //$NON-NLS-1$
		result.append(m_usingActivationBar);
		result.append(", id: "); //$NON-NLS-1$
		result.append(id);
		result.append(", m_type: "); //$NON-NLS-1$
		result.append(m_type);
		result.append(", m_pParent: "); //$NON-NLS-1$
		result.append(m_pParent);
		result.append(", m_drawBehavior: "); //$NON-NLS-1$
		result.append(m_drawBehavior);
		result.append(", m_bIsPreferencesInitialized: "); //$NON-NLS-1$
		result.append(m_bIsPreferencesInitialized);
		result.append(", elementList: "); //$NON-NLS-1$
		result.append(elementList);
		result.append(", m_access: "); //$NON-NLS-1$
		result.append(m_access);
		result.append(", m_modified: "); //$NON-NLS-1$
		result.append(m_modified);
		result.append(", m_fileVersion: "); //$NON-NLS-1$
		result.append(m_fileVersion);
		result.append(", m_nModifyDate: "); //$NON-NLS-1$
		result.append(m_nModifyDate);
		result.append(", m_nCreateDate: "); //$NON-NLS-1$
		result.append(m_nCreateDate);
		result.append(", m_creator: "); //$NON-NLS-1$
		result.append(m_creator);
		result.append(", m_bScaleWithZoom: "); //$NON-NLS-1$
		result.append(m_bScaleWithZoom);
		result.append(", m_arrowStyle: "); //$NON-NLS-1$
		result.append(m_arrowStyle);
		result.append(", m_currentLeftTop: "); //$NON-NLS-1$
		result.append(m_currentLeftTop);
		result.append(", m_currentRightBottom: "); //$NON-NLS-1$
		result.append(m_currentRightBottom);
		result.append(')');
		return result.toString();
	}

} //CGIMscChartImpl

Back to the top