Package net.sf.nebulacards.util

Examples of net.sf.nebulacards.util.RecyclingPile.addAll()


  public RecyclingPileTest(String s) { super(s); }

  public void testRemove()
  {
    RecyclingPile rp = new RecyclingPile();
    rp.addAll(PileOfCards.getStandardDeck());
    int size = rp.size();
    for (int i = 0; i < size - 1; i++)
    {
      rp.recycle(rp.takeTop());
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.