Example usage for com.google.gwt.phono.client Message getBody

List of usage examples for com.google.gwt.phono.client Message getBody

Introduction

In this page you can find the example usage for com.google.gwt.phono.client Message getBody.

Prototype

public native String getBody() ;

Source Link

Usage

From source file:com.google.gwt.phono.test.client.widget.MessageContent.java

public MessageContent(Message message) {
    this();//w w w . j av  a  2 s.  co m
    this.from.setInnerText(message.getFrom() + " : ");
    this.body.setInnerHTML(message.getBody());
}