Sign in
eclipse
/
gerrit
/
www.eclipse.org
/
epsilon
/
1823795732b3dcf89d1c170ba10e000c5e2667c1
/
.
/
mkdocs
/
docs
/
live
/
examples
/
pdl.emf
blob: 5acc1a02ca5b82929e99dfad827535d7061604f0 [
file
] [
log
] [
blame
]
@namespace
(
uri
=
"pdl"
,
prefix
=
""
)
package
pdl
;
class
Project
{
attr
String
title
;
val
Deliverable
[*]
deliverables
;
}
class
Deliverable
{
attr
String
title
;
attr
int
due
;
ref
Person
lead
;
}
class
Person
{
attr
String
name
;
}