Back to project page pokerdrome.
The source code is released under:
Pokerdrome was released under the GPLv3+ (https://www.gnu.org/licenses/gpl.html) by darlose pokerengine (https://code.google.com/p/pokerengine/) was released under the Apache License 2.0 (https://www...
If you think the Android project pokerdrome 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.darlose.pokerdrome; //from w ww. j a v a 2 s . co m /* * Copyright (c) 2005 Your Corporation. All Rights Reserved. */ import java.util.ArrayList; import java.util.LinkedList; /** * User: sam * Date: Apr 2, 2005 * Time: 4:07:30 PM */ public class Cards extends ArrayList<Card> { public Cards(String string) { addAll(Card.parse(string)); } public Cards() { } public Cards(int size) { super(size); } public Cards(Cards deck) { super(deck); } public String toString() { StringBuilder sb = new StringBuilder(); for (Card card : this) { sb.append(card.toString()); } return sb.toString(); } }