-
Notifications
You must be signed in to change notification settings - Fork 0
/
EA.idl
13164 lines (12813 loc) · 698 KB
/
EA.idl
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
// Generated .IDL file (by the OLE/COM Object Viewer)
//
// typelib filename: EA.TLB
[
uuid(64FB2BF4-9EFA-11D2-8307-C45586000000),
version(2.10),
helpstring("Enterprise Architect Object Model 2.10"),
custom(DE77BA64-517C-11D1-A2DA-0000F8773CE9, 134283886),
custom(DE77BA63-517C-11D1-A2DA-0000F8773CE9, 2147483647),
custom(DE77BA65-517C-11D1-A2DA-0000F8773CE9, "Created by MIDL version 8.01.0622 at Tue Jan 19 14:14:07 2038
")
]
library EA
{
// TLib : OLE Automation : {00020430-0000-0000-C000-000000000046}
importlib("stdole2.tlb");
// Forward declare all types defined in this typelib
interface IDualDiagramObject;
interface IDualFeatureLink;
interface IDualConnector;
interface IDualCollection;
interface IDualConnectorEnd;
interface _Properties;
interface _Property;
interface IDualElement;
interface IDualElementGrid;
interface IDualTypeInfoProperties;
interface IDualTypeInfoProperty;
interface IDualChart;
interface IDualChartSeries;
interface IDualChartFormatSeries;
interface IDualChartDataValue;
interface IDualChartDiagram3D;
interface IDualChartAxis;
interface IDualChartDataLabelOptions;
dispinterface ITypeInfoProperty;
dispinterface ITypeInfoProperties;
dispinterface IProject;
interface IDualProject;
interface IDualPackage;
interface _CodeObject;
interface IEADualSchemaTypeEnum;
interface IEADualSchemaType;
interface IEADualSchemaPropEnum;
interface IEADualSchemaProperty;
dispinterface IRepository;
interface IDualDiagram;
interface _SwimlaneDef;
interface _Swimlanes;
interface _Swimlane;
interface IDualReference;
interface IDualDiagramLink;
interface IDualApp;
interface IDualRepository;
interface IDualAttribute;
interface IDualMethod;
interface _ModelWatcher;
interface IDualDocumentGenerator;
interface IDualMailInterface;
interface IDualSimulation;
interface IEADualSchemaComposer;
interface IEADualModelType;
interface IEADualModelTypeEnum;
interface IEADualSchemaNamespaceEnum;
interface IEADualSchemaNamespace;
interface IDualDiagramEditor;
interface IDualPropertiesTab;
interface IDualSearchWindow;
interface IDualEASelection;
interface IDualEAContext;
interface IDualSecurityUser;
interface IDualDataMinerManager;
interface IDualDataMiner;
interface IDualDataSet;
interface IDualASTItem;
interface IDualASTAttribute;
interface IDualDMArray;
interface IDualDMAction;
interface IDualDMScript;
interface IDualSysMLPlotter;
dispinterface ICollection;
dispinterface IElementGrid;
dispinterface IElement;
dispinterface ITemplateParameter;
interface IDualTemplateParameter;
dispinterface IPackage;
dispinterface IConnector;
dispinterface ITemplateBinding;
interface IDualTemplateBinding;
dispinterface IDiagram;
dispinterface IRequirement;
interface IDualRequirement;
dispinterface IScenario;
interface IDualScenario;
dispinterface IConstraint;
interface IDualConstraint;
dispinterface ITaggedValue;
interface IDualTaggedValue;
dispinterface IFile;
interface IDualFile;
dispinterface IEffort;
interface IDualEffort;
dispinterface IMetric;
interface IDualMetric;
dispinterface IIssue;
interface IDualIssue;
dispinterface IRisk;
interface IDualRisk;
dispinterface ITest;
interface IDualTest;
dispinterface IDiagramObject;
dispinterface IDiagramLink;
dispinterface IResource;
interface IDualResource;
dispinterface IConnectorEnd;
dispinterface IAttribute;
dispinterface IMethod;
dispinterface IParameter;
interface IDualParameter;
dispinterface IClient;
interface IDualClient;
dispinterface IAuthor;
interface IDualAuthor;
dispinterface IDatatype;
interface IDualDatatype;
dispinterface IStereotype;
interface IDualStereotype;
dispinterface ITask;
interface IDualTask;
dispinterface ITerm;
interface IDualTerm;
dispinterface IProjectIssues;
interface IDualProjectIssues;
dispinterface IProjectRole;
interface IDualProjectRole;
dispinterface IAttributeConstraint;
interface IDualAttributeConstraint;
dispinterface IAttributeTag;
interface IDualAttributeTag;
dispinterface IMethodConstraint;
interface IDualMethodConstraint;
dispinterface IMethodTag;
interface IDualMethodTag;
dispinterface IConnectorConstraint;
interface IDualConnectorConstraint;
dispinterface IConnectorTag;
interface IDualConnectorTag;
dispinterface IProjectResource;
interface IDualProjectResource;
dispinterface IReference;
dispinterface IRoleTag;
interface IDualRoleTag;
dispinterface IApp;
dispinterface IDataSet;
dispinterface IASTItem;
dispinterface IASTAttribute;
dispinterface IDMConnection;
interface IDualDMConnection;
dispinterface IDMAction;
dispinterface IDMScript;
dispinterface IDataMiner;
dispinterface IDataMinerManager;
dispinterface IDMArray;
dispinterface ICodeObject;
dispinterface IFeatureLink;
dispinterface ICustomProperty;
interface _CustomProperty;
dispinterface IPartition;
interface _Partition;
dispinterface ITransition;
interface _Transition;
dispinterface IEventProperty;
interface _EventProperty;
dispinterface IEventProperties;
interface _EventProperties;
dispinterface IPropertyType;
interface IDualPropertyType;
dispinterface IProperty;
dispinterface IProperties;
dispinterface ISwimlane;
dispinterface ISwimlanes;
dispinterface ISwimlaneDef;
dispinterface IModelWatcher;
dispinterface IScenarioStep;
interface IDualScenarioStep;
dispinterface IScenarioExtension;
interface IDualScenarioExtension;
dispinterface IParamTag;
interface IDualParamTag;
dispinterface IDocumentGenerator;
dispinterface IMailInterface;
dispinterface ISimulation;
dispinterface IEAModelType;
dispinterface IEASchemaPropEnum;
dispinterface IEASchemaProperty;
dispinterface IEASchemaNamespace;
dispinterface IEASchemaNamespaceEnum;
dispinterface IEASchemaType;
dispinterface IEASchemaTypeEnum;
dispinterface IEAModelTypeEnum;
dispinterface IEASchemaProfile;
interface IEADualSchemaProfile;
dispinterface IEASchemaComposer;
dispinterface IDiagramEditor;
dispinterface IPropertiesTab;
dispinterface ISearchWindow;
dispinterface IEAContext;
dispinterface IEASelection;
dispinterface ISecurityUser;
dispinterface IChartDataValue;
dispinterface IChartBoxPlotData;
interface IDualChartBoxPlotData;
dispinterface IChartFormatSeries;
dispinterface IChartAxis;
dispinterface IChartSeries;
dispinterface IChartDiagram3D;
dispinterface IChartDataLabelOptions;
dispinterface IChart;
dispinterface ISysMLPlotter;
typedef [uuid(5E1E504C-95C7-4B14-A0F6-70329F70084A), version(1.0)]
enum {
otNone = 0,
otProject = 1,
otRepository = 2,
otCollection = 3,
otElement = 4,
otPackage = 5,
otModel = 6,
otConnector = 7,
otDiagram = 8,
otRequirement = 9,
otScenario = 10,
otConstraint = 11,
otTaggedValue = 12,
otFile = 13,
otEffort = 14,
otMetric = 15,
otIssue = 16,
otRisk = 17,
otTest = 18,
otDiagramObject = 19,
otDiagramLink = 20,
otResource = 21,
otConnectorEnd = 22,
otAttribute = 23,
otMethod = 24,
otParameter = 25,
otClient = 26,
otAuthor = 27,
otDatatype = 28,
otStereotype = 29,
otTask = 30,
otTerm = 31,
otProjectIssues = 32,
otAttributeConstraint = 33,
otAttributeTag = 34,
otMethodConstraint = 35,
otMethodTag = 36,
otConnectorConstraint = 37,
otConnectorTag = 38,
otProjectResource = 39,
otReference = 40,
otRoleTag = 41,
otCustomProperty = 42,
otPartition = 43,
otTransition = 44,
otEventProperty = 45,
otEventProperties = 46,
otPropertyType = 47,
otProperties = 48,
otProperty = 49,
otSwimlaneDef = 50,
otSwimlanes = 51,
otSwimlane = 52,
otModelWatcher = 53,
otScenarioStep = 54,
otScenarioExtension = 55,
otParamTag = 56,
otProjectRole = 57,
otDocumentGenerator = 58,
otMailInterface = 59,
otSimulation = 60,
otTemplateBinding = 61,
otTemplateParameter = 62,
otSearchWindow = 63,
otSelection = 64,
otContext = 65,
otTypeInfoProperties = 66,
otTypeInfoProperty = 67,
otFeatureLink = 68
} ObjectType;
typedef [uuid(521FB1FE-053B-47E6-A81B-30AB57DD4BEA), version(1.0)]
enum {
mgMerge = 1,
mgBuildProject = 2,
mgRun = 4
} MDGMenus;
typedef [uuid(0054F30A-8D5B-44DA-AE6D-BD5D34896440), version(1.0)]
enum {
xmiEADefault = 0,
xmiRoseDefault = 1,
xmiEA10 = 2,
xmiEA11 = 3,
xmiEA12 = 4,
xmiRose10 = 5,
xmiRose11 = 6,
xmiRose12 = 7,
xmiMOF13 = 8,
xmiMOF14 = 9,
xmiEA20 = 10,
xmiEA21 = 11,
xmiEA211 = 12,
xmiEA212 = 13,
xmiEA22 = 14,
xmiEA23 = 15,
xmiEA24 = 16,
xmiEA241 = 17,
xmiEA242 = 18,
xmiEcore = 19,
xmiBPMN20 = 20,
xmiXPDL22 = 21,
xmiEA251 = 22,
xmiARCGIS = 23,
xmiNative = 24,
xmiEA2511 = 25,
xmiNativeXEA = 26
} EnumXMIType;
typedef [uuid(6402E05F-6218-468D-BF1F-C8AD2CB1E87E), version(1.0)]
enum {
mvError = 0,
mvWarning = 1,
mvInformation = 2,
mvErrorCritical = 3
} EnumMVErrorType;
typedef [uuid(1BA83CC3-2F30-48D4-9299-CA440CA707F5), version(1.0)]
enum {
cmEAPFromBase = 0,
cmEAPFromSQLRepository = 1
} CreateModelType;
typedef [uuid(F9EC07CE-9853-42C0-A19D-7AF9C49D704A), version(1.0)]
enum {
piLite = 0xffffffff,
piDesktop = 0,
piProfessional = 1,
piCorporate = 2,
piBusiness = 3,
piSystemEng = 4,
piUltimate = 5
} EAEditionTypes;
typedef [uuid(336F495C-9B1F-4469-BA2A-1CA1665678DD), version(1.0)]
enum {
ResizeObject = 1,
WrapFeature = 2,
TruncateFeature = 3
} FeatureDisplayMode;
typedef [uuid(595E4736-A8BB-4CE1-A953-F91937BB5EBD), version(1.0)]
enum {
AlignLeft = 1,
AlignCenter = 2,
AlignRight = 3
} TextAlignment;
typedef [uuid(AE8E8D96-BEF0-4E3F-9EF1-8D93C71AF105), version(1.0)]
enum {
LineStyleDirect = 1,
LineStyleAutoRouting = 2,
LineStyleCustomLine = 3,
LineStyleTreeVertical = 4,
LineStyleTreeHorizontal = 5,
LineStyleLateralVertical = 6,
LineStyleLateralHorizontal = 7,
LineStyleOrthogonalSquare = 8,
LineStyleOrthogonalRounded = 9
} LinkLineStyle;
typedef [uuid(873FEB1C-36D1-491C-B27E-92C9A5B3C5B6), version(1.0)]
enum {
stSystem = 0,
stActor = 1
} ScenarioStepType;
typedef [uuid(089F4B7A-90B9-48D5-9C44-AF47A1A48C05), version(1.0)]
enum {
epSaveToStub = 1,
epExcludeEAExtensions = 2
} ExportPackageXMIFlag;
typedef [uuid(0DDF8567-038E-4B66-AC35-F7453AB193AE), version(1.0)]
enum {
cbSaveToStub = 1
} CreateBaselineFlag;
typedef [uuid(05AE1D6D-BF0D-4174-88D6-C563CBE79316), version(1.0)]
enum {
sdActivity = 0,
sdActivityWithActivityParameter = 1,
sdActivityWithAction = 2,
sdActivityhWithActionPin = 3,
sdRuleFlow = 4,
sdState = 5,
sdSequence = 6,
sdRobustness = 7
} EnumScenarioDiagramType;
typedef [uuid(453C19AD-546A-4D85-80C7-CA1567447AA4), version(1.0)]
enum {
stInternal = 0,
stExternal = 1,
stHorizontalTestSuite = 2,
stVerticalTestSuite = 3
} EnumScenarioTestType;
typedef [uuid(1987B040-FD0B-4051-9C7C-7E78A27D5377), version(1.0)]
enum {
dlgOpen = 0,
dlgSave = 1
} EnumFilenameDialog;
typedef [uuid(15826573-3356-43A6-B89F-E0C980095FEB), version(1.0)]
enum {
featureNone = 0,
featureOperation = 1,
featureAttribute = 2,
featureChange = 3,
featureDefect = 4,
featureIssue = 5,
featureTask = 6,
featureTest = 7
} EnumFeatureLinkType;
typedef [uuid(6DEE6423-C154-4134-A306-55CC3B75FEEF), version(1.0)]
enum {
chartDefault = 0,
chartLine = 1,
chartPie = 2,
chartPie3D = 3,
chartPyramid = 4,
chartPyramid3D = 5,
chartFunnel = 6,
chartFunnel3D = 7,
chartColumn = 8,
chartBar = 9,
chartHistogram = 10,
chartArea = 11,
chartStock = 12,
chartBubble = 13,
chartLongData = 14,
chartHistoricalLine = 15,
chartPolar = 16,
chartDoughnut = 17,
chartDoughnut3D = 18,
chartTorus3D = 19,
chartTernary = 20,
chartColumn3D = 21,
chartBar3D = 22,
chartLine3D = 23,
chartArea3D = 24,
chartSurface3D = 25,
chartDoughnutNested = 26,
chartBoxPlot = 27,
chartBarSmart = 28,
chartBar3DSmart = 29
} ChartCategory;
typedef [uuid(9866A66E-93BA-4DB3-9820-710578A31AD6), version(1.0)]
enum {
chartTypeDEFAULT = 0,
chartTypeSIMPLE = 1,
chartTypeSTACKED = 2,
chartType100STACKED = 3,
chartTypeRANGE = 4
} ChartType;
typedef [uuid(5039AB97-C35F-48D4-ACD7-B88B3FB63AF2), version(1.0)]
enum {
chartCurveTypeNO_LINE = 0,
chartCurveTypeLINE = 1,
chartCurveTypeSPLINE = 2,
chartCurveTypeSPLINE_HERMITE = 3,
chartCurveTypeSTEP = 4,
chartCurveTypeREVERSED_STEP = 5
} ChartCurveType;
typedef [uuid(BDEC27A7-98B7-4FFB-8FD4-C7CA0D6D854C), version(1.0)]
enum {
chartMS_CIRCLE = 0,
chartMS_TRIANGLE = 1,
chartMS_RECTANGLE = 2,
chartMS_RHOMBUS = 3
} ChartMarkerShape;
typedef [uuid(F8D20A0B-8CCC-49AA-9CD1-6FEBC3EA3885), version(1.0)]
enum {
chartDWO_NONE = 0,
chartDWO_FILL_LEFT_WALL = 1,
chartDWO_OUTLINE_LEFT_WALL = 2,
chartDWO_FILL_RIGHT_WALL = 4,
chartDWO_OUTLINE_RIGHT_WALL = 8,
chartDWO_FILL_FLOOR = 16,
chartDWO_OUTLINE_FLOOR = 32,
chartDWO_DRAW_ALL = 65535,
chartDWO_DRAW_LEFT_WALL = 3,
chartDWO_DRAW_RIGHT_WALL = 12,
chartDWO_DRAW_FLOOR = 48,
chartDWO_DRAW_ALL_WALLS = 15,
chartDWO_OUTLINE_ALL_WALLS = 10,
chartDWO_OUTLINE_ALL = 42,
chartDWO_FILL_ALL_WALLS = 5,
chartDWO_FILL_ALL = 21,
chartDWO_DEFAULT = 42
} ChartDrawWallOptions;
typedef [uuid(E8F9A0C9-9EFF-4262-B35B-089E966AA3F6), version(1.0)]
enum {
CHART_Y_PRIMARY_AXIS = 0,
CHART_Y_SECONDARY_AXIS = 1,
CHART_X_PRIMARY_AXIS = 2,
CHART_X_SECONDARY_AXIS = 3,
CHART_Z_PRIMARY_AXIS = 4,
CHART_Z_SECONDARY_AXIS = 5,
CHART_Y_POLAR_AXIS = 6,
CHART_X_POLAR_AXIS = 7,
CHART_A_TERNARY_AXIS = 8,
CHART_B_TERNARY_AXIS = 9,
CHART_C_TERNARY_AXIS = 10
} ChartAxisType;
typedef [uuid(FFB264AC-ADE1-4C3E-8A9B-5675AEDD3F3C), version(1.0)]
enum {
chartSurfaceTypeSTANDARD = 0,
chartSurfaceTypeLEVELS = 1
} ChartSurfaceType;
typedef [uuid(453542E2-3A7C-4D00-99A8-23757020EC3A), version(1.0)]
enum {
chartColorModeSINGLE = 0,
chartColorModeMULTIPLE = 1,
chartColorModePALETTE = 2,
chartColorModeCUSTOM = 3,
chartColorModeSERIES = 4
} ChartColorMode;
typedef [uuid(684603F3-7CDC-47C2-8D7B-D6A7CD31D9EB), version(1.0)]
enum {
chartFrameStyleNONE = 0,
chartFrameStyleMESH = 1,
chartFrameStyleCONTOUR = 2,
chartFrameStyleCONTOUR_MESH = 3
} ChartFrameStyle;
typedef [uuid(CD0A8A5E-54E2-4F4D-8D2A-453209B21366), version(1.0)]
enum {
chartLevelRangeModeMINMAX_SERIES = 0,
chartLevelRangeModeMINMAX_Y_AXIS = 1,
chartLevelRangeModeCUSTOM = 2
} ChartLevelRangeMode;
typedef [uuid(4EA4E32C-7ED7-47CA-9CE3-D9CB0C8D5C88), version(1.0)]
enum {
chartDashStyleSOLID = 0,
chartDashStyleDASH = 1,
chartDashStyleDOT = 2,
chartDashStyleDASH_DOT = 3,
chartDashStyleDASH_DOT_DOT = 4,
chartDashStyleCUSTOM = 5
} ChartDashStyle;
typedef [uuid(78682289-3DCB-48F0-A20F-0E35867A126E), version(1.0)]
enum {
chartAnimationTypeLegacy = 0,
chartAnimationTypeAccelerateDecelerate = 1,
chartAnimationTypeCubic = 2,
chartAnimationTypeLinear = 3,
chartAnimationTypeSmoothStop = 4,
chartAnimationTypeParabolicFromAcceleration = 5
} ChartAnimationType;
typedef [uuid(011599A9-0864-4814-9201-BF6D13D9E614), version(1.0)]
enum {
chartAnimationStyleDefault = 0,
chartAnimationStyleNone = 1,
chartAnimationStyleGrow = 2,
chartAnimationStyleFade = 3,
chartAnimationStyleSlide = 4,
chartAnimationStyleSlideReversed = 5
} ChartAnimationStyle;
typedef [uuid(BE3D8861-E8F2-4AD1-B063-E373960D3F44), version(1.0)]
enum {
axisIndexUNKNOWN = 0xffffffff,
axisIndexX = 0,
axisIndexY = 1,
axisIndexZ = 2
} AxisIndex;
typedef [uuid(E723BDFA-6958-4FA6-9EC2-B50678B40D0D), version(1.0)]
enum {
shutdownSaveOpenWork = 1
} ShutdownFlags;
[
odl,
uuid(BA9D8775-E4B9-4F42-8680-A03803842A9B),
dual,
oleautomation
]
interface IDualDiagramObject : IDispatch {
[id(0x00000001), propput]
HRESULT DiagramID([in] long pRet);
[id(0x00000001), propget]
HRESULT DiagramID([out, retval] long* pRet);
[id(0x00000002), propput]
HRESULT ElementID([in] long pRet);
[id(0x00000002), propget]
HRESULT ElementID([out, retval] long* pRet);
[id(0x00000003), propput]
HRESULT left([in] long pRet);
[id(0x00000003), propget]
HRESULT left([out, retval] long* pRet);
[id(0x00000004), propput]
HRESULT right([in] long pRet);
[id(0x00000004), propget]
HRESULT right([out, retval] long* pRet);
[id(0x00000005), propput]
HRESULT top([in] long pRet);
[id(0x00000005), propget]
HRESULT top([out, retval] long* pRet);
[id(0x00000006), propput]
HRESULT bottom([in] long pRet);
[id(0x00000006), propget]
HRESULT bottom([out, retval] long* pRet);
[id(0x00000007), propput]
HRESULT Sequence([in] long pRet);
[id(0x00000007), propget]
HRESULT Sequence([out, retval] long* pRet);
[id(0x00000008), propput]
HRESULT Style([in] VARIANT pRet);
[id(0x00000008), propget]
HRESULT Style([out, retval] VARIANT* pRet);
[id(0x00000009), propput]
HRESULT InstanceID([in] long pRet);
[id(0x00000009), propget]
HRESULT InstanceID([out, retval] long* pRet);
[id(0x0000000a)]
HRESULT Update([out, retval] VARIANT_BOOL* pRet);
[id(0x0000000b)]
HRESULT GetLastError([out, retval] BSTR* pRet);
[id(0x0000000c), propget, helpstring("Distinguishes objects referenced through Dispatch interface.")]
HRESULT ObjectType([out, retval] ObjectType* pRet);
[id(0x0000000d)]
HRESULT SetStyleEx(
[in] BSTR sParameter,
[in] BSTR sValue);
[id(0x0000000e), propput]
HRESULT BackgroundColor([in] long pRet);
[id(0x0000000e), propget]
HRESULT BackgroundColor([out, retval] long* pRet);
[id(0x0000000f), propput]
HRESULT BorderColor([in] long pRet);
[id(0x0000000f), propget]
HRESULT BorderColor([out, retval] long* pRet);
[id(0x00000010), propput]
HRESULT BorderLineWidth([in] long pRet);
[id(0x00000010), propget]
HRESULT BorderLineWidth([out, retval] long* pRet);
[id(0x00000011), propput]
HRESULT FontColor([in] long pRet);
[id(0x00000011), propget]
HRESULT FontColor([out, retval] long* pRet);
[id(0x00000012)]
HRESULT SetFontStyle(
[in] VARIANT fontName,
[in] long fontSize,
[in] VARIANT_BOOL bold,
[in] VARIANT_BOOL italic,
[in] VARIANT_BOOL underline,
[out, retval] VARIANT_BOOL* pRet);
[id(0x00000013), propput]
HRESULT ShowProtectedAttributes([in] VARIANT_BOOL pRet);
[id(0x00000013), propget]
HRESULT ShowProtectedAttributes([out, retval] VARIANT_BOOL* pRet);
[id(0x00000014), propput]
HRESULT ShowPrivateAttributes([in] VARIANT_BOOL pRet);
[id(0x00000014), propget]
HRESULT ShowPrivateAttributes([out, retval] VARIANT_BOOL* pRet);
[id(0x00000015), propput]
HRESULT ShowPublicAttributes([in] VARIANT_BOOL pRet);
[id(0x00000015), propget]
HRESULT ShowPublicAttributes([out, retval] VARIANT_BOOL* pRet);
[id(0x00000016), propput]
HRESULT ShowPackageAttributes([in] VARIANT_BOOL pRet);
[id(0x00000016), propget]
HRESULT ShowPackageAttributes([out, retval] VARIANT_BOOL* pRet);
[id(0x00000017), propput]
HRESULT ShowProtectedOperations([in] VARIANT_BOOL pRet);
[id(0x00000017), propget]
HRESULT ShowProtectedOperations([out, retval] VARIANT_BOOL* pRet);
[id(0x00000018), propput]
HRESULT ShowPrivateOperations([in] VARIANT_BOOL pRet);
[id(0x00000018), propget]
HRESULT ShowPrivateOperations([out, retval] VARIANT_BOOL* pRet);
[id(0x00000019), propput]
HRESULT ShowPublicOperations([in] VARIANT_BOOL pRet);
[id(0x00000019), propget]
HRESULT ShowPublicOperations([out, retval] VARIANT_BOOL* pRet);
[id(0x0000001a), propput]
HRESULT ShowPackageOperations([in] VARIANT_BOOL pRet);
[id(0x0000001a), propget]
HRESULT ShowPackageOperations([out, retval] VARIANT_BOOL* pRet);
[id(0x0000001b), propput]
HRESULT ShowResponsibilities([in] VARIANT_BOOL pRet);
[id(0x0000001b), propget]
HRESULT ShowResponsibilities([out, retval] VARIANT_BOOL* pRet);
[id(0x0000001c), propput]
HRESULT ShowConstraints([in] VARIANT_BOOL pRet);
[id(0x0000001c), propget]
HRESULT ShowConstraints([out, retval] VARIANT_BOOL* pRet);
[id(0x0000001d), propput]
HRESULT ShowTags([in] VARIANT_BOOL pRet);
[id(0x0000001d), propget]
HRESULT ShowTags([out, retval] VARIANT_BOOL* pRet);
[id(0x0000001e), propput]
HRESULT ShowRunstates([in] VARIANT_BOOL pRet);
[id(0x0000001e), propget]
HRESULT ShowRunstates([out, retval] VARIANT_BOOL* pRet);
[id(0x0000001f), propput]
HRESULT FeatureStereotypesToHide([in] BSTR pRet);
[id(0x0000001f), propget]
HRESULT FeatureStereotypesToHide([out, retval] BSTR* pRet);
[id(0x00000020), propput]
HRESULT ShowInheritedOperations([in] VARIANT_BOOL pRet);
[id(0x00000020), propget]
HRESULT ShowInheritedOperations([out, retval] VARIANT_BOOL* pRet);
[id(0x00000021), propput]
HRESULT ShowInheritedAttributes([in] VARIANT_BOOL pRet);
[id(0x00000021), propget]
HRESULT ShowInheritedAttributes([out, retval] VARIANT_BOOL* pRet);
[id(0x00000022), propput]
HRESULT ShowInheritedConstraints([in] VARIANT_BOOL pRet);
[id(0x00000022), propget]
HRESULT ShowInheritedConstraints([out, retval] VARIANT_BOOL* pRet);
[id(0x00000023), propput]
HRESULT ShowInheritedResponsibilities([in] VARIANT_BOOL pRet);
[id(0x00000023), propget]
HRESULT ShowInheritedResponsibilities([out, retval] VARIANT_BOOL* pRet);
[id(0x00000024), propput]
HRESULT ShowInheritedTags([in] VARIANT_BOOL pRet);
[id(0x00000024), propget]
HRESULT ShowInheritedTags([out, retval] VARIANT_BOOL* pRet);
[id(0x00000025), propput]
HRESULT ShowFullyQualifiedTags([in] VARIANT_BOOL pRet);
[id(0x00000025), propget]
HRESULT ShowFullyQualifiedTags([out, retval] VARIANT_BOOL* pRet);
[id(0x00000026), propput]
HRESULT ShowPortType([in] VARIANT_BOOL pRet);
[id(0x00000026), propget]
HRESULT ShowPortType([out, retval] VARIANT_BOOL* pRet);
[id(0x00000027), propput]
HRESULT ShowNotes([in] VARIANT_BOOL pRet);
[id(0x00000027), propget]
HRESULT ShowNotes([out, retval] VARIANT_BOOL* pRet);
[id(0x00000028), propput]
HRESULT ShowFormattedNotes([in] VARIANT_BOOL pRet);
[id(0x00000028), propget]
HRESULT ShowFormattedNotes([out, retval] VARIANT_BOOL* pRet);
[id(0x00000029), propput]
HRESULT ElementDisplayMode([in] FeatureDisplayMode pRet);
[id(0x00000029), propget]
HRESULT ElementDisplayMode([out, retval] FeatureDisplayMode* pRet);
[id(0x0000002a), propput]
HRESULT TextAlign([in] TextAlignment pRet);
[id(0x0000002a), propget]
HRESULT TextAlign([out, retval] TextAlignment* pRet);
[id(0x0000002b), propget]
HRESULT InstanceGUID([out, retval] VARIANT* pRet);
[id(0x0000002c), propput]
HRESULT ShowComposedDiagram([in] VARIANT_BOOL pRet);
[id(0x0000002c), propget]
HRESULT ShowComposedDiagram([out, retval] VARIANT_BOOL* pRet);
[id(0x0000002d), propput]
HRESULT IsSelectable([in] VARIANT_BOOL pRet);
[id(0x0000002d), propget]
HRESULT IsSelectable([out, retval] VARIANT_BOOL* pRet);
[id(0x0000002e), propput]
HRESULT ShowStructuredCompartments([in] VARIANT_BOOL pRet);
[id(0x0000002e), propget]
HRESULT ShowStructuredCompartments([out, retval] VARIANT_BOOL* pRet);
[id(0x0000002f), propput]
HRESULT fontName([in] VARIANT pRet);
[id(0x0000002f), propget]
HRESULT fontName([out, retval] VARIANT* pRet);
[id(0x00000030), propput]
HRESULT fontSize([in] long pRet);
[id(0x00000030), propget]
HRESULT fontSize([out, retval] long* pRet);
[id(0x00000031), propput]
HRESULT FontBold([in] VARIANT_BOOL pRet);
[id(0x00000031), propget]
HRESULT FontBold([out, retval] VARIANT_BOOL* pRet);
[id(0x00000032), propput]
HRESULT FontItalic([in] VARIANT_BOOL pRet);
[id(0x00000032), propget]
HRESULT FontItalic([out, retval] VARIANT_BOOL* pRet);
[id(0x00000033), propput]
HRESULT FontUnderline([in] VARIANT_BOOL pRet);
[id(0x00000033), propget]
HRESULT FontUnderline([out, retval] VARIANT_BOOL* pRet);
[id(0x00000034)]
HRESULT ResetFont();
[id(0x00000035)]
HRESULT MoveElementToGridPosition(
BSTR gridX,
BSTR gridY,
[out, retval] VARIANT_BOOL* pRet);
[id(0x00000036), propput]
HRESULT BackgroundColorRGB([in] long pRet);
[id(0x00000036), propget]
HRESULT BackgroundColorRGB([out, retval] long* pRet);
[id(0x00000037), propput]
HRESULT BorderColorRGB([in] long pRet);
[id(0x00000037), propget]
HRESULT BorderColorRGB([out, retval] long* pRet);
[id(0x00000038), propput]
HRESULT FontColorRGB([in] long pRet);
[id(0x00000038), propget]
HRESULT FontColorRGB([out, retval] long* pRet);
};
[
odl,
uuid(8C6EB85B-A6E1-45FC-949D-DC193457E443),
dual,
oleautomation
]
interface IDualFeatureLink : IDispatch {
[id(0x00000001), propget]
HRESULT ObjectType([out, retval] ObjectType* pRet);
[id(0x00000002), propget]
HRESULT Connector([out, retval] IDualConnector** pRet);
[id(0x00000003), propget]
HRESULT ElementStart([out, retval] IDualElement** pRet);
[id(0x00000004), propget]
HRESULT ElementEnd([out, retval] IDualElement** pRet);
[id(0x00000005), propget]
HRESULT LinkTypeStart([out, retval] EnumFeatureLinkType* pRet);
[id(0x00000006), propget]
HRESULT LinkTypeEnd([out, retval] EnumFeatureLinkType* pRet);
[id(0x00000007), propget]
HRESULT LinkGuidStart([out, retval] BSTR* pRet);
[id(0x00000008), propget]
HRESULT LinkGuidEnd([out, retval] BSTR* pRet);
[id(0x00000009)]
HRESULT GetLastError([out, retval] BSTR* pRet);
};
[
odl,
uuid(5607FBB6-7752-4E2C-9A48-59FAD53A14E6),
dual,
oleautomation
]
interface IDualConnector : IDispatch {
[id(0x00000001), propget]
HRESULT ConnectorID([out, retval] long* pRet);
[id(0x00000002), propget]
HRESULT Name([out, retval] BSTR* pRet);
[id(0x00000003), propput]
HRESULT Direction([in] BSTR pRet);
[id(0x00000003), propget]
HRESULT Direction([out, retval] BSTR* pRet);
[id(0x00000004), propput]
HRESULT Notes([in] BSTR pRet);
[id(0x00000004), propget]
HRESULT Notes([out, retval] BSTR* pRet);
[id(0x00000005), propput]
HRESULT Type([in] BSTR pRet);
[id(0x00000005), propget]
HRESULT Type([out, retval] BSTR* pRet);
[id(0x00000006), propput]
HRESULT Subtype([in] BSTR pRet);
[id(0x00000006), propget]
HRESULT Subtype([out, retval] BSTR* pRet);
[id(0x00000007), propput]
HRESULT ClientID([in] long pRet);
[id(0x00000007), propget]
HRESULT ClientID([out, retval] long* pRet);
[id(0x00000008), propput]
HRESULT SupplierID([in] long pRet);
[id(0x00000008), propget]
HRESULT SupplierID([out, retval] long* pRet);
[id(0x00000009), propput]
HRESULT SequenceNo([in] long pRet);
[id(0x00000009), propget]
HRESULT SequenceNo([out, retval] long* pRet);
[id(0x0000000a), propput]
HRESULT Stereotype([in] BSTR pRet);
[id(0x0000000a), propget]
HRESULT Stereotype([out, retval] BSTR* pRet);
[id(0x0000000b), propput]
HRESULT VirtualInheritance([in] BSTR pRet);
[id(0x0000000b), propget]
HRESULT VirtualInheritance([out, retval] BSTR* pRet);
[id(0x0000000c), propget]
HRESULT ConnectorGUID([out, retval] BSTR* pRet);
[id(0x0000000d), propput]
HRESULT IsRoot([in] VARIANT_BOOL pRet);
[id(0x0000000d), propget]
HRESULT IsRoot([out, retval] VARIANT_BOOL* pRet);
[id(0x0000000e), propput]
HRESULT IsLeaf([in] VARIANT_BOOL pRet);
[id(0x0000000e), propget]
HRESULT IsLeaf([out, retval] VARIANT_BOOL* pRet);
[id(0x0000000f), propput]
HRESULT IsSpec([in] VARIANT_BOOL pRet);
[id(0x0000000f), propget]
HRESULT IsSpec([out, retval] VARIANT_BOOL* pRet);
[id(0x00000010), propget]
HRESULT Constraints([out, retval] IDualCollection** pRet);
[id(0x00000011), propget]
HRESULT TaggedValues([out, retval] IDualCollection** pRet);
[id(0x00000012), propget, helpstring("A pointer to the ConnectorEnd object representing the Source end of the relationship.")]
HRESULT ClientEnd([out, retval] IDualConnectorEnd** pRet);
[id(0x00000013), propget, helpstring("A pointer to the ConnectorEnd object representing the Target end of the relationship.")]
HRESULT SupplierEnd([out, retval] IDualConnectorEnd** pRet);
[id(0x00000014), propput]
HRESULT RouteStyle([in] long pRet);
[id(0x00000014), propget]
HRESULT RouteStyle([out, retval] long* pRet);
[id(0x00000015), propput]
HRESULT StyleEx([in] BSTR pRet);
[id(0x00000015), propget]
HRESULT StyleEx([out, retval] BSTR* pRet);
[id(0x00000016), propput]
HRESULT EventFlags([in] BSTR pRet);
[id(0x00000016), propget]
HRESULT EventFlags([out, retval] BSTR* pRet);
[id(0x00000017), propput]
HRESULT TransitionEvent([in] BSTR pRet);
[id(0x00000017), propget]
HRESULT TransitionEvent([out, retval] BSTR* pRet);
[id(0x00000018), propput]
HRESULT TransitionGuard([in] BSTR pRet);
[id(0x00000018), propget]
HRESULT TransitionGuard([out, retval] BSTR* pRet);
[id(0x00000019), propput]
HRESULT TransitionAction([in] BSTR pRet);
[id(0x00000019), propget]
HRESULT TransitionAction([out, retval] BSTR* pRet);
[id(0x0000001a)]
HRESULT Update([out, retval] VARIANT_BOOL* pRet);
[id(0x0000001b)]
HRESULT GetLastError([out, retval] BSTR* pRet);
[id(0x0000001c), propget, helpstring("Distinguishes objects referenced through Dispatch interface.")]
HRESULT ObjectType([out, retval] ObjectType* pRet);
[id(0x0000001d), propput]
HRESULT Color([in] long pRet);
[id(0x0000001d), propget]
HRESULT Color([out, retval] long* pRet);
[id(0x0000001e), propput]
HRESULT Width([in] long pRet);
[id(0x0000001e), propget]
HRESULT Width([out, retval] long* pRet);
[id(0x0000001f), propget]
HRESULT CustomProperties([out, retval] IDualCollection** pRet);
[id(0x00000020), propput]
HRESULT DiagramID([in] long pRet);
[id(0x00000020), propget]
HRESULT DiagramID([out, retval] long* pRet);
[id(0x00000021), propput]
HRESULT StereotypeEx([in] BSTR pRet);
[id(0x00000021), propget]
HRESULT StereotypeEx([out, retval] BSTR* pRet);
[id(0x00000022), propput]
HRESULT StartPointX([in] long pRet);
[id(0x00000022), propget]
HRESULT StartPointX([out, retval] long* pRet);
[id(0x00000023), propput]
HRESULT StartPointY([in] long pRet);
[id(0x00000023), propget]
HRESULT StartPointY([out, retval] long* pRet);
[id(0x00000024), propput]
HRESULT EndPointX([in] long pRet);
[id(0x00000024), propget]
HRESULT EndPointX([out, retval] long* pRet);
[id(0x00000025), propput]
HRESULT EndPointY([in] long pRet);
[id(0x00000025), propget]
HRESULT EndPointY([out, retval] long* pRet);
[id(0x00000002), propput]