Modeling Quality

Defining quality attributes.

  • basic feature with cost and mass.
abstract Feature
cost : integer
mass : integer
  • feature that impacts comfort
abstract ComfortFeature : Feature
comfort : integer
  • feature that impacts fuel consumption
abstract FuelFeature : ComfortFeature
fuel : integer

Modeling Quality 2