Sign in
eclipse
/
epsilon
/
org.eclipse.epsilon
/
refs/heads/hhoyos/iEvl
/
.
/
examples
/
org.eclipse.epsilon.examples.mdr
/
queryuml14.eol
blob: 8dc34373c4996843c4d8e56155fc8a26651fed19 [
file
] [
log
] [
blame
]
// Queries the UML 1.4 metamodel itself
for
(
c
in
Class
.
all
)
{
c
.
name
.
println
();
for
(
f
in
c
.
contents
)
{
f
.
name
.
println
(
" -"
,
" : "
+
f
.
getType
().
name
);
}
}