Uses of Interface
de.unikassel.android.sdcframework.devices.facade.SensorDevice

Packages that use SensorDevice
de.unikassel.android.sdcframework.devices Does contain the sensor device specific classes, like the sensor devices, the device manager and the device factory. 
de.unikassel.android.sdcframework.devices.facade Provides the interfaces for the device package. 
 

Uses of SensorDevice in de.unikassel.android.sdcframework.devices
 

Classes in de.unikassel.android.sdcframework.devices that implement SensorDevice
 class AbstractAndroidSensorDevice
          Base class for an Android Sensor type.
 class AbstractLocationDevice
          Implementation of an abstract location provider based sensor device as sample providing device.
 class AbstractSensorDevice
          Base class for any sensor device type.
 class AccelerometerDevice
          Implementation of the accelerometer sensor device.
 class AudioDevice
          Implementation of the virtual audio sensor device.
 class BluetoothDevice
          Implementation of the bluetooth sensor device.
 class GPSDevice
          Implementation of the GPS sensor device.
 class GSMDevice
          Implementation of the GSM sensor device as active device providing sensor data for the scanner.
 class GyroscopeDevice
          Implementation of the gyroscope sensor device.
 class LightDevice
          Implementation of the light sensor device.
 class MagneticFieldDevice
          Implementation of the magnetic field sensor device.
 class NetworkLocationDevice
          Implementation of the network location sensor device using the location manager to get cell tower or wlan based location information.
 class OrientationDevice
          Implementation of the orientation sensor device.
 class PressureDevice
          Implementation of the pressure sensor device.
 class ProximityDevice
          Implementation of the proximity sensor device.
 class SamplingCausingAndroidSensorDevice
          Base class for Android Sensor based devices, which do cause sampling in case of sensor data change events.
 class ScannerStateAwareSensorDevice
          This class is an extension of the abstract sensor device for such devices, which have to be aware of the scanner running state.
 class SystemBroadcastReceivingDevice
          Abstract base class for sensor device which have to react on system state changes signaled by broadcasts.
 class TagDevice
          Implementation of the virtual tag sensor device.
 class TemperatureDevice
          Implementation of the temperature sensor device.
 class TimeProviderDevice
          Implementation of the the time provider synchronization state observing sensor device.
 class TwitterDevice
          Implementation of the virtual twitter sensor device.
 class VirtualSensorDevice
          Base class for virtual sensor devices which does not refer to a physical sensor in the system.
 class WifiDevice
          Implementation of the wifi sensor device.
 

Fields in de.unikassel.android.sdcframework.devices declared as SensorDevice
private  SensorDevice AbstractSensorDeviceScanner.device
          the scanned sensor device
 

Fields in de.unikassel.android.sdcframework.devices with type parameters of type SensorDevice
private  Map<SensorDeviceIdentifier,SensorDevice> SensorDeviceManagerImpl.mapDevices
          The sensor device map
 

Methods in de.unikassel.android.sdcframework.devices that return SensorDevice
 SensorDevice SensorDeviceFactoryImpl.createSensorDevice(SensorDeviceIdentifier deviceIdentifier, Context applicationContext)
           
private  SensorDevice SensorDeviceFactoryImpl.doCreateSensorDevice(SensorDeviceIdentifier deviceIdentifier, Context applicationContext)
          Internal device creation method
 SensorDevice AbstractSensorDeviceScanner.getDevice()
           
 

Methods in de.unikassel.android.sdcframework.devices that return types with arguments of type SensorDevice
 Collection<SensorDevice> SensorDeviceManagerImpl.getDevices()
          Getter for the devices
private  Map<SensorDeviceIdentifier,SensorDevice> SensorDeviceManagerImpl.getMapDevices()
          Getter for the devices map
 

Methods in de.unikassel.android.sdcframework.devices with parameters of type SensorDevice
protected  boolean WifiDeviceScanner.isCompatibleDevice(SensorDevice device)
           
protected  boolean ContentProviderDeviceScanner.isCompatibleDevice(SensorDevice device)
           
protected  boolean SampleTakingDeviceScanner.isCompatibleDevice(SensorDevice device)
           
protected  boolean BluetoothDeviceScanner.isCompatibleDevice(SensorDevice device)
           
protected abstract  boolean AbstractSensorDeviceScanner.isCompatibleDevice(SensorDevice device)
          Validation method for a compatible device type
 void AbstractSensorDeviceScanner.setDevice(SensorDevice device, Context context)
           
 boolean SensorDeviceConfigurationUpdateVisitor.visit(SensorDevice device)
           
 

Method parameters in de.unikassel.android.sdcframework.devices with type arguments of type SensorDevice
private  void SensorDeviceManagerImpl.setMapDevices(Map<SensorDeviceIdentifier,SensorDevice> mapDevices)
          Setter for the devices map
 

Uses of SensorDevice in de.unikassel.android.sdcframework.devices.facade
 

Subinterfaces of SensorDevice in de.unikassel.android.sdcframework.devices.facade
 interface SensorDeviceComposite
          Interface for a composition of sensor devices.
 

Methods in de.unikassel.android.sdcframework.devices.facade that return SensorDevice
 SensorDevice SensorDeviceFactory.createSensorDevice(SensorDeviceIdentifier deviceIdentifier, Context appContext)
          Sensor device creation
 SensorDevice SensorDeviceScanner.getDevice()
          Getter for the sensor device
 

Methods in de.unikassel.android.sdcframework.devices.facade that return types with arguments of type SensorDevice
 Collection<SensorDevice> SensorDeviceComposite.getDevices()
          Getter for the sub devices
 

Methods in de.unikassel.android.sdcframework.devices.facade with parameters of type SensorDevice
 boolean SensorDeviceComposite.addSensorDevice(SensorDevice device)
          To add a device to the composite type
 void SensorDeviceScanner.setDevice(SensorDevice device, Context context)
          Setter for the sensor device
 boolean SensorDeviceVisitor.visit(SensorDevice device)
          Method for device visitation.