Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 12ab8e783ec6cefe9c8d4580457f17062e8764ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
@namespace(uri="Entity", prefix="Entity")
package Entity;


class System {
  val Entity[*]#system entity;
}

class Entity {
  attr String name;
  ref System#entity system;
  attr Boolean inDomain;
}

Back to the top