0

I have a sensor class, Input class which is the subclass of Process class and a SensingData class. I want to associate the Input class to the sensing data class saying that input is the sensing data. can i do it by creating an object property hasData like inupt hasData SensingData? or do i have to use the annotation property??

faiza
  • 45
  • 4

1 Answers1

0

You can create hasData as an object property with domain Input and range SensingData.

Ignazio
  • 10,504
  • 1
  • 14
  • 25
  • no i have process class which has two sub classes input and output and sensing data and sensor is a different class. – faiza Aug 29 '14 at 02:38