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.models; //from w ww . ja va 2s . c om /** * Created by ad on 11/27/13. */ public class ConsumableItem extends BillableItem { public ConsumableItem(String sku) { super(sku); } public void markAsConsumed() { this.setAvailable(false); } }