{ * File: W29.sml.txt * Author: Michael Schrefl, Bernd Neumayr, Manfred Jeusfeld * Created: 15-Nov-2013/M.Jeusfeld (15-Nov-2013/M.Jeusfeld) * ------------------------------------------------------ * derived from E4 * negative example for axiom 5a (Functional constraint on factual attributes) * The attribute Mileage is functions but myV50 has two values (12km,13km), * the latter being inherited from its class VolvoV50 * } Mileage in Functional,ALABEL end MetricLinearMeasure in OBJECT end VolvoV50 in OBJECT with linkDR m1: "13km" end VolvoV50!m1 with sourcelevel s: 1 targetlevel t: 0 label l: Mileage end km in OBJECT with IN c1: MetricLinearMeasure end myV50 in OBJECT with IN c1: VolvoV50 linkDR m1: "12km" end "12km" in OBJECT with IN c1: km end "13km" in OBJECT with IN c1: km end myV50!m1 with sourcelevel s: 0 targetlevel t: 0 label l: Mileage end