-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (140 loc) · 5.08 KB
/
index.html
File metadata and controls
153 lines (140 loc) · 5.08 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Class Diagram</title>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0, shrink-to-fit=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<script src="bower_components/underscore/underscore-min.js"></script>
<link rel="import" href="elements/vr-scene.html">
<link rel="import" href="elements/vr-ellipse.html">
<link rel="import" href="elements/vr-class.html">
<link rel="import" href="elements/vr-connection-aggregation.html">
<link rel="import" href="elements/vr-connection-association.html">
<link rel="import" href="elements/vr-connection-inheritance.html">
<link rel="import" href="elements/vr-controlpanel.html">
<link rel="import" href="elements/vr-control.html">
<style>
body {
background-color: #f0f0f0;
margin: 0;
overflow: hidden;
}
</style>
</head>
<body>
<vr-scene>
<!-- <vr-class id="customer"
x-pos="150"
y-pos="150"
height="100"
width="120"
text1="Customer"
text2="-name:String; -address:String"
text3="+getCreditRating():String"
class-type="abstract"
highlight
resize-vertical
resize-horizontal
move-horizontal
move-vertical>
</vr-class>
<vr-class id="corporatecustomer"
x-pos="-20"
y-pos="0"
height="100"
width="50"
text1="CorporateCustomer"
text2="-contactName:String; -creditRaiting:String; -creaditLimit:Decimal"
text3="+billForMonth(int amount); +remind()"
highlight
resize-vertical
resize-horizontal
move-horizontal
move-vertical>
</vr-class>
<vr-class id="personalcustomer"
x-pos="250"
y-pos="0"
height="100"
width="175"
text1="PersonalCustomer"
text2="-creaditCardNumber:String"
text3="+getCreditRaiting(creditRaiting:String)"
highlight
resize-vertical
resize-horizontal
move-horizontal
move-vertical>
</vr-class>
<vr-class id="employee"
x-pos="160"
y-Pos="-120"
width="50"
height="30"
text1="Employee"
text2=""
text3=""
highlight
resize-vertical
resize-horizontal
move-horizontal
move-vertical>
</vr-class>
<vr-class id="orderline"
x-pos="-150"
y-Pos="0"
width="80"
height="95"
text1="OrderLine"
text2="-quantity:Integer; -price:Decimal"
text3=""
highlight
resize-vertical
resize-horizontal
move-horizontal
move-vertical>
</vr-class>
<vr-class id="product"
x-pos="-150"
y-Pos="-130"
width="50"
height="30"
text1="Product" text2="" text3=""
highlight
resize-vertical
resize-horizontal
move-horizontal
move-vertical>
</vr-class>
<vr-class id="order"
x-pos="-150"
y-Pos="150"
width="90"
height="100"
text1="Order"
text2="-dateRecieved:Date; -isPrePaid:Boolean; -lineItems[]"
text3="+dispatch(); +close(); +testMethodWithAVeryVeryVeryVerySuperLongMethodName"
class-type="interface"
highlight
resize-vertical
resize-horizontal
move-horizontal
move-vertical>
</vr-class> -->
<!-- <vr-connection-inheritance from="customer" to="personalcustomer"></vr-connection-inheritance>
<vr-connection-inheritance from="customer" to="corporatecustomer"></vr-connection-inheritance>
<vr-connection-inheritance from="corporatecustomer" to="customer"></vr-connection-inheritance>
<vr-connection-aggregation from="order" to="customer"></vr-connection-aggregation>
<vr-connection-association from="orderline" to="order"></vr-connection-association>
<vr-connection-association from="product" to="orderline"></vr-connection-association>
<vr-connection-association from="customer" to="order"></vr-connection-association>
<vr-connection-association from="employee" to="corporatecustomer"></vr-connection-association>
<vr-connection-association from="corporatecustomer" to="employee"></vr-connection-association> -->
</vr-scene>
</body>
</html>