Android Open Source - abc-simple Sound Image






From Project

Back to project page abc-simple.

License

The source code is released under:

GNU General Public License

If you think the Android project abc-simple 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

package com.johnnycarlos.abc_simple;
/* w ww .  ja  v a2  s. c o  m*/

public class SoundImage {
    
    public int poolNumber;
    public int imageNumber;
    
    public SoundImage(int s, int i){
        poolNumber = s;
        imageNumber = i;
    }
    
}




Java Source Code List

com.johnnycarlos.abc_simple.MainActivity.java
com.johnnycarlos.abc_simple.SoundImage.java