seroperson

TariffNotificationHolder

Jun 6th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.53 KB | None | 0 0
  1. public class TariffNotificationHolder extends BaseRecyclerLineView implements DeviceListNotificationView {
  2.  
  3.     @Bind(R.id.tariff_notification_title)
  4.     TextView title;
  5.  
  6.     @Bind(R.id.tariff_notification_subtitle)
  7.     TextView subtitle;
  8.  
  9.     public TariffNotificationHolder(ViewGroup root) {
  10.         super(root);
  11.         ButterKnife.bind(this, root);
  12.     }
  13.  
  14.     @Override
  15.     public TextView getTitle() {
  16.         return title;
  17.     }
  18.  
  19.     @Override
  20.     public TextView getSubtitle() {
  21.         return subtitle;
  22.     }
  23.    
  24. }
Add Comment
Please, Sign In to add comment