Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 51e09916ea6a3946f77696a5c037398872ecafd8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Model Jc

This model description is not a real EMF artifact. It was generated by the
org.eclipse.emf.examples.generator.validator plug-in to illustrate how EMF's
code generator can be extended.
This can be disabled with -vmargs -Dorg.eclipse.emf.examples.generator.validator=false.

Package joincolumns <http://www.eclipse.org/emf/teneo/samples/emf/annotations/joincolumns>

  Class Parent -> Person
    Reference children : Child<<0..*>>

  Class Child -> Person

  Class Person
    Attribute firstName : EString
    Attribute lastName : EString
    Reference friends : Person<<0..*>>
    Reference oppositeFriends : Person<<0..*>>

  Class House
    Reference owner : Parent
    Reference visitors : Person<<0..*>>

Back to the top