You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ var metamodel = runtime.require('metamodel');
102
102
metamodel.schema({
103
103
'_name':'Jedi',
104
104
'firstName':'property',
105
-
'lastName':'property',
105
+
'lastName':'property'
106
106
});
107
107
108
108
// create your model
@@ -126,6 +126,10 @@ With [MSON](https://system-runtime.readme.io/docs/design-your-model#section-mson
126
126
127
127
[MSON](https://system-runtime.readme.io/docs/design-your-model#section-mson) is based on [UML](http://uml.org), so learning it is very easy.
128
128
129
+
#### A component factory
130
+
131
+
Runtime uses the [Model-Driven Architecture](http://www.omg.org/mda/) approach to create classes based on your design. Use them to instantiate your components.
132
+
129
133
#### A NoSQL Database
130
134
131
135
Runtime acts as an ODM (Object-Document Mapper) to manage your components as NoSQL Documents.
@@ -134,10 +138,6 @@ Runtime has a micro NoSQL Database that stores your components and you can expor
134
138
135
139
Thanks to Runtime NoSQL Database, you can compose your model with an another one.
136
140
137
-
#### A component factory
138
-
139
-
Runtime uses the [Model-Driven Architecture](http://www.omg.org/mda/) approach to create classes based on your design. Use them to instantiate your components.
140
-
141
141
#### A workflow engine
142
142
143
143
Runtime checks at runtime if the signatures of invoked methods are compliant with your model.
0 commit comments