2009-01-09 1.2.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 This package is part of the org.eclipse.soda.dk.base.device project. 
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.device.servlet This package is part of the org.eclipse.soda.dk.device.device.servlet 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.swt This package is part of the org.eclipse.soda.dk.device.swt 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.profile.swt This package is part of the org.eclipse.soda.dk.profile.swt 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, ChannelService channel, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, channel, new value and old value parameters.
 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, ChannelService channel, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, channel, new value and old value parameters.
 void AdapterTest.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.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)
          Measurement changed with the specified source, time stamp, new value and old value parameters.
 

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 MeasurementCommand.measurement
          Define the measurement (MeasurementService) field.
protected  MeasurementService SimpleMeasurementCommand.measurement
          Define the measurement (MeasurementService) field.
 

Methods in org.eclipse.soda.dk.command that return MeasurementService
 MeasurementService MeasurementCommand.getMeasurement()
          Gets the measurement (MeasurementService) value.
 MeasurementService SimpleMeasurementCommand.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, ChannelService channel, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, channel, new value and old value parameters.
 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 MeasurementCommand.setMeasurement(MeasurementService measurement)
          Sets the measurement value.
 void SimpleMeasurementCommand.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
           
 class ConcreteMeasurementFieldMeasurement
           
 

Constructors in org.eclipse.soda.dk.concrete.measurement with parameters of type MeasurementService
ConcreteMeasurementFieldMeasurement(java.lang.String key, MeasurementService measurement, java.lang.String fieldName)
          Constructs an instance of this class from the specified key, measurement and field name parameters.
ConcreteMeasurementFieldMeasurement(java.lang.String key, java.lang.Object value, MeasurementService measurement, java.lang.String fieldName)
          Constructs an instance of this class from the specified key, value, measurement and field name parameters.
 

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

Methods in org.eclipse.soda.dk.device that return MeasurementService
 MeasurementService Device.getCapabilities()
          Defines the Capabilities measurement.
 MeasurementService Container.getCapabilities()
          Defines the Capabilities measurement.
 MeasurementService Device.getConfiguration()
          Defines the Configuration measurement.
 MeasurementService Container.getConfiguration()
          Defines the Configuration measurement.
 MeasurementService Container.getMeasurement(java.lang.String key)
          Perform the getMeasurement method and return the MeasurementService result.
 MeasurementService Device.getStatus()
          Defines the Status measurement.
 MeasurementService Container.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, ChannelService channel, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, channel, new value and old value parameters.
 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.device.servlet
 

Methods in org.eclipse.soda.dk.device.device.servlet with parameters of type MeasurementService
 void DeviceDeviceServlet.processMeasurement(DeviceServletContext context, MeasurementService measurement, boolean edit)
          Process measurement with the specified context, measurement and edit parameters.
 void DeviceDeviceServlet.processMeasurementPage(DeviceServletContext context, MeasurementService measurement, java.lang.String operation)
          Process measurement page with the specified context, measurement and operation parameters.
 

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

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

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

Methods in org.eclipse.soda.dk.device.swt that return MeasurementService
 MeasurementService MeasurementBridge.getMeasurement()
          Gets the measurement (MeasurementService) value.
 

Methods in org.eclipse.soda.dk.device.swt with parameters of type MeasurementService
 void MeasurementBridge.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.
 

Constructors in org.eclipse.soda.dk.device.swt with parameters of type MeasurementService
MeasurementBridge(DeviceSwt parent, org.eclipse.swt.widgets.TableItem tableItem, MeasurementService measurement)
          Constructs an instance of this class from the specified table item and control parameters.
 

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, ChannelService channel, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, channel, new value and old value parameters.
 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 MeasurementFieldMeasurement
           
 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 MeasurementFieldMeasurement.measurement
          Define the measurement (MeasurementService) field.
protected  MeasurementService ChildMeasurement.measurement
          Define the measurement (MeasurementService) field.
 

Methods in org.eclipse.soda.dk.measurement that return MeasurementService
 MeasurementService MeasurementFieldMeasurement.getMeasurement()
          Gets the measurement (MeasurementService) value.
 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 MeasurementFieldMeasurement.measurementChanged(MeasurementService source, java.lang.Object timestamp, ChannelService channel, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, channel, new value and old value parameters.
 void MeasurementListeners.measurementChanged(MeasurementService source, java.lang.Object timestamp, ChannelService channel, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, channel, new value and old value parameters.
 void Measurements.measurementChanged(MeasurementService source, java.lang.Object timestamp, ChannelService channel, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, channel, new value and old value parameters.
 void MeasurementFieldMeasurement.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 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 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 MeasurementFieldMeasurement.setMeasurement(MeasurementService measurement)
          Sets the measurement value.
 void ChildMeasurement.setMeasurement(MeasurementService measurement)
          Sets the measurement value.
protected  void Measurements.setMeasurements(MeasurementService[] measurements)
          Sets the measurements value.
 

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.
MeasurementFieldMeasurement(java.lang.String key, MeasurementService measurement, java.lang.String fieldName)
          Constructs an instance of this class from the specified key, measurement and field name parameters.
MeasurementFieldMeasurement(java.lang.String key, java.lang.Object value, MeasurementService measurement, java.lang.String fieldName)
          Constructs an instance of this class from the specified key, value, measurement and field name 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, ChannelService channel, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, channel, new value and old value parameters.
 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 MultiplexMeasurementListener.measurementChanged(MeasurementService source, java.lang.Object timestamp, ChannelService channel, java.lang.Object newValue, java.lang.Object oldValue)
          This method is fired to all Listeners each time the value of the measurement changes.
 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, ChannelService channel, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, channel, new value and old value parameters.
 void Profile.measurementChanged(MeasurementService source, java.lang.Object timestamp, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, time stamp, new value and old value parameters.
 

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

Methods in org.eclipse.soda.dk.profile.swt with parameters of type MeasurementService
 void MeasurementBridge.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, ChannelService channel, java.lang.Object newValue, java.lang.Object oldValue)
          Measurement changed with the specified source, timestamp, channel, new value and old value parameters.
 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.
 


2009-01-09 1.2.0

Copyright (c) 2009 IBM. See license in Legal section.