Exemplo n.º 1
0
class FeatureTyping(Relationship):
    properties: EdgeProperties = EdgeProperties(
        shape={"end": "feature_typing"})
Exemplo n.º 2
0
class Containment(Relationship):
    properties: EdgeProperties = EdgeProperties(shape={"start": "containment"})
Exemplo n.º 3
0
class DirectedAssociation(Relationship):
    properties: EdgeProperties = EdgeProperties(
        shape={"end": "directed_association"}, )
Exemplo n.º 4
0
class Association(Relationship):
    properties: EdgeProperties = EdgeProperties(shape={"end": "association"})
Exemplo n.º 5
0
class Composition(Relationship):
    properties: EdgeProperties = EdgeProperties(shape={"start": "composition"})
Exemplo n.º 6
0
class Aggregation(Relationship):
    properties: EdgeProperties = EdgeProperties(shape={"start": "aggregation"})
Exemplo n.º 7
0
class Subsetting(Relationship):
    properties: EdgeProperties = EdgeProperties(shape={"end": "subsetting"})
Exemplo n.º 8
0
class Redefinition(Relationship):
    properties: EdgeProperties = EdgeProperties(shape={"end": "redefinition"})
Exemplo n.º 9
0
class OwnedBy(Relationship):
    properties: EdgeProperties = EdgeProperties(shape={"end": "containment"})
Exemplo n.º 10
0
class Generalization(Relationship):
    properties: EdgeProperties = EdgeProperties(
        shape={"end": "generalization"})