Back to project page swazam.
The source code is released under:
MIT License
If you think the Android project swazam 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 at.ac.tuwien.swa13.swazam.library; /*from ww w .ja v a 2 s .c om*/ import ac.at.tuwien.infosys.swa.audio.Fingerprint; public interface ISong { public void createFingerprint(); public boolean matchFingerprint(Fingerprint fingerprint); public String getAlbum(); public String getArtist(); public String getTitle(); }