Uses of Interface
org.android.activityminer.logic.util.ActivatableComponent

Packages that use ActivatableComponent
org.android.activityminer.app.recognizer GUI - Recognizer service and control activities for live classification in background. 
org.android.activityminer.logic.configuration Logic layer - Global shared preference observer and configuration validator. 
org.android.activityminer.logic.devices Logic layer - Sensor device wrapper and data caches. 
org.android.activityminer.logic.features Logic layer - Feature implementation and the extraction logic. 
org.android.activityminer.logic.timeseries Logic layer - Components for time series segmentation. 
org.android.activityminer.logic.util Logic layer - Utility components. 
org.android.activityminer.model.timeseries Data model - Data types for sensor observations and time series representation. 
 

Uses of ActivatableComponent in org.android.activityminer.app.recognizer
 

Classes in org.android.activityminer.app.recognizer that implement ActivatableComponent
 class RecognizerHelper<T extends Enum<T> & Dimensions>
          The recognition component.
 

Fields in org.android.activityminer.app.recognizer declared as ActivatableComponent
private  ActivatableComponent RecognizerHelper.activationDelegation
          activatable component implementation to delegate to
 

Uses of ActivatableComponent in org.android.activityminer.logic.configuration
 

Classes in org.android.activityminer.logic.configuration that implement ActivatableComponent
 class GlobalSharedPreferenceObserver
          Global singleton instance of a central shared preference observer which is notifying registered shared preference observers about changes.
 

Uses of ActivatableComponent in org.android.activityminer.logic.devices
 

Classes in org.android.activityminer.logic.devices that implement ActivatableComponent
 class AbstractAccelerometerDataSource
          Base class for the accelerometer data source.
 class AccelerometerDataCache
          The data cache to hold accelerometer samples for scanner polls.
 class LinearAccelerometerDataSource
          Own implementation of an linear accelerometer data source using biquadratic filters.
 class LinearDeviceAccelerometerDataSource
          Default implementation of the accelerometer data source.
 class LocationDataCache
          The data cache to hold location samples for scanner polls.
 class LocationDataSource
          Implementation of the location data source, using the location manager to get location information form the gps or network provider.
 

Uses of ActivatableComponent in org.android.activityminer.logic.features
 

Classes in org.android.activityminer.logic.features that implement ActivatableComponent
 class AbstractCutoutFeatureExtractor<T extends Enum<T> & Dimensions>
          The cut/out feature extractor is a feature extractor with an integrated cut-out creator component ObservableCutoutCreator, which is connected to its own in port for sensor observation cut-outs.
 class AbstractFeatureExtractor<T extends Enum<T> & Dimensions>
          The feature extractor for sensor observations is a thread based component.
 class AbstractFeatureExtractorForDBRecordings<T extends Enum<T> & Dimensions>
          A abstract feature extractor implementation to extract features from the labeled time series recordings.
 class FeatureExtractorForAccDBRecordings
          A special feature extractor extension to extract features from the labeled time series recordings.
 class FeatureExtractorForAccSensorObservation
          Feature extractor implementation for accelerometer sensor observations
 class FeatureExtractorForDBRecordings
          A special feature extractor extension to extract features from the labeled time series recordings.
 class FeatureExtractorForSensorObservation
          Feature extractor implementation for sensor observations
 

Fields in org.android.activityminer.logic.features declared as ActivatableComponent
private  ActivatableComponent AbstractFeatureExtractor.activationDelegation
          activatable component implementation to delegate to
 

Uses of ActivatableComponent in org.android.activityminer.logic.timeseries
 

Subinterfaces of ActivatableComponent in org.android.activityminer.logic.timeseries
 interface ObservableSensorScanner<T extends Enum<T> & Dimensions,U>
          Interface for types which are observable for sensor data observations and do act as sensor scanner.
 interface SensorScanner
          Interface for sensor scanner types to be associate with a sensor observation task, which does call the SensorScanner.doScan(Long) Method periodically.
 interface TimerTask
          Interface for the timer task used by the observable sensor observation tasks.
 

Classes in org.android.activityminer.logic.timeseries that implement ActivatableComponent
 class AbstractObservableSensorScanner<T extends Enum<T> & Dimensions,U>
          Generic and abstract implementation of an observable sensor scanner.
 class GenericObservableCutoutCreator<D extends Enum<D> & Dimensions,T>
          The generic observable cut-out creator is a worker thread, which does asynchronously extract fixed size cut-out from cached sensor observations.
 class ObservableAccCutoutCreator
          The implementation of the generic GenericObservableCutoutCreator for the dimension type AccSensorObservationDimensions and numeric data with double precision.
 class ObservableAccSensorScanner
          Implementation of an observable sensor scanner for accelerometer sensor observations.
 class ObservableCutoutCreator
          The implementation of the generic GenericObservableCutoutCreator for the dimension type SensorObservationDimensions and numeric data with double precision.
 class ObservableSensorScannerImpl
          Implementation of an observable sensor scanner for sensor data observations from all known sensors.
 class SensorObservationTask
          This class does implement a runnable task to be executed delayed by an OS handler.
 

Fields in org.android.activityminer.logic.timeseries declared as ActivatableComponent
private  ActivatableComponent GenericObservableCutoutCreator.activationDelegation
          activatable component implementation to delegate to
private  ActivatableComponent AbstractObservableSensorScanner.activationDelegation
          activatable component implementation to delegate to
 

Uses of ActivatableComponent in org.android.activityminer.logic.util
 

Classes in org.android.activityminer.logic.util that implement ActivatableComponent
 class AbstractActivatableComponentImpl
          Implementation of the activatable component.
 

Uses of ActivatableComponent in org.android.activityminer.model.timeseries
 

Classes in org.android.activityminer.model.timeseries that implement ActivatableComponent
 class SensorObservationCache<T extends Enum<T> & Dimensions,U>
          Cache for sensor observations.