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);