Lines Matching refs:Update
69 private List<EventListener<Update>> mUpdateListeners = new ArrayList<>();
78 public void addUpdateListener(EventListener<Update> listener) { in addUpdateListener()
82 public void removeUpdateListener(EventListener<Update> listener) { in removeUpdateListener()
87 for (EventListener<Update> handler: mUpdateListeners) { in notifyUpdateListeners()
88 handler.accept(Update.UPDATE); in notifyUpdateListeners()
93 Update error = new Update(e, mFeatures.isRemoteActionsEnabled()); in notifyUpdateListeners()
94 for (EventListener<Update> handler: mUpdateListeners) { in notifyUpdateListeners()
256 public static class Update { class in Model
258 public static final Update UPDATE = new Update();
273 private Update() { in Update() method in Model.Update
279 public Update(Exception exception, boolean remoteActionsEnabled) { in Update() method in Model.Update