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
|
(object Petal
version 50
_written "Rose 8.3.0407.2800"
charSet 0)
(object Class_Category "moduleCore"
is_unit TRUE
is_loaded TRUE
attributes (list Attribute_Set
(object Attribute
tool "Ecore"
name "basePackage"
value (value Text "org.eclipse.wst.common"))
(object Attribute
tool "Ecore"
name "prefix"
value (value Text "ModuleCore"))
(object Attribute
tool "Ecore"
name "nsURI"
value (value Text "modulecore.xmi")))
quid "3A0DB68B0046"
visible_categories (list visibility_relationship_list
(object Visibility_Relationship
quid "3F2E8236025A"
supplier "Logical View::ejbext"
quidu "39AA86660190")
(object Visibility_Relationship
quid "3F2E8236025B"
supplier "Logical View::webappext"
quidu "39B534FD024C")
(object Visibility_Relationship
quid "3F2E8236025C"
supplier "Logical View::ejbbnd"
quidu "39B960FC03CA")
(object Visibility_Relationship
quid "3F2E82360264"
supplier "Logical View::webappbnd"
quidu "39B961060107")
(object Visibility_Relationship
quid "3F2E82360265"
supplier "Logical View::clientbnd"
quidu "39B9614F031F")
(object Visibility_Relationship
quid "3F2E82360266"
supplier "Logical View::applicationext"
quidu "3A22E6080303")
(object Visibility_Relationship
quid "3F2E82360267"
supplier "Logical View::applicationbnd"
quidu "39B9611502A4")
(object Visibility_Relationship
quid "3F2E82360268"
supplier "Logical View::j2cbnd"
quidu "39B9632E038C"))
exportControl "Public"
logical_models (list unit_reference_list
(object Class "WorkbenchModule"
quid "41E3DF5801FA"
class_attributes (list class_attribute_list
(object ClassAttribute "handle"
quid "41EC1D71015D"
type "URI"
quidu "41EC26DA027A"
exportControl "Public")
(object ClassAttribute "deployedName"
quid "4201471D0208"
type "String"
exportControl "Public")))
(object Class "WorkbenchModuleResource"
quid "41E3DF670039"
class_attributes (list class_attribute_list
(object ClassAttribute "sourcePath"
quid "41E3DF970128"
type "URI"
quidu "41EC26DA027A"
exportControl "Public")
(object ClassAttribute "deployedPath"
quid "41EEC640025B"
type "URI"
quidu "41EC26DA027A"
exportControl "Public")
(object ClassAttribute "exclusions"
quid "41E3DF9E011E"
stereotype "0..*"
type "URI"
quidu "41EC26DA027A"
exportControl "Public")))
(object Class "ModuleType"
quid "41EC1D5103E2"
class_attributes (list class_attribute_list
(object ClassAttribute "metadataResources"
quid "41EC1DF0021E"
stereotype "0..*"
type "URI"
quidu "41EC26DA027A"
exportControl "Public")
(object ClassAttribute "moduleTypeId"
quid "41EC21340357"
type "String"
exportControl "Public")))
(object Class "URI"
quid "41EC26DA027A"
stereotype "datatype"
class_attributes (list class_attribute_list
(object ClassAttribute "org.eclipse.emf.common.util.URI"
quid "41EC270803AC"
stereotype "javaclass"
exportControl "Public")))
(object Class "ProjectModules"
quid "41F566DB0251"
class_attributes (list class_attribute_list
(object ClassAttribute "projectName"
quid "41F567FD023A"
type "String"
exportControl "Public")))
(object Class "DependentModule"
quid "41F6C24B023D"
class_attributes (list class_attribute_list
(object ClassAttribute "handle"
quid "420145F001C9"
type "URI"
quidu "41EC26DA027A"
exportControl "Public")
(object ClassAttribute "deployedPath"
quid "420145FA0015"
type "URI"
quidu "41EC26DA027A"
exportControl "Public")
(object ClassAttribute "dependencyType"
quid "42039243016E"
type "DependencyType"
quidu "420394F50185"
exportControl "Public")))
(object Class "DependencyType"
quid "420394F50185"
documentation
|uses=0
|consumes=1
stereotype "enumeration"
class_attributes (list class_attribute_list
(object ClassAttribute "uses"
quid "42039938018D"
exportControl "Public")
(object ClassAttribute "consumes"
quid "42039A6E0139"
exportControl "Public")))
(object Association "$UNNAMED$0"
quid "41E3E14B01E3"
roles (list role_list
(object Role "resources"
quid "41E3E14D031D"
label "resources"
supplier "Logical View::moduleCore::WorkbenchModuleResource"
quidu "41E3DF670039"
client_cardinality (value cardinality "0..*")
Containment "By Value"
is_navigable TRUE)
(object Role "module"
quid "41E3E14D031F"
label "module"
supplier "Logical View::moduleCore::WorkbenchModule"
quidu "41E3DF5801FA"
client_cardinality (value cardinality "1")
is_navigable TRUE
is_aggregate TRUE)))
(object Association "$UNNAMED$1"
quid "41EC1D9802C2"
roles (list role_list
(object Role "moduleType"
quid "41EC1D990241"
label "moduleType"
supplier "Logical View::moduleCore::ModuleType"
quidu "41EC1D5103E2"
client_cardinality (value cardinality "1")
is_navigable TRUE)
(object Role "$UNNAMED$2"
quid "41EC1D990243"
supplier "Logical View::moduleCore::WorkbenchModule"
quidu "41E3DF5801FA")))
(object Association "$UNNAMED$3"
quid "41F5672000E8"
roles (list role_list
(object Role "workbenchModules"
quid "41F567210111"
label "workbenchModules"
supplier "Logical View::moduleCore::WorkbenchModule"
quidu "41E3DF5801FA"
client_cardinality (value cardinality "0..*")
Containment "By Value"
is_navigable TRUE)
(object Role "$UNNAMED$4"
quid "41F567210113"
supplier "Logical View::moduleCore::ProjectModules"
quidu "41F566DB0251"
Containment "By Reference"
is_aggregate TRUE)))
(object Association "$UNNAMED$5"
quid "420146A502E2"
roles (list role_list
(object Role "modules"
quid "420146A6027F"
label "modules"
supplier "Logical View::moduleCore::DependentModule"
quidu "41F6C24B023D"
client_cardinality (value cardinality "0..*")
is_navigable TRUE)
(object Role "$UNNAMED$6"
quid "420146A60281"
supplier "Logical View::moduleCore::WorkbenchModule"
quidu "41E3DF5801FA"))))
logical_presentations (list unit_reference_list
(object ClassDiagram "Main"
quid "41E3DF060210"
title "Main"
zoom 100
max_height 28350
max_width 21600
origin_x 100
origin_y 0
items (list diagram_item_list
(object ClassView "Class" "Logical View::moduleCore::URI" @1
ShowCompartmentStereotypes TRUE
IncludeAttribute TRUE
IncludeOperation TRUE
location (1920, 1648)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object ItemLabel
Parent_View @1
location (1460, 1589)
fill_color 13434879
nlines 1
max_width 920
justify 0
label "URI")
stereotype (object ItemLabel
Parent_View @1
location (1460, 1539)
fill_color 13434879
anchor 10
nlines 1
max_width 920
justify 0
label "<<datatype>>")
icon_style "Icon"
line_color 3342489
fill_color 13434879
quidu "41EC26DA027A"
compartment (object Compartment
Parent_View @1
location (1460, 1650)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
icon_style "Icon"
fill_color 16777215
anchor 2
nlines 2
max_width 925)
width 938
height 242
annotation 8
autoResize TRUE)
(object NoteView @2
location (448, 1264)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object ItemLabel
Parent_View @2
location (176, 1055)
fill_color 13434879
nlines 8
max_width 508
label
|The module "handle" URI will contain the special Module protocol, project name, and module identifier, and will be fully resolved to a full platform URI
)
line_color 3342489
fill_color 13434879
width 568
height 431)
(object ClassView "Class" "Logical View::moduleCore::WorkbenchModuleResource" @3
ShowCompartmentStereotypes TRUE
IncludeAttribute TRUE
IncludeOperation TRUE
location (992, 1744)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object ItemLabel
Parent_View @3
location (714, 1613)
fill_color 13434879
nlines 1
max_width 556
justify 0
label "WorkbenchModuleResource")
icon_style "Icon"
line_color 3342489
fill_color 13434879
quidu "41E3DF670039"
compartment (object Compartment
Parent_View @3
location (714, 1674)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
icon_style "Icon"
fill_color 16777215
anchor 2
nlines 4
max_width 531)
width 574
height 286
annotation 8
autoResize TRUE)
(object ClassView "Class" "Logical View::moduleCore::ModuleType" @4
ShowCompartmentStereotypes TRUE
IncludeAttribute TRUE
IncludeOperation TRUE
location (1856, 1136)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object ItemLabel
Parent_View @4
location (1509, 1030)
fill_color 13434879
nlines 1
max_width 694
justify 0
label "ModuleType")
icon_style "Icon"
line_color 3342489
fill_color 13434879
quidu "41EC1D5103E2"
compartment (object Compartment
Parent_View @4
location (1509, 1091)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
icon_style "Icon"
fill_color 16777215
anchor 2
nlines 3
max_width 700)
width 712
height 236
annotation 8
autoResize TRUE)
(object ClassView "Class" "Logical View::moduleCore::ProjectModules" @5
ShowCompartmentStereotypes TRUE
IncludeAttribute TRUE
IncludeOperation TRUE
location (416, 368)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object ItemLabel
Parent_View @5
location (204, 287)
fill_color 13434879
nlines 1
max_width 424
justify 0
label "ProjectModules")
icon_style "Icon"
line_color 3342489
fill_color 13434879
quidu "41F566DB0251"
compartment (object Compartment
Parent_View @5
location (204, 348)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
icon_style "Icon"
fill_color 16777215
anchor 2
nlines 2
max_width 431)
width 442
height 186
annotation 8
autoResize TRUE)
(object ClassView "Class" "Logical View::moduleCore::DependentModule" @6
ShowCompartmentStereotypes TRUE
IncludeAttribute TRUE
IncludeOperation TRUE
location (1824, 480)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object ItemLabel
Parent_View @6
location (1470, 349)
fill_color 13434879
nlines 1
max_width 708
justify 0
label "DependentModule")
icon_style "Icon"
line_color 3342489
fill_color 13434879
quidu "41F6C24B023D"
compartment (object Compartment
Parent_View @6
location (1470, 410)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
icon_style "Icon"
fill_color 13434879
anchor 2
nlines 4
max_width 715)
width 726
height 286
annotation 8
autoResize TRUE)
(object ClassView "Class" "Logical View::moduleCore::WorkbenchModule" @7
ShowCompartmentStereotypes TRUE
IncludeAttribute TRUE
IncludeOperation TRUE
location (944, 752)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object ItemLabel
Parent_View @7
location (712, 646)
fill_color 13434879
nlines 1
max_width 464
justify 0
label "WorkbenchModule")
icon_style "Icon"
line_color 3342489
fill_color 13434879
quidu "41E3DF5801FA"
compartment (object Compartment
Parent_View @7
location (712, 707)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
icon_style "Icon"
fill_color 16777215
anchor 2
nlines 3
max_width 471)
width 482
height 236
annotation 8
autoResize TRUE)
(object AssociationViewNew "$UNNAMED$0" @8
location (940, 1235)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
stereotype TRUE
line_color 3342489
quidu "41E3E14B01E3"
roleview_list (list RoleViews
(object RoleView "resources" @9
Parent_View @8
location (460, 355)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object SegLabel @10
Parent_View @9
location (1075, 1501)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
anchor 1
anchor_loc 1
nlines 1
max_width 216
justify 0
label "+resources"
pctDist 0.726776
height 135
orientation 0)
stereotype TRUE
line_color 3342489
quidu "41E3E14D031D"
client @8
supplier @3
vertices (list Points
(940, 1235)
(940, 1601))
line_style 3
origin_attachment (940, 1235)
terminal_attachment (940, 1601)
label (object SegLabel @11
Parent_View @9
location (861, 1495)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
anchor 2
anchor_loc 1
nlines 1
max_width 15
justify 0
label "0..*"
pctDist 0.710383
height 79
orientation 1))
(object RoleView "module" @12
Parent_View @8
location (460, 355)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object SegLabel @13
Parent_View @12
location (1043, 972)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
anchor 1
anchor_loc 1
nlines 1
max_width 172
justify 0
label "+module"
pctDist 0.720824
height 103
orientation 1)
stereotype TRUE
line_color 3342489
quidu "41E3E14D031F"
client @8
supplier @7
vertices (list Points
(940, 1235)
(940, 870))
line_style 3
origin_attachment (940, 1235)
terminal_attachment (940, 870)
label (object SegLabel @14
Parent_View @12
location (868, 976)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
anchor 2
anchor_loc 1
nlines 1
max_width 15
justify 0
label "1"
pctDist 0.709382
height 73
orientation 0))))
(object AssociationViewNew "$UNNAMED$1" @15
location (1634, 791)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
stereotype TRUE
line_color 3342489
quidu "41EC1D9802C2"
roleview_list (list RoleViews
(object RoleView "moduleType" @16
Parent_View @15
location (1298, -137)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object SegLabel @17
Parent_View @16
location (2010, 977)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
anchor 1
anchor_loc 1
nlines 1
max_width 260
justify 0
label "+moduleType"
pctDist 0.911573
height 153
orientation 0)
stereotype TRUE
line_color 3342489
quidu "41EC1D990241"
client @15
supplier @4
vertices (list Points
(1634, 791)
(1857, 791)
(1857, 1018))
line_style 3
origin_attachment (1634, 791)
terminal_attachment (1857, 1018)
label (object SegLabel @18
Parent_View @16
location (1804, 972)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
anchor 2
anchor_loc 1
nlines 1
max_width 15
justify 0
label "1"
pctDist 0.900000
height 54
orientation 1))
(object RoleView "$UNNAMED$2" @19
Parent_View @15
location (1298, -137)
stereotype TRUE
line_color 3342489
quidu "41EC1D990243"
client @15
supplier @7
vertices (list Points
(1634, 791)
(1185, 791))
line_style 3
origin_attachment (1634, 791)
terminal_attachment (1185, 791))))
(object AttachView "" @20
stereotype TRUE
line_color 3342489
client @2
supplier @7
vertices (list Points
(657, 1048)
(829, 870))
line_style 0)
(object AssociationViewNew "$UNNAMED$3" @21
location (399, 691)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
stereotype TRUE
line_color 3342489
quidu "41F5672000E8"
roleview_list (list RoleViews
(object RoleView "workbenchModules" @22
Parent_View @21
location (-33, 403)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object SegLabel @23
Parent_View @22
location (476, 747)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
anchor 1
anchor_loc 1
nlines 1
max_width 373
justify 0
label "+workbenchModules"
pctDist 0.253289
height 56
orientation 1)
stereotype TRUE
line_color 3342489
quidu "41F567210111"
client @21
supplier @7
vertices (list Points
(399, 691)
(703, 691))
line_style 3
origin_attachment (399, 691)
terminal_attachment (703, 691)
label (object SegLabel @24
Parent_View @22
location (640, 632)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
anchor 2
anchor_loc 1
nlines 1
max_width 15
justify 0
label "0..*"
pctDist 0.792763
height 59
orientation 0))
(object RoleView "$UNNAMED$4" @25
Parent_View @21
location (-33, 403)
stereotype TRUE
line_color 3342489
quidu "41F567210113"
client @21
supplier @5
vertices (list Points
(399, 691)
(325, 691)
(325, 461))
line_style 3
origin_attachment (399, 691)
terminal_attachment (325, 461))))
(object AssociationViewNew "$UNNAMED$5" @26
location (1322, 633)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
stereotype TRUE
line_color 3342489
quidu "420146A502E2"
roleview_list (list RoleViews
(object RoleView "modules" @27
Parent_View @26
location (490, -711)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object SegLabel @28
Parent_View @27
location (1367, 545)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
anchor 1
anchor_loc 1
nlines 1
max_width 180
justify 0
label "+modules"
pctDist 0.475736
height 72
orientation 0)
stereotype TRUE
line_color 3342489
quidu "420146A6027F"
client @26
supplier @6
vertices (list Points
(1322, 633)
(1460, 589))
line_style 0
label (object SegLabel @29
Parent_View @27
location (1427, 662)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
anchor 2
anchor_loc 1
nlines 1
max_width 15
justify 0
label "0..*"
pctDist 0.636077
height 59
orientation 1))
(object RoleView "$UNNAMED$6" @30
Parent_View @26
location (490, -711)
stereotype TRUE
line_color 3342489
quidu "420146A60281"
client @26
supplier @7
vertices (list Points
(1322, 633)
(1185, 675))
line_style 0)))
(object NoteView @31
location (2784, 416)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object ItemLabel
Parent_View @31
location (2387, 166)
fill_color 13434879
nlines 10
max_width 759
label
|The dependent module "handle" must be resolvable to a WorkbenchModule.
|
|The DeployedPath specifies the location of the referenced module in this deployment structure.
|
|The dependencyType specifies how the dependent module is assembled.
)
line_color 3342489
fill_color 13434879
width 819
height 513)
(object ClassView "Class" "Logical View::moduleCore::DependencyType" @32
ShowCompartmentStereotypes TRUE
IncludeAttribute TRUE
IncludeOperation TRUE
location (2560, 944)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
label (object ItemLabel
Parent_View @32
location (2387, 860)
fill_color 13434879
nlines 1
max_width 346
justify 0
label "DependencyType")
stereotype (object ItemLabel
Parent_View @32
location (2387, 810)
fill_color 13434879
anchor 10
nlines 1
max_width 346
justify 0
label "<<enumeration>>")
icon_style "Icon"
line_color 3342489
fill_color 13434879
quidu "420394F50185"
compartment (object Compartment
Parent_View @32
location (2387, 921)
font (object Font
size 10
face "Arial"
bold FALSE
italics FALSE
underline FALSE
strike FALSE
color 0
default_color TRUE)
icon_style "Icon"
fill_color 13434879
anchor 2
nlines 3
max_width 237)
width 364
height 292
annotation 8
autoResize TRUE)
(object AttachView "" @33
stereotype TRUE
line_color 3342489
client @6
supplier @31
vertices (list Points
(2187, 455)
(2374, 443))
line_style 0)))))
|