Back to project page gdx-pay.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUC...
If you think the Android project gdx-pay 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.badlogic.gdx.pay; /*from ww w.j a va 2s . com*/ /** Information about a product that can be purchased provided by a purchase manager. Some methods * will return 'null' if requested information is not available. * * @author noblemaster */ public class Information { /** The information returned if a purchase manager does not support information. */ public static final Information UNAVAILABLE = new Information(null, null, null); private String localName; private String localDescription; private String localPricing; public Information(String localName, String localDescription, String localPricing) { this.localName = localName; this.localDescription = localDescription; this.localPricing = localPricing; } /** Returns the localized product name or null if not available (PurchaseManager-dependent). */ public String getLocalName() { return localName; } /** Returns the localized product description or null if not available (PurchaseManager-dependent). */ public String getLocalDescription() { return localDescription; } /** Returns the localized product price or null if not available (PurchaseManager-dependent). */ public String getLocalPricing() { return localPricing; } }