Package com.google.wave.api

Examples of com.google.wave.api.TextView


    String blipId = postWavelet.getDataDocument(BLIP_ID);
    String postTitle = postWavelet.getTitle();
   
    // Get access to table of contents blip by using the stored information.
    Blip blip = bundle.getBlip(waveId, waveletId, blipId);
    TextView contentsDocument = blip.getDocument();
    Wavelet contentsWavelet = blip.getWavelet();
       
    // Add and linkify the title of the new blog post.
    String postWaveId = postWavelet.getWaveId();
    contentsDocument.insert(0, "\n" + postTitle);
    int upperIndex = postTitle.length() + 1;
    linkify(0, upperIndex, postWaveId, contentsDocument);
   
    // Reset title attributes.
    postWavelet.setDataDocument(TITLE, postTitle)
View Full Code Here

TOP

Related Classes of com.google.wave.api.TextView

Copyright © 2018 www.massapicom. 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.