Ejemplo n.º 1
0
 /**
  * Gets the change in degrees required to initiate a watchHeading success callback.
  *
  * @return double
  */
 public double getFilter() {
   return JsoHelper.getAttributeAsDouble(jsObj, "filter");
 }
Ejemplo n.º 2
0
 /**
  * The current position of the file pointer
  *
  * @return
  */
 public double getPosition() {
   return JsoHelper.getAttributeAsDouble(jsObj, "position");
 }
Ejemplo n.º 3
0
 /**
  * Gets how often to retrieve the compass heading, in milliseconds. Default value is 100.
  *
  * @return double
  */
 public double getFrequency() {
   return JsoHelper.getAttributeAsDouble(jsObj, "frequency");
 }
Ejemplo n.º 4
0
 /**
  * The length of the file to be written.
  *
  * @return
  */
 public double getLength() {
   return JsoHelper.getAttributeAsDouble(jsObj, "length");
 }