예제 #1
0
 String getDate(OpenOfferListItem item) {
   return formatter.formatDateTime(item.getOffer().getDate());
 }
예제 #2
0
 String getDirectionLabel(OpenOfferListItem item) {
   return (item != null) ? formatter.getDirection(dataModel.getDirection(item.getOffer())) : "";
 }
예제 #3
0
 String getVolume(OpenOfferListItem item) {
   return (item != null) ? formatter.formatVolumeWithMinVolumeWithCode(item.getOffer()) : "";
 }
예제 #4
0
 String getPrice(OpenOfferListItem item) {
   return (item != null) ? formatter.formatFiat(item.getOffer().getPrice()) : "";
 }
예제 #5
0
 String getAmount(OpenOfferListItem item) {
   return (item != null) ? formatter.formatAmountWithMinAmount(item.getOffer()) : "";
 }
예제 #6
0
 String getTradeId(OpenOfferListItem item) {
   return item.getOffer().getShortId();
 }