Android Open Source - android-binarual-beats-generator Voice






From Project

Back to project page android-binarual-beats-generator.

License

The source code is released under:

GNU General Public License

If you think the Android project android-binarual-beats-generator listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*******************************************************************************
 * Copyright (c) 2010 Robert Bermani./*from   w  ww.j  a  va  2 s  . c  o  m*/
 * All rights reserved. This program and its accompanying materials
 * are made available under the terms of the GNU Public License v3.0
 * which is included with this distribution and is available at
 * http://www.gnu.org/licenses/gpl.html
 * 
 * Contributors:
 *     Robert Bermani - initial API and implementation
 ******************************************************************************/
package rbermani.android.binaural;

public class Voice {
  
  public Voice(VoiceType type, double amplitude, double carrierFrequency,
      double beatFrequency) {

    this.type = type;
    this.amplitude = amplitude;
    this.carrierFrequency = carrierFrequency;
    this.beatFrequency = beatFrequency;
  }
  
  public double getAmplitude() {
    return amplitude;
  }
  public void setAmplitude(double amplitude) {
    this.amplitude = amplitude;
  }
  public double getCarrierFrequency() {
    return carrierFrequency;
  }
  public void setCarrierFrequency(double carrierFrequency) {
    this.carrierFrequency = carrierFrequency;
  }
  public double getBeatFrequency() {
    return beatFrequency;
  }
  public void setBeatFrequency(double beatFrequency) {
    this.beatFrequency = beatFrequency;
  }
  public VoiceType getType() {
    return type;
  }
  
  
  private VoiceType type;
  
  private double amplitude;
  private double carrierFrequency;
  private double beatFrequency;
  
}




Java Source Code List

rbermani.android.binaural.AboutActivity.java
rbermani.android.binaural.AndroidAudioDevice.java
rbermani.android.binaural.BinauralManager.java
rbermani.android.binaural.MainActivity.java
rbermani.android.binaural.PreferencesDlg.java
rbermani.android.binaural.VoiceType.java
rbermani.android.binaural.Voice.java
rbermani.android.widgets.SeekBarPreference.java