Home | History | Annotate | Download | only in documentsui

Lines Matching defs:UPDATE

72     private List<EventListener<Update>> mUpdateListeners = new ArrayList<>();
81 public void addUpdateListener(EventListener<Update> listener) {
85 public void removeUpdateListener(EventListener<Update> listener) {
90 for (EventListener<Update> handler: mUpdateListeners) {
91 handler.accept(Update.UPDATE);
96 Update error = new Update(e, mFeatures.isRemoteActionsEnabled());
97 for (EventListener<Update> handler: mUpdateListeners) {
116 protected void update(DirectoryResult result) {
266 * according to the current sort order, which was set by the last model update.
272 public static class Update {
274 public static final Update UPDATE = new Update();
289 private Update() {
295 public Update(Exception exception, boolean remoteActionsEnabled) {