Package org.waveprotocol.wave.client.wave

Examples of org.waveprotocol.wave.client.wave.InteractiveDocument.clearDiffs()


      InteractiveDocument doc = documents.get(blip);
      if (fullyUnread.contains(blip)) {
        doc.stopDiffSuppression();
        fullyUnread.remove(blip);
      } else {
        doc.clearDiffs();
      }
    }
  }

  @Override
View Full Code Here


      ConversationBlip oldBlip = models.getBlip(oldUi);
      InteractiveDocument document = documents.get(oldBlip);
      if (oldBlip != null) {
        supplement.stopReading(oldBlip);
        document.stopDiffRetention();
        document.clearDiffs();
      }
    }

    if (newUi != null) {
      // UI hack: normally, becoming read triggers diff clearing, except when
View Full Code Here

      ConversationBlip oldBlip = models.getBlip(oldUi);
      InteractiveDocument document = documents.get(oldBlip);
      if (oldBlip != null) {
        supplement.stopReading(oldBlip);
        document.stopDiffRetention();
        document.clearDiffs();
      }
    }

    if (newUi != null) {
      // UI hack: normally, becoming read triggers diff clearing, except when
View Full Code Here

      InteractiveDocument doc = documents.get(blip);
      if (fullyUnread.contains(blip)) {
        doc.stopDiffSuppression();
        fullyUnread.remove(blip);
      } else {
        doc.clearDiffs();
      }
    }
  }

  @Override
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.