Uses of Class
org.starhope.appius.mb.Currency

Packages that use Currency
org.starhope.appius.game.inventory   
org.starhope.appius.game.npc   
org.starhope.appius.game.npc.plebeian   
org.starhope.appius.mb   
org.starhope.appius.pay.util   
org.starhope.appius.user   
org.starhope.appius.user.events   
 

Uses of Currency in org.starhope.appius.game.inventory
 

Fields in org.starhope.appius.game.inventory declared as Currency
private  Currency GenericItemReference.currency
          the currency units for the price
 

Methods in org.starhope.appius.game.inventory that return Currency
 Currency GenericItemReference.getCurrency()
           
 Currency AbstractItem.getCurrency()
           
 

Methods in org.starhope.appius.game.inventory with parameters of type Currency
 void GenericItemReference.setPrice(Currency newCurrency, BigDecimal newPrice)
           
 void AbstractItem.setPrice(Currency currency, BigDecimal price)
           
 void GenericItemReference.setPrice(Currency units, int int1)
          WRITEME: Document this method brpocock@star-hope.org
 

Uses of Currency in org.starhope.appius.game.npc
 

Methods in org.starhope.appius.game.npc with parameters of type Currency
 BigDecimal Ejecta.getMoney(Currency currency)
           
 

Uses of Currency in org.starhope.appius.game.npc.plebeian
 

Fields in org.starhope.appius.game.npc.plebeian declared as Currency
private  Currency PlebeianScriptRunner.TestActorHasCurrency.cu
          WRITEME: Document this brpocock@star-hope.org
 

Constructors in org.starhope.appius.game.npc.plebeian with parameters of type Currency
PlebeianScriptRunner.TestActorHasCurrency(PlebeianActor actor, Currency currency, BigDecimal amount)
          WRITEME: Document this constructor brpocock@star-hope.org
 

Uses of Currency in org.starhope.appius.mb
 

Methods in org.starhope.appius.mb that return Currency
protected  Currency CurrencySQLLoader.from(ResultSet resultSet)
          WRITEME: Document this method brpocock@star-hope.org
static Currency Currency.get_USD()
           This is a quick "semantic sugar" to pick up U.S.
static Currency Currency.get(String id)
          Deprecated. Use Nomenclator.getDataRecord(Class, String) instead
static Currency Currency.getByCode(String string)
          Deprecated. use Nomenclator.getDataRecord(Class, String)
 Currency Payment.getCurrency()
          Get the currency with which this payment was/will be made
 Currency UserEnrolment.getCurrency()
           
 Currency Enrolment.getCurrency()
           
static Currency Currency.getPeanuts()
          TODO: refer to database, to be paranoid.
static Currency Currency.getTootTokens()
          TODO: refer to database, to be paranoid.
 Currency CurrencySQLLoader.loadRecord(int id)
           
 Currency CurrencySQLLoader.loadRecord(String id)
           
 

Methods in org.starhope.appius.mb with parameters of type Currency
 void CurrencySQLLoader.changed(Currency changedRecord)
           
 void CurrencySQLLoader.refresh(Currency record)
           
 void CurrencySQLLoader.removeRecord(Currency record)
           
 void CurrencySQLLoader.saveRecord(Currency record)
           
 

Constructor parameters in org.starhope.appius.mb with type arguments of type Currency
Currency(RecordLoader<Currency> loader)
          WRITEME: Document this constructor brpocock@star-hope.org
 

Uses of Currency in org.starhope.appius.pay.util
 

Methods in org.starhope.appius.pay.util that return Currency
 Currency Invoiceable.getCurrency()
           
 

Uses of Currency in org.starhope.appius.user
 

Methods in org.starhope.appius.user with parameters of type Currency
 BigDecimal Wallet.get(Currency cu)
           
 BigDecimal UserRecord.getCurrency(Currency ident)
           
 BigDecimal AbstractUser.getMoney(Currency currency)
          To be deprecated in favour of AbstractUser.getWallet() ASAP!
 BigDecimal GeneralUser.getMoney(Currency currency)
           
 void Wallet.put(Currency cu, BigDecimal amount)
          WRITEME: Document this method brpocock@star-hope.org
 void UserRecord.setCurrency(Currency units, BigDecimal bigDecimal)
          set the user's quantity of currency of a given type
 void UserRecord.setCurrencyIfUnknown(Currency units, BigDecimal bigDecimal)
          set the user's currency of a given type, only if it is not already known
 

Uses of Currency in org.starhope.appius.user.events
 

Fields in org.starhope.appius.user.events declared as Currency
private  Currency EventRecord.currencyEarned
          WRITEME: Document this brpocock@star-hope.org
private  Currency EventOutcomeRecord.rewardCurrency
          WRITEME: Document this brpocock@star-hope.org
 

Methods in org.starhope.appius.user.events that return Currency
 Currency EventRecord.getCurrencyEarned()
           
 Currency EventOutcomeRecord.getRewardCurrency()
           
 

Methods in org.starhope.appius.user.events with parameters of type Currency
 void EventOutcomeRecord.setRewardCurrency(Currency currency)