Back to project page SpareDeck.
The source code is released under:
MIT License
If you think the Android project SpareDeck 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.hacsoft.sparedeck; // w ww.j a v a2 s.c o m class Card { private final String m_name; private final int m_resid; public Card( String name, int resource_id ) { this.m_name = name; this.m_resid = resource_id; } public int getId() { return m_resid; } public String getName() { return m_name; } }