Java com.google.gwt.safehtml.shared SafeHtmlBuilder fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.safehtml.shared SafeHtmlBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.safehtml.shared SafeHtmlBuilder.

The text is from its open source code.

Constructor

SafeHtmlBuilder()
Constructs an empty SafeHtmlBuilder.

Method

SafeHtmlBuilderappend(boolean b)
Appends the string representation of a boolean.
SafeHtmlBuilderappend(byte num)
Appends the string representation of a number.
SafeHtmlBuilderappend(char c)
Appends the string representation of a char.
SafeHtmlBuilderappend(double num)
Appends the string representation of a number.
SafeHtmlBuilderappend(float num)
Appends the string representation of a number.
SafeHtmlBuilderappend(int num)
Appends the string representation of a number.
SafeHtmlBuilderappend(long num)
Appends the string representation of a number.
SafeHtmlBuilderappend(SafeHtml html)
Appends the contents of another SafeHtml object, without applying HTML-escaping to it.
SafeHtmlBuilderappendEscaped(String text)
Appends a string after HTML-escaping it.
SafeHtmlBuilderappendEscapedLines(String text)
Appends a string consisting of several newline-separated lines after HTML-escaping it.
SafeHtmlBuilderappendHtmlConstant(String html)
Appends a compile-time-constant string, which will not be escaped.
SafeHtmltoSafeHtml()
Returns the safe HTML accumulated in the builder as a SafeHtml .