Back to project page yammp.
The source code is released under:
GNU Lesser General Public License
If you think the Android project yammp 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 org.yammp.util; //from w ww .j av a 2 s. c om import android.content.ContextWrapper; public class ServiceToken { ContextWrapper mWrappedContext; ServiceToken(ContextWrapper context) { mWrappedContext = context; } }