Back to project page AllBinary-Platform-Game.
The source code is released under:
AllBinary Open License Version 1.0 Copyright (c) 2011 AllBinary. By agreeing to this license you and any business entity you represent are legally bound to this legal agreement. You may transmit, m...
If you think the Android project AllBinary-Platform-Game listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* *Copyright (c) 2002 All Binary/*from w w w. j ava2 s . com*/ *All Rights Reserved. *Don't Duplicate or Distributed. *Trade Secret Information *For Internal Use Only *Confidential *Unpublished * *Created By: Travis Berthelot *Date: 11/29/02 * * *Modified By When ? * */ package org.allbinary.media.audio; import org.allbinary.media.audio.CompositeSound; import org.allbinary.media.audio.Sound; public class TestSound extends CompositeSound { private static Sound soundInterface = new TestSound(); private TestSound() { super("resource:/wav/test.wav"); } public static Sound getInstance() { return soundInterface; } }