Back to project page final_project_android.
The source code is released under:
MIT License
If you think the Android project final_project_android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.geminnu.hexagon; /*ww w. jav a 2 s . c o m*/ public class BioSensorEvent { //Which biosensor is responsible for the event private BioSensor mSensor; //The current reading of the biosensor private float mValue; //Constructor of the event BioSensorEvent(BioSensor sensor, float value) { this.mSensor = sensor; this.mValue = value; } //Getters public BioSensor getSensor() { return mSensor; } public float getValue() { return mValue; } }