List of usage examples for com.google.gwt.user.client.ui Label Label
protected Label(Element element)
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; }