Package org.mage.plugins.rating.results

Examples of org.mage.plugins.rating.results.Rating


  protected synchronized void generateNext() {
    notify();
  }
 
  public void reportResult(Card card1, Card card2) {
    results.add(new Rating(card1.getName(), card2.getName()));
    removeCard(mageCard1);
    removeCard(mageCard2);
    frame.validate();
    if (results.size() == 10) {
      ResultHandler.getInstance().save(results);
View Full Code Here

TOP

Related Classes of org.mage.plugins.rating.results.Rating

Copyright © 2018 www.massapicom. 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.