Constraint Descriptor : constraint_datatypes_PN (type: ERROR, kind: )

Constraint : constraint_datatypes_PN

Constraint Name
constraint_datatypes_PN (type: ERROR, kind: )
Constraint Class
PN
Package
datatypes
Description
delimiter attributes must not contains LS as qualifier, as well as for family, given, prefix and suffix (from the documentation of the PN datatypes on the schema datatypes-base.xsd)
OCL
self.delimiter->forAll(enxp :EnDelimiter | enxp.qualifier->forAll(qual : String | not enxp.matches(qual, '^LS$')) ) and 
self.family->forAll(enxp :EnFamily | enxp.qualifier->forAll(qual : String | not enxp.matches(qual, '^LS$')) ) and 
self.given->forAll(enxp :EnGiven | enxp.qualifier->forAll(qual : String | not enxp.matches(qual, '^LS$')) ) and 
self.prefix->forAll(enxp :EnPrefix | enxp.qualifier->forAll(qual : String | not enxp.matches(qual, '^LS$')) ) and 
self.suffix->forAll(enxp :EnSuffix | enxp.qualifier->forAll(qual : String | not enxp.matches(qual, '^LS$')) )