Back to project page android-wav-mixer.
The source code is released under:
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 Copyright (C) 2014 Nathan Sizemore <nathanrsizemore@gmail.com> Everyone is permitted to copy and distribute verbatim or modified ...
If you think the Android project android-wav-mixer 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.nathansizemore.beatmaker.audiomixer; /*w ww.j av a2 s .c o m*/ public class ClipAddEvent { public int channel; public Sample clip; public int measure; public int downBeat; public ClipAddEvent(int channel, Sample clip, int measure, int downBeat) { this.channel = channel; this.clip = clip; this.measure = measure; this.downBeat = downBeat; } }