Example usage for com.google.gwt.user.client.ui Label Label

List of usage examples for com.google.gwt.user.client.ui Label Label

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui Label Label.

Prototype

protected Label(Element element) 

Source Link

Document

This constructor may be used by subclasses to explicitly use an existing element.

Usage

From source file:com.dimdim.conference.ui.envcheck.client.layout.CommonMessagePopup.java

License:Open Source License

public CommonMessagePopup(String dialogName, String title, String message) {
    this.message = message;
    this.dialogName = dialogName;
    setCaption(title, false);//w w  w . ja  va  2 s. c o m
    Label c = new Label(this.message);
    c.setStyleName("common-text");
    c.setWordWrap(true);
    this.content = c;
}