- Fix code typos - Add a 'fromSym' field in the transactions table - Fix translation in the drawer [RecordTransactionActivity rework] - New currency selection - Add Exchange selection - Add corresponding Pair selection - Add tabs to select Buy/Sell/Transaction > Buy fragment - Add note field - Add fee format selection - Limit date selection to the past (it's no longer possible to add a futur transaction) - Auto fill the price after date selection
14 lines
276 B
Java
14 lines
276 B
Java
package com.herbron.moodl;
|
|
|
|
import com.herbron.moodl.DataManagers.CurrencyData.Currency;
|
|
|
|
public interface CurrencyInfoUpdateNotifierInterface {
|
|
|
|
void onTimestampPriceUpdated(String price);
|
|
|
|
void onHistoryDataUpdated();
|
|
|
|
void onPriceUpdated(Currency currency);
|
|
|
|
}
|