Back to project page DroidBilling.
The source code is released under:
MIT License
If you think the Android project DroidBilling 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.techery.droid.billings.events; //from ww w. j a va 2s.c o m import com.techery.droid.billings.models.IabResult; public class IabEvent { private final IabResult result; public IabEvent(IabResult iabResult) { result = iabResult; } public IabResult getResult() { return result; } }