Examples of RboTransferDescription


Examples of org.rugby.online.core.economy.RboTransferDescription

  private DefaultEconomy economy;
 
  @Before
  public void setUp() throws Exception {
    economy = new DefaultEconomy(1L);
    RboTransferDescription descr1 = new DefaultTransferDescription(2L, 1L, 100, 0, RboTransferType.INCOME_SINGLE);
    RboTransferDescription descr2 = new DefaultTransferDescription(1L, 3L, 20, 0, RboTransferType.OUTCOME_SINGLE);
    economy.getTransferDescription().add(descr1);
    economy.getTransferDescription().add(descr2);
  }
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.