Example usage for com.google.gwt.gwtpages.client.message Message warn

List of usage examples for com.google.gwt.gwtpages.client.message Message warn

Introduction

In this page you can find the example usage for com.google.gwt.gwtpages.client.message Message warn.

Prototype

public static Message warn(String message) 

Source Link

Document

Utility method to create an warn message

Usage

From source file:com.google.gwt.gwtpages.demo.client.pages.MessagesPage.java

public void addWarnMessage$onClick(ClickEvent event) {
    Messages.get().addMessage(Message.warn(view().warnMessage().getText()));
    resetMessages();
}