Back to project page mtgtools.
The source code is released under:
GNU General Public License
If you think the Android project mtgtools 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 pe.apiconz.apps.mtgtools; /* ww w .jav a2 s . c o m*/ public class Card { public int cardNumber = 0; public String cardName = ""; public String cardImage = ""; public String cardType = ""; public String cardMana = ""; public String cardRarity = ""; public String cardArtist = ""; public String cardEdition = ""; public String cardText = ""; public String cardUrl = ""; }