Back to project page septica-for-android.
The source code is released under:
MIT License
If you think the Android project septica-for-android 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 fera.costin.alexandru.logic; /* www . j a va 2 s . c o m*/ import java.io.Serializable; /** * This interface specifies the behavior of a playing card. * * @author Alexandru Fera * */ public interface ICard extends Serializable { public static final char SPADES = 's'; public static final char HEARTS = 'h'; public static final char DIAMONDS = 'd'; public static final char CLUBS = 'c'; public static final char JACK = 'j'; public static final char QUEEN = 'q'; public static final char KING = 'k'; public static final char TEN = 't'; public static final char ACE = '1'; public char getSuit(); public char getValue(); public int getImageResourceId(); public Integer getIntegerValue(); }