Sign in
eclipse
/
gerrit
/
epsilon
/
org.eclipse.epsilon
/
00a2261600ba4ac7180db6c4e110b75e4d3d6eb9
/
.
/
examples
/
org.eclipse.epsilon.examples.oo2dbsync
/
db.emf
blob: b7bdd465d5684bcd420fff6d2ac6291d685dace4 [
file
]
package
db
;
class
Database
{
val
Table
[*]
tables
;
}
class
Table
{
attr
String
name
;
val
Column
[*]
columns
;
}
class
Column
{
attr
String
name
;
attr
String
type
;
}