Facebook
  1.     private void filter()
  2.     {
  3.         if(tf4.getValue().equals(""))
  4.         {
  5.             this.refreshList();
  6.         }
  7.         else
  8.         {
  9.         notes.filter(tf4.getValue());
  10.         List<Notification> notificationList = notes.getList2();
  11.         notificationGrid.setItems(notificationList);
  12.         }
  13.     }