Advertisement
seroperson

DeviceListNotificationView

Jun 6th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. public interface DeviceListNotificationView extends BaseView {
  2.  
  3.     default void setTitleText(String title) {
  4.         getTitle().setText(title);
  5.     }
  6.  
  7.     default void setSubtitleText(String subtitle) {
  8.         getSubtitle().setText(subtitle);
  9.     }
  10.  
  11.     TextView getTitle();
  12.  
  13.     TextView getSubtitle();
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement