1.0.0

Uses of Interface
org.eclipse.soda.dk.measurement.service.MeasurementService

Packages that use MeasurementService
org.eclipse.soda.dk.adapter This package is part of the org.eclipse.soda.dk.adapter project. 
org.eclipse.soda.dk.adapter.test This package is part of the org.eclipse.soda.dk.adapter.test project. 
org.eclipse.soda.dk.agent.test This package is part of the org.eclipse.soda.dk.agent.test project. 
org.eclipse.soda.dk.base.device   
org.eclipse.soda.dk.command This package is part of the org.eclipse.soda.dk.device project. 
org.eclipse.soda.dk.concrete.measurement This package is part of the org.eclipse.soda.dk.concrete project. 
org.eclipse.soda.dk.device This package is part of the org.eclipse.soda.dk.device project. 
org.eclipse.soda.dk.device.service This package is part of the org.eclipse.soda.dk.device.service project. 
org.eclipse.soda.dk.device.test This package is part of the org.eclipse.soda.dk.device.test project. 
org.eclipse.soda.dk.device.testcase This package is part of the org.eclipse.soda.dk.device.testcase project. 
org.eclipse.soda.dk.measurement This package is part of the org.eclipse.soda.dk.device project. 
org.eclipse.soda.dk.measurement.computed This package is part of the org.eclipse.soda.dk.device project. 
org.eclipse.soda.dk.measurement.service This package is part of the org.eclipse.soda.dk.device.service project. 
org.eclipse.soda.dk.profile This package is part of the org.eclipse.soda.dk.profile project. 
org.eclipse.soda.dk.wire This package is part of the org.eclipse.soda.dk.device project. 
 

Uses of MeasurementService in org.eclipse.soda.dk.adapter
 

Methods in org.eclipse.soda.dk.adapter with parameters of type MeasurementService
 void Adapter.initializeMeasurement(MeasurementService measurement)
          Initialize measurement with the specified measurement parameter.
 void Adapter.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, new value and old value parameters.
 

Uses of MeasurementService in org.eclipse.soda.dk.adapter.test
 

Methods in org.eclipse.soda.dk.adapter.test with parameters of type MeasurementService
 void AdapterTest.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          This method is fired to all Listeners each time the value of the measurement changes.
 

Uses of MeasurementService in org.eclipse.soda.dk.agent.test
 

Methods in org.eclipse.soda.dk.agent.test with parameters of type MeasurementService
 void AgentTest.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          This method is fired to all Listeners each time the value of the measurement changes.
 

Uses of MeasurementService in org.eclipse.soda.dk.base.device
 

Methods in org.eclipse.soda.dk.base.device that return MeasurementService
 MeasurementService BaseDevice.getCapabilities()
          Defines the Capabilities measurement.
 MeasurementService BaseDevice.getConfiguration()
          Defines the Configuration measurement.
 MeasurementService BaseDevice.getStatus()
          Defines the Status measurement.
 

Uses of MeasurementService in org.eclipse.soda.dk.command
 

Fields in org.eclipse.soda.dk.command declared as MeasurementService
protected  MeasurementService SimpleMeasurementCommand.measurement
          Define the measurement (MeasurementService) field.
protected  MeasurementService MeasurementCommand.measurement
          Define the measurement (MeasurementService) field.
 

Methods in org.eclipse.soda.dk.command that return MeasurementService
 MeasurementService SimpleMeasurementCommand.getMeasurement()
          Gets the measurement (MeasurementService) value.
 MeasurementService MeasurementCommand.getMeasurement()
          Gets the measurement (MeasurementService) value.
 

Methods in org.eclipse.soda.dk.command with parameters of type MeasurementService
 void Command.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          This method is fired to all Listeners each time the value of the measurement changes.
 void SimpleMeasurementCommand.setMeasurement(MeasurementService measurement)
          Sets the measurement value.
 void MeasurementCommand.setMeasurement(MeasurementService measurement)
          Sets the measurement value.
 

Constructors in org.eclipse.soda.dk.command with parameters of type MeasurementService
MeasurementCommand(java.lang.String key, MessageService message, TransformService transform, ParameterService parameter, MeasurementService measurement)
          Constructs an instance of this class from the specified key, message, transform and parameter parameters.
SimpleMeasurementCommand(java.lang.String key, MessageService message, TransformService transform, ParameterService parameter, MeasurementService measurement)
          Constructs an instance of this class from the specified key, message, transform, parameter and measurement parameters.
 

Uses of MeasurementService in org.eclipse.soda.dk.concrete.measurement
 

Classes in org.eclipse.soda.dk.concrete.measurement that implement MeasurementService
 class ConcreteMeasurement
           
 

Uses of MeasurementService in org.eclipse.soda.dk.device
 

Methods in org.eclipse.soda.dk.device that return MeasurementService
 MeasurementService Container.getCapabilities()
          Defines the Capabilities measurement.
 MeasurementService Device.getCapabilities()
          Defines the Capabilities measurement.
 MeasurementService Container.getConfiguration()
          Defines the Configuration measurement.
 MeasurementService Device.getConfiguration()
          Defines the Configuration measurement.
 MeasurementService Container.getMeasurement(java.lang.String key)
          Perform the getMeasurement method and return the MeasurementService result.
 MeasurementService Container.getStatus()
          Defines the Status measurement.
 MeasurementService Device.getStatus()
          Defines the Status measurement.
 

Methods in org.eclipse.soda.dk.device with parameters of type MeasurementService
 void NotificationController.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, new value and old value parameters.
 

Uses of MeasurementService in org.eclipse.soda.dk.device.service
 

Methods in org.eclipse.soda.dk.device.service that return MeasurementService
 MeasurementService DeviceRegistryService.getMeasurement(java.lang.String key)
          Perform the getMeasurement method and return the MeasurementService result.
 MeasurementService DeviceService.getMeasurement(java.lang.String key)
          Perform the getMeasurement method and return the MeasurementService result.
 

Uses of MeasurementService in org.eclipse.soda.dk.device.test
 

Methods in org.eclipse.soda.dk.device.test with parameters of type MeasurementService
 void DeviceTest.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          This method is fired to all Listeners each time the value of the measurement changes.
 

Uses of MeasurementService in org.eclipse.soda.dk.device.testcase
 

Fields in org.eclipse.soda.dk.device.testcase declared as MeasurementService
protected  MeasurementService DeviceTestcase.measurementReceived
          Define the measurement received (MeasurementService) field.
 

Methods in org.eclipse.soda.dk.device.testcase that return MeasurementService
 MeasurementService DeviceTestcase.getMeasurementReceived()
          Gets the measurement received (MeasurementService) value.
 

Methods in org.eclipse.soda.dk.device.testcase with parameters of type MeasurementService
 void DeviceTestcase.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, new value and old value parameters.
 void DeviceTestcase.setMeasurementReceived(MeasurementService measurementReceived)
          Sets the measurement received value.
 

Uses of MeasurementService in org.eclipse.soda.dk.measurement
 

Classes in org.eclipse.soda.dk.measurement that implement MeasurementService
 class ChildMeasurement
           
 class CommandMeasurement
          The CommandMeasurement class implements the MeasurementService interface.
 class DataMeasurement
          The DataMeasurement class implements the MeasurementService interface.
 class Measurement
          The DkMeasurement class implements the MeasurementService interface.
 class Measurements
          The Measurements class implements the MeasurementService interface.
 class MethodMeasurement
           
 class ReadMeasurement
           
 class ReadOnlyMeasurement
           
 class SignalMeasurement
          The SignalMeasurement class implements the MeasurementService interface.
 class UnitsMeasurement
          The UnitsMeasurement class implements the MeasurementService interface.
 

Fields in org.eclipse.soda.dk.measurement declared as MeasurementService
protected  MeasurementService ChildMeasurement.measurement
          Define the measurement (MeasurementService) field.
 

Methods in org.eclipse.soda.dk.measurement that return MeasurementService
 MeasurementService ChildMeasurement.getMeasurement()
          Gets the measurement (MeasurementService) value.
 MeasurementService[] Measurements.getMeasurements()
          Gets the org.eclipse.soda.dk.measurement.service.MeasurementService [] measurements property value.
 

Methods in org.eclipse.soda.dk.measurement with parameters of type MeasurementService
 void Measurements.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          This method is fired to all Listeners each time the value of the measurement changes.
 void MeasurementListeners.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          This method is fired to all Listeners each time the value of the measurement changes.
 void ChildMeasurement.setMeasurement(MeasurementService measurement)
          Sets the measurement value.
protected  void Measurements.setMeasurements(MeasurementService[] measurements)
          Sets the measurements property.
 

Constructors in org.eclipse.soda.dk.measurement with parameters of type MeasurementService
ChildMeasurement(java.lang.String key, java.lang.Object value, UnitsService units, TransformService transform, SignalService signal, CommandService readCommand, CommandService writeCommand, MeasurementService measurement)
          Constructs an instance of this class from the specified key, value, units, transform, signal, read command and write command parameters.
Measurements(java.lang.String key, java.lang.Object value, MeasurementService[] measurements)
          Constructs an Measurements object using the input parameter(s).
 

Uses of MeasurementService in org.eclipse.soda.dk.measurement.computed
 

Classes in org.eclipse.soda.dk.measurement.computed that implement MeasurementService
 class ControlsMeasurement
           
 class CountMeasurement
           
 class TotalMeasurement
           
 

Methods in org.eclipse.soda.dk.measurement.computed with parameters of type MeasurementService
 void ControlsMeasurement.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, new value and old value parameters.
 

Uses of MeasurementService in org.eclipse.soda.dk.measurement.service
 

Methods in org.eclipse.soda.dk.measurement.service with parameters of type MeasurementService
 void MeasurementListener.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          This method is fired to all Listeners each time the value of the measurement changes.
 

Uses of MeasurementService in org.eclipse.soda.dk.profile
 

Methods in org.eclipse.soda.dk.profile with parameters of type MeasurementService
 void Profile.initializeMeasurement(MeasurementService measurement)
          Initialize measurement with the specified measurement parameter.
 void Profile.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, new value and old value parameters.
 

Uses of MeasurementService in org.eclipse.soda.dk.wire
 

Methods in org.eclipse.soda.dk.wire with parameters of type MeasurementService
 void Wire.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          This method is fired to all Listeners each time the value of the measurement changes.
 


1.0.0

Copyright (c) 1999, 2007 IBM