Package org.rugby.online.impl

Examples of org.rugby.online.impl.DefaultTransferDescription


  private static final RboTransferType TEST_TYPE = RboTransferType.INCOME_SEASONLY;
  private static final String TEST_NAME = "TEST NAME";
 
  @Before
  public void setUp() throws Exception {
    description = new DefaultTransferDescription(TEST_SOURCE_ID, TEST_TARGET_ID, TEST_AMOUNT, TEST_SEASON, TEST_TYPE);
    description.setName(TEST_NAME);
  }
View Full Code Here


  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

Related Classes of org.rugby.online.impl.DefaultTransferDescription

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.