lutaml-uml 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +36 -0
- data/.github/workflows/ubuntu.yml +38 -0
- data/.github/workflows/windows.yml +41 -0
- data/.gitignore +1 -0
- data/Gemfile +2 -1
- data/LUTAML.adoc +314 -0
- data/{README.md → README.adoc} +15 -16
- data/Rakefile +3 -1
- data/bin/console +1 -0
- data/bin/lutaml2dotpng +23 -0
- data/bin/yaml2lutaml +108 -0
- data/exe/lutaml-uml +4 -3
- data/lib/lutaml/layout/engine.rb +15 -0
- data/lib/lutaml/layout/graph_viz_engine.rb +16 -0
- data/lib/lutaml/uml.rb +3 -0
- data/lib/lutaml/uml/abstraction.rb +7 -5
- data/lib/lutaml/uml/activity.rb +7 -5
- data/lib/lutaml/uml/actor.rb +14 -12
- data/lib/lutaml/uml/association.rb +40 -14
- data/lib/lutaml/uml/behavior.rb +7 -5
- data/lib/lutaml/uml/class.rb +56 -16
- data/lib/lutaml/uml/classifier.rb +9 -6
- data/lib/lutaml/uml/connector.rb +16 -12
- data/lib/lutaml/uml/constraint.rb +8 -7
- data/lib/lutaml/uml/constructor_end.rb +11 -8
- data/lib/lutaml/uml/data_type.rb +9 -4
- data/lib/lutaml/uml/dependency.rb +16 -13
- data/lib/lutaml/uml/document.rb +71 -0
- data/lib/lutaml/uml/enum.rb +33 -0
- data/lib/lutaml/uml/event.rb +7 -5
- data/lib/lutaml/uml/final_state.rb +7 -5
- data/lib/lutaml/uml/formatter.rb +21 -0
- data/lib/lutaml/uml/formatter/base.rb +67 -0
- data/lib/lutaml/uml/formatter/graphviz.rb +335 -0
- data/lib/lutaml/uml/has_attributes.rb +14 -0
- data/lib/lutaml/uml/has_members.rb +30 -0
- data/lib/lutaml/uml/instance.rb +15 -10
- data/lib/lutaml/uml/interface/base.rb +28 -0
- data/lib/lutaml/uml/interface/command_line.rb +265 -0
- data/lib/lutaml/uml/model.rb +11 -8
- data/lib/lutaml/uml/node/base.rb +21 -0
- data/lib/lutaml/uml/node/class_node.rb +57 -0
- data/lib/lutaml/uml/node/class_relationship.rb +14 -0
- data/lib/lutaml/uml/node/document.rb +18 -0
- data/lib/lutaml/uml/node/field.rb +34 -0
- data/lib/lutaml/uml/node/has_name.rb +15 -0
- data/lib/lutaml/uml/node/has_type.rb +15 -0
- data/lib/lutaml/uml/node/method.rb +29 -0
- data/lib/lutaml/uml/node/method_argument.rb +16 -0
- data/lib/lutaml/uml/node/relationship.rb +28 -0
- data/lib/lutaml/uml/opaque_behavior.rb +7 -6
- data/lib/lutaml/uml/package.rb +16 -13
- data/lib/lutaml/uml/parsers/attribute.rb +70 -0
- data/lib/lutaml/uml/parsers/dsl.rb +375 -0
- data/lib/lutaml/uml/parsers/dsl_preprocessor.rb +44 -0
- data/lib/lutaml/uml/parsers/dsl_transform.rb +27 -0
- data/lib/lutaml/uml/parsers/yaml.rb +46 -0
- data/lib/lutaml/uml/port.rb +6 -4
- data/lib/lutaml/uml/primitive_type.rb +9 -4
- data/lib/lutaml/uml/property.rb +25 -15
- data/lib/lutaml/uml/pseudostate.rb +7 -6
- data/lib/lutaml/uml/realization.rb +7 -5
- data/lib/lutaml/uml/region.rb +7 -6
- data/lib/lutaml/uml/serializers/association.rb +58 -0
- data/lib/lutaml/uml/serializers/base.rb +16 -0
- data/lib/lutaml/uml/serializers/class.rb +29 -0
- data/lib/lutaml/uml/serializers/top_element_attribute.rb +14 -0
- data/lib/lutaml/uml/serializers/yaml_view.rb +18 -0
- data/lib/lutaml/uml/state.rb +8 -6
- data/lib/lutaml/uml/state_machine.rb +7 -5
- data/lib/lutaml/uml/top_element.rb +45 -35
- data/lib/lutaml/uml/top_element_attribute.rb +25 -0
- data/lib/lutaml/uml/transition.rb +8 -6
- data/lib/lutaml/uml/trigger.rb +8 -6
- data/lib/lutaml/uml/version.rb +3 -1
- data/lib/lutaml/uml/vertex.rb +7 -5
- data/lutaml-uml.gemspec +9 -2
- data/spec/fixtures/datamodel/models/AddressClassProfile.yml +90 -0
- data/spec/fixtures/datamodel/models/AddressComponentProfile.yml +63 -0
- data/spec/fixtures/datamodel/models/AddressComponentSpecification.yml +15 -0
- data/spec/fixtures/datamodel/models/AddressProfile.yml +36 -0
- data/spec/fixtures/datamodel/models/AttributeProfile.yml +32 -0
- data/spec/fixtures/datamodel/models/InterchangeAddressClassProfile.yml +79 -0
- data/spec/fixtures/datamodel/models/Localization copy.yml +23 -0
- data/spec/fixtures/datamodel/models/Localization.yml +23 -0
- data/spec/fixtures/datamodel/models/ProfileCompliantAddress.yml +36 -0
- data/spec/fixtures/datamodel/models/ProfileCompliantAddressComponent.yml +15 -0
- data/spec/fixtures/datamodel/models/Signature.yml +20 -0
- data/spec/fixtures/datamodel/models/SignatureBlankDefinition.yml +20 -0
- data/spec/fixtures/datamodel/models/TextDirectionCode copy.yml +16 -0
- data/spec/fixtures/datamodel/models/TextDirectionCode.yml +16 -0
- data/spec/fixtures/datamodel/models/Validity.yml +14 -0
- data/spec/fixtures/datamodel/models/iso19160-1/Address.yml +22 -0
- data/spec/fixtures/datamodel/models/iso19160-1/AddressComponent.yml +2 -0
- data/spec/fixtures/datamodel/style.uml.inc +37 -0
- data/spec/fixtures/datamodel/views/AddressClassProfile.yml +12 -0
- data/spec/fixtures/datamodel/views/AddressProfile.yml +3 -0
- data/spec/fixtures/datamodel/views/CommonModels.yml +9 -0
- data/spec/fixtures/datamodel/views/TopDown.yml +62 -0
- data/spec/fixtures/dsl/diagram.lutaml +3 -0
- data/spec/fixtures/dsl/diagram_attributes.lutaml +5 -0
- data/spec/fixtures/dsl/diagram_class_assocation.lutaml +29 -0
- data/spec/fixtures/dsl/diagram_class_fields.lutaml +19 -0
- data/spec/fixtures/dsl/diagram_comments.lutaml +28 -0
- data/spec/fixtures/dsl/diagram_concept_model.lutaml +132 -0
- data/spec/fixtures/dsl/diagram_data_types.lutaml +24 -0
- data/spec/fixtures/dsl/diagram_includes.lutaml +6 -0
- data/spec/fixtures/dsl/diagram_multiply_classes.lutaml +7 -0
- data/spec/fixtures/dsl/shared.lutaml +3 -0
- data/spec/fixtures/dsl/shared1.lutaml +4 -0
- data/spec/fixtures/generated_dot/AddressClassProfile.dot +170 -0
- data/spec/fixtures/generated_dot/AddressProfile.dot +34 -0
- data/spec/lutaml/uml/formatter/graphviz_spec.rb +41 -0
- data/spec/lutaml/uml/parsers/dsl_spec.rb +252 -0
- data/spec/lutaml/uml/parsers/yaml_spec.rb +18 -0
- data/spec/lutaml/uml/serializers/yaml_view_spec.rb +20 -0
- data/spec/lutaml/uml_spec.rb +2 -4
- data/spec/spec_helper.rb +11 -0
- metadata +161 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9390b74fbba2e8c8ee424d8aecd2efd9d507d157e6a63cc64c115b821878ef01
|
4
|
+
data.tar.gz: e8d2466349d6b622ae0a3d46b1eeca87f0f3996d155fbf5bed75e90bc14a3b48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d4a974174f13d690205e9d5f887745ec1268e16c8d031a137ca492fca24617a004d4ede0e72ed074b02694895d81b4128f7695811436e4d4a746676bacbb834
|
7
|
+
data.tar.gz: 8dbe1883d2ea7c910e48b4c0f9191559aaa7a6ee02c598b5a0b05a7fb3cd33407edc37101a9fec4297f9110be3fb9243625370b140c5a0fc36adc9d909a6b4ae
|
@@ -0,0 +1,36 @@
|
|
1
|
+
name: macos
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ master ]
|
6
|
+
pull_request:
|
7
|
+
paths-ignore:
|
8
|
+
- .github/workflows/ubuntu.yml
|
9
|
+
- .github/workflows/windows.yml
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
test-macos:
|
13
|
+
name: Test on Ruby ${{ matrix.ruby }} macOS
|
14
|
+
runs-on: macos-latest
|
15
|
+
continue-on-error: ${{ matrix.experimental }}
|
16
|
+
strategy:
|
17
|
+
fail-fast: false
|
18
|
+
matrix:
|
19
|
+
ruby: [ '2.6', '2.5', '2.4' ]
|
20
|
+
experimental: [false]
|
21
|
+
include:
|
22
|
+
- ruby: '2.7'
|
23
|
+
experimental: true
|
24
|
+
steps:
|
25
|
+
- uses: actions/checkout@master
|
26
|
+
- name: Use Ruby
|
27
|
+
uses: actions/setup-ruby@v1
|
28
|
+
with:
|
29
|
+
ruby-version: ${{ matrix.ruby }}
|
30
|
+
- name: Update gems
|
31
|
+
run: |
|
32
|
+
sudo gem install bundler --force
|
33
|
+
bundle install --jobs 4 --retry 3
|
34
|
+
- name: Run specs
|
35
|
+
run: |
|
36
|
+
bundle exec rake
|
@@ -0,0 +1,38 @@
|
|
1
|
+
name: ubuntu
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ master ]
|
6
|
+
tags:
|
7
|
+
- '*'
|
8
|
+
pull_request:
|
9
|
+
paths-ignore:
|
10
|
+
- .github/workflows/macos.yml
|
11
|
+
- .github/workflows/windows.yml
|
12
|
+
|
13
|
+
jobs:
|
14
|
+
test-linux:
|
15
|
+
name: Test on Ruby ${{ matrix.ruby }} Ubuntu
|
16
|
+
runs-on: ubuntu-latest
|
17
|
+
continue-on-error: ${{ matrix.experimental }}
|
18
|
+
strategy:
|
19
|
+
fail-fast: false
|
20
|
+
matrix:
|
21
|
+
ruby: [ '2.6', '2.5', '2.4' ]
|
22
|
+
experimental: [false]
|
23
|
+
include:
|
24
|
+
- ruby: '2.7'
|
25
|
+
experimental: true
|
26
|
+
steps:
|
27
|
+
- uses: actions/checkout@master
|
28
|
+
- name: Use Ruby
|
29
|
+
uses: actions/setup-ruby@v1
|
30
|
+
with:
|
31
|
+
ruby-version: ${{ matrix.ruby }}
|
32
|
+
- name: Update gems
|
33
|
+
run: |
|
34
|
+
gem install bundler
|
35
|
+
bundle install --jobs 4 --retry 3
|
36
|
+
- name: Run specs
|
37
|
+
run: |
|
38
|
+
bundle exec rake
|
@@ -0,0 +1,41 @@
|
|
1
|
+
name: windows
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ master ]
|
6
|
+
pull_request:
|
7
|
+
paths-ignore:
|
8
|
+
- .github/workflows/macos.yml
|
9
|
+
- .github/workflows/ubuntu.yml
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
test-windows:
|
13
|
+
name: Test on Ruby ${{ matrix.ruby }} Windows
|
14
|
+
runs-on: windows-latest
|
15
|
+
continue-on-error: ${{ matrix.experimental }}
|
16
|
+
strategy:
|
17
|
+
fail-fast: false
|
18
|
+
matrix:
|
19
|
+
ruby: [ '2.6', '2.5', '2.4' ]
|
20
|
+
experimental: [false]
|
21
|
+
# Does not supported yet:
|
22
|
+
# Ruby (< 2.7.dev, >= 2.3), which is required by gem 'nokogiri (~> 1.10)', is not
|
23
|
+
# available in the local ruby installation
|
24
|
+
# include:
|
25
|
+
# - ruby: '2.7'
|
26
|
+
# experimental: true
|
27
|
+
steps:
|
28
|
+
- uses: actions/checkout@master
|
29
|
+
- name: Use Ruby
|
30
|
+
uses: actions/setup-ruby@v1
|
31
|
+
with:
|
32
|
+
ruby-version: ${{ matrix.ruby }}
|
33
|
+
- name: Update gems
|
34
|
+
shell: pwsh
|
35
|
+
run: |
|
36
|
+
gem install bundler
|
37
|
+
bundle config --local path vendor/bundle
|
38
|
+
bundle install --jobs 4 --retry 3
|
39
|
+
- name: Run specs
|
40
|
+
run: |
|
41
|
+
bundle exec rake
|
data/.gitignore
CHANGED
data/Gemfile
CHANGED
data/LUTAML.adoc
ADDED
@@ -0,0 +1,314 @@
|
|
1
|
+
= LutaML syntax
|
2
|
+
|
3
|
+
== `diagram` syntax
|
4
|
+
|
5
|
+
`diagram` is a root element for each diagram.
|
6
|
+
|
7
|
+
[source,java]
|
8
|
+
----
|
9
|
+
diagram MyView {
|
10
|
+
import Relationship, Element
|
11
|
+
render_option typed_as_associations
|
12
|
+
file "my_view.png"
|
13
|
+
fontname "Helvetica"
|
14
|
+
}
|
15
|
+
----
|
16
|
+
|
17
|
+
== DataTypes
|
18
|
+
|
19
|
+
Lutaml supports 3 types of data_types: `data_type`, `primitive` and `enum`. Example of data types declaration:
|
20
|
+
|
21
|
+
[source,java]
|
22
|
+
----
|
23
|
+
diagram MyView {
|
24
|
+
enum MyEnum {}
|
25
|
+
|
26
|
+
enum AddressClassProfile {
|
27
|
+
+addressClassProfile: CharacterString
|
28
|
+
}
|
29
|
+
|
30
|
+
data_type "Banking Information" {
|
31
|
+
"art code"
|
32
|
+
"CCT Number"
|
33
|
+
}
|
34
|
+
|
35
|
+
primitive Integer
|
36
|
+
|
37
|
+
enum Profile {
|
38
|
+
imlicistAttributeProfile: CharacterString
|
39
|
+
+attributeProfile: CharacterString
|
40
|
+
-privateAttributeProfile: CharacterString
|
41
|
+
~friendlyAttributeProfile: CharacterString
|
42
|
+
#protectedAttributeProfile: CharacterString
|
43
|
+
}
|
44
|
+
}
|
45
|
+
----
|
46
|
+
|
47
|
+
== Associations
|
48
|
+
|
49
|
+
=== Explicit declaration
|
50
|
+
|
51
|
+
Syntax:
|
52
|
+
|
53
|
+
[source,java]
|
54
|
+
----
|
55
|
+
association name {
|
56
|
+
owned_type association|composition|aggregation|generalization|uses
|
57
|
+
member_type association|composition|aggregation|generalization|uses
|
58
|
+
owned association_name[#attribute_name] [{property_string}][cardinality]
|
59
|
+
member association_name[#attribute_name] [{property_string}][cardinality]
|
60
|
+
}
|
61
|
+
----
|
62
|
+
|
63
|
+
where:
|
64
|
+
|
65
|
+
* `owned_type` - optional, use to define bidirectional association(association|composition|aggregation|generalization|uses)
|
66
|
+
* `member_type` - association type(association|composition|aggregation|generalization|uses)
|
67
|
+
* `owned|member` - end of association, use `\#attribute_name` to set a role name
|
68
|
+
* `property_string` - property string for attibutes associations
|
69
|
+
* `cardinality` - examples: '1..*', '*'
|
70
|
+
|
71
|
+
Example:
|
72
|
+
|
73
|
+
[source,java]
|
74
|
+
----
|
75
|
+
class Association {
|
76
|
+
+association:
|
77
|
+
}
|
78
|
+
class Type {
|
79
|
+
+endType:
|
80
|
+
}
|
81
|
+
|
82
|
+
association AssociatingTypeAndAssociation {
|
83
|
+
type uses
|
84
|
+
from Association#+association {subsets relationship}[*]
|
85
|
+
to Type#+/endType {readOnly, subsets relatedElement} [1..*]
|
86
|
+
}
|
87
|
+
----
|
88
|
+
|
89
|
+
=== Undirected associations
|
90
|
+
|
91
|
+
The simplest way to define relationship between two classes is to use `generalize` keyword:
|
92
|
+
|
93
|
+
[source,java]
|
94
|
+
----
|
95
|
+
class Pet {}
|
96
|
+
class Cat {
|
97
|
+
generalize Pet
|
98
|
+
}
|
99
|
+
----
|
100
|
+
|
101
|
+
=== Attribute relationship
|
102
|
+
|
103
|
+
Derived attribute `relatedElement` can have 1 to many `Element` associated with it through `union`
|
104
|
+
|
105
|
+
[source,java]
|
106
|
+
----
|
107
|
+
class Relationship {
|
108
|
+
+/relatedElement: Element[1..*] {union}
|
109
|
+
}
|
110
|
+
class Element {}
|
111
|
+
----
|
112
|
+
|
113
|
+
== Attributes/entries
|
114
|
+
|
115
|
+
=== Definition
|
116
|
+
|
117
|
+
Full syntax:
|
118
|
+
|
119
|
+
[source,java]
|
120
|
+
----
|
121
|
+
[visibility][/][attribute] name [:type][multiplicity][=initial value][{property string}]
|
122
|
+
----
|
123
|
+
|
124
|
+
where:
|
125
|
+
|
126
|
+
* `visibility` can be equal to `-` - private, `+` - public, `#` - protected, `~` - friendly
|
127
|
+
* `attribute` - attrbute keyword
|
128
|
+
* `/` - symbolizes a derived attribute.
|
129
|
+
* `multiplicity` - Multiplicity is in square brackets (e.g. [1..*]).
|
130
|
+
* `initial value` - Default value specifies the initial value of the attribute.
|
131
|
+
* `property string` - Property string indicates a modifier that applies to the attribute:
|
132
|
+
** {readonly}: the property can be read but not changed.
|
133
|
+
** {union}: the property is a union of subsets.
|
134
|
+
** {subsets <property>}: the property is a subset of <property>.
|
135
|
+
** {redefines <property>}: the property is a new definition of <property> (overwritten by inheritance).
|
136
|
+
|
137
|
+
|
138
|
+
One can use explicit or implicit syntax for attribute definition
|
139
|
+
|
140
|
+
explicit syntax:
|
141
|
+
|
142
|
+
[source,java]
|
143
|
+
----
|
144
|
+
class A {
|
145
|
+
attribute my_attribute
|
146
|
+
}
|
147
|
+
|
148
|
+
enum A {
|
149
|
+
entry my_val2
|
150
|
+
}
|
151
|
+
----
|
152
|
+
|
153
|
+
implicit syntax:
|
154
|
+
|
155
|
+
[source,java]
|
156
|
+
----
|
157
|
+
class A {
|
158
|
+
my_attribute
|
159
|
+
}
|
160
|
+
|
161
|
+
enum A {
|
162
|
+
my_val2
|
163
|
+
}
|
164
|
+
----
|
165
|
+
|
166
|
+
=== Attribute visibility
|
167
|
+
|
168
|
+
Syntax for defining visibility: [+|-|#|~] [attribute] attribute_name. LutaML uses these modificators to define attribute(entry) visbility:
|
169
|
+
|
170
|
+
+ => public
|
171
|
+
- => private
|
172
|
+
# => protected
|
173
|
+
~ => package
|
174
|
+
|
175
|
+
example:
|
176
|
+
|
177
|
+
[source,java]
|
178
|
+
----
|
179
|
+
class Figure {
|
180
|
+
// Public attribute `radius`
|
181
|
+
+ radius
|
182
|
+
// private attribute `filled`
|
183
|
+
- filled
|
184
|
+
// protected attribute `length`
|
185
|
+
# length
|
186
|
+
}
|
187
|
+
----
|
188
|
+
|
189
|
+
== Methods
|
190
|
+
|
191
|
+
Syntax for defining methods:
|
192
|
+
|
193
|
+
[source,java]
|
194
|
+
----
|
195
|
+
[visbility] method-name (parameter-list): return type {property-modifier}
|
196
|
+
----
|
197
|
+
|
198
|
+
where:
|
199
|
+
- `visibility` can be equal to `-` - private, `+` - public, `#` - protected, `~` - friendly
|
200
|
+
- `parameter-list` - parameter list
|
201
|
+
- `property-modifier` - can be equal to `redefines`, `query`, `ordered`(`unordered`), `unique`(`nonunique`)
|
202
|
+
|
203
|
+
Syntax for a `parameter-list`:
|
204
|
+
|
205
|
+
[source,java]
|
206
|
+
----
|
207
|
+
[direction] name:type [multiplicity] [=default] [{property string}]
|
208
|
+
----
|
209
|
+
|
210
|
+
where:
|
211
|
+
- `direction` - can be equal to `in`, `out`, `inout` or `return`
|
212
|
+
|
213
|
+
== import files
|
214
|
+
|
215
|
+
Use `include` special word:
|
216
|
+
|
217
|
+
[source,java]
|
218
|
+
----
|
219
|
+
include path/to/file
|
220
|
+
----
|
221
|
+
|
222
|
+
== Package syntax
|
223
|
+
|
224
|
+
Namespaces
|
225
|
+
Def.-A named element is an element that can have a name and a defined visibility (public, private, protected, package):
|
226
|
+
|
227
|
+
[source,java]
|
228
|
+
----
|
229
|
+
+ => public
|
230
|
+
- => private
|
231
|
+
# => protected
|
232
|
+
~ => package
|
233
|
+
----
|
234
|
+
|
235
|
+
The name of the element and its visibility are optional.
|
236
|
+
|
237
|
+
[source,java]
|
238
|
+
----
|
239
|
+
package Customers {
|
240
|
+
class Insurance {}
|
241
|
+
- class PrivateInsurance {}
|
242
|
+
# class ProtectedInsurance {}
|
243
|
+
}
|
244
|
+
----
|
245
|
+
|
246
|
+
== Code comments
|
247
|
+
|
248
|
+
Use `//` notation for LutaML comments skipped by parser, example:
|
249
|
+
|
250
|
+
[source,java]
|
251
|
+
----
|
252
|
+
// TODO: implement
|
253
|
+
abstract class Pet {}
|
254
|
+
----
|
255
|
+
|
256
|
+
== Comment objects diagram
|
257
|
+
|
258
|
+
Use `\**`(one line comment) or `*| |*`(multiline comment) to create comment object for diagram entry.
|
259
|
+
If this syntax used inside class/enum/association block it will be created for owner of this block.
|
260
|
+
|
261
|
+
[source,java]
|
262
|
+
----
|
263
|
+
** I am a document comment
|
264
|
+
|
265
|
+
*|
|
266
|
+
This is a
|
267
|
+
multiply
|
268
|
+
lines document comment.
|
269
|
+
*|
|
270
|
+
|
271
|
+
class A
|
272
|
+
enum B {
|
273
|
+
** one line enum comment
|
274
|
+
foo
|
275
|
+
*|
|
276
|
+
This is a
|
277
|
+
multiply
|
278
|
+
lines class comment.
|
279
|
+
*|
|
280
|
+
bar
|
281
|
+
}
|
282
|
+
----
|
283
|
+
|
284
|
+
== Syntax comments
|
285
|
+
|
286
|
+
Use `//` to create syntax comment, chars after // will be ignored during processing
|
287
|
+
|
288
|
+
[source,java]
|
289
|
+
----
|
290
|
+
// TODO: attributes
|
291
|
+
class A
|
292
|
+
enum B {
|
293
|
+
// Write docs
|
294
|
+
foo
|
295
|
+
bar
|
296
|
+
}
|
297
|
+
----
|
298
|
+
|
299
|
+
== Value specification
|
300
|
+
|
301
|
+
A value specification indicates one or several values in a model. Examples for value specifications include simple, mathematical expressions, such as 4+2, and expressions with values from the object model, Integer::MAX_INT-1
|
302
|
+
|
303
|
+
[source,java]
|
304
|
+
----
|
305
|
+
class {Class name, if any} {as ref name, optional} {
|
306
|
+
{attribute name} = {attribute value}
|
307
|
+
{attribute name}:{attribute class} = {attribute value}
|
308
|
+
}
|
309
|
+
|
310
|
+
instance :{Class name, if any} {as ref name, optional} {
|
311
|
+
{attribute name} = {attribute value}
|
312
|
+
{attribute name}:{attribute class} = {attribute value}
|
313
|
+
}
|
314
|
+
----
|